
  .container-fluid {
      background-color: #211b42; /* dark purple */
      color: #fff;
      border-radius: 12px;
      padding: 10px 20px;
      max-width: 100%;
      margin: 0 auto;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

   

    /* Heading */
    .container-fluid .main-heading {
      font-size: 2.4rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .container-fluid .main-heading span {
      color: #e14a25;
    }

    /* Subheading */
    .container-fluid .sub-heading {
      font-size: 2rem;
      font-weight: 600;
      color: #e14a25;
      margin-bottom: 20px;
    }

    /* Description */
    .container-fluid .description {
      max-width: 850px;
      margin: 0 auto 35px;
      font-size: 1rem;
      color: #d8d8d8;
      line-height: 1.7;
    }

    /* Button */
    .container-fluid .cta-btn {
      display: inline-block;
      background-color: #e14a25;
      color: white;
      text-decoration: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(111, 228, 142, 0.3);
    }
    .container-fluid .cta-btn:hover {
      background-color: #e14a25;
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(111, 228, 142, 0.5);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .container-fluid {
        padding: 40px 15px;
      }
      .container-fluid .main-heading {
        font-size: 1.9rem;
      }
      .container-fluid .sub-heading {
        font-size: 1.5rem;
      }
      .container-fluid .description {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .container-fluid .main-heading {
        font-size: 1.6rem;
      }
      .container-fluid-fluid .sub-heading {
        font-size: 1.3rem;
      }
      .container-fluid .cta-btn {
        font-size: 0.9rem;
        padding: 12px 25px;
      }
    }
    /* Section Wrapper */
    .grocery-section {
      background-color: #ffffff; /* ✅ white background */
      max-width: 1300px;
      margin: 0px auto;
      border-radius: 12px;
      padding: 30px 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    /* Left Content */
    .grocery-content {
      flex: 1 1 550px;
    }

    .grocery-content h2 {
      font-size: 2rem;
      font-weight: 600;
      color: #222;
      margin-bottom: 20px;
    }

    .grocery-content h2 span {
      color: #e14a25; /* green text highlight */
    }

    .grocery-content p {
      color: #444;
      font-size: 1rem;
      margin-bottom: 30px;
    }
   .features {
  
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.feature-item {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateX(5px);
}

.highlight {
  color: #1976d2; /* Highlight color for text before colon */
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .feature-item {
    font-size: 0.95rem;
  }
}


    /* Right Image Section */
    .grocery-image {
      flex: 1 1 400px;
      position: relative;
      text-align: center;
    }

    .grocery-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .grocery-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
      }

      .features {
        grid-template-columns: 1fr;
        justify-items: center;
      }

      .grocery-content {
        padding-right: 0;
      }
    }

    @media (max-width: 480px) {
      .grocery-content h2 {
        font-size: 1.5rem;
      }
      .grocery-content p {
        font-size: 0.95rem;
      }
    }
 .about-title {
	font-size: 2rem;
	color: black;
	font-weight: 600;
 	letter-spacing: -0.02em;
}

/* ✅ Base Styles (Desktop First) */
.carousel-container {
	width: 100%;
 
	height: 450px;
	position: relative;
	perspective: 1000px;
	margin: 0 auto;
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
	position: absolute;
	width: 280px;
	height: 380px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Center & Positions */
.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}

/* Member Info */
.member-info {
	text-align: center;
	margin-top: 40px;
	transition: all 0.5s ease-out;
}

.member-name {
	color: rgb(8, 42, 123);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.member-name::before,
.member-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 100px;
	height: 2px;
	background: rgb(8, 42, 123);
}

.member-name::before {
	left: -120px;
}

.member-name::after {
	right: -120px;
}

.member-role {
	color: #848696;
	font-size: 1.5rem;
	font-weight: 500;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 10px 0;
	margin-top: -15px;
}

/* Dots */
.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	color:#e14a25;
	margin-top: 60px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(8, 42, 123, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #e14a25;
	transform: scale(1.2);
}

/* Navigation Arrows */
.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #e14a25;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	font-size: 1.5rem;
	border: none;
}

.nav-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
	left: 20px;
}

.nav-arrow.right {
	right: 20px;
}

/* ✅ Tablet (≤768px) */
@media (max-width: 768px) {
	.carousel-container {
		height: 380px;
	}

	.card {
		width: 200px;
		height: 280px;
	}

	.card.left-2 {
		transform: translateX(-250px) scale(0.7) translateZ(-200px);
	}

	.card.left-1 {
		transform: translateX(-120px) scale(0.85) translateZ(-80px);
	}

	.card.right-1 {
		transform: translateX(120px) scale(0.85) translateZ(-80px);
	}

	.card.right-2 {
		transform: translateX(250px) scale(0.7) translateZ(-200px);
	}

	.member-name {
		font-size: 2rem;
	}

	.member-role {
		font-size: 1.2rem;
	}

	.member-name::before,
	.member-name::after {
		width: 60px;
	}

	.member-name::before {
		left: -80px;
	}

	.member-name::after {
		right: -80px;
	}

	.nav-arrow {
		width: 35px;
		height: 35px;
		font-size: 1.2rem;
	}
}

/* ✅ Mobile (≤480px) */
@media (max-width: 480px) {
	.carousel-container {
		height: 320px;
		perspective: 800px;
	}

	.card {
		width: 160px;
		height: 220px;
	}

	.card.left-2,
	.card.right-2 {
		opacity: 0;
		pointer-events: none;
	}

	.card.left-1 {
		transform: translateX(-100px) scale(0.8) translateZ(-50px);
	}

	.card.right-1 {
		transform: translateX(100px) scale(0.8) translateZ(-50px);
	}

	.member-info {
		margin-top: 20px;
	}

	.member-name {
		font-size: 1.6rem;
	}

	.member-role {
		font-size: 1rem;
	}

	.dots {
		margin-top: 30px;
	}

	.nav-arrow {
		width: 30px;
		height: 30px;
		font-size: 1rem;
	}
}

/* ✅ Large Screens (≥1400px) */
@media (min-width: 1400px) {
	.carousel-container {
		height: 550px;
		max-width: 1400px;
	}

	.card {
		width: 320px;
		height: 420px;
	}

	.card.left-2 {
		transform: translateX(-450px) scale(0.85) translateZ(-300px);
	}

	.card.right-2 {
		transform: translateX(450px) scale(0.85) translateZ(-300px);
	}
}

/* Container and heading */
.container-fluid {
  max-width: 100%;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

h2 span {
  color: #e14a25; /* Blue for highlight */
}

/* Features Layout */
.featureds {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Card Styling */
.feature-box {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1), 0 10px 25px rgba(0, 0, 0, 0.05); /* 3D layered shadow */
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 60px);
  max-width: calc(33.333% - 60px);
  transition: all 0.4s ease;
  cursor: pointer;
  transform: translateY(0);
}

/* Hover Effect */
.feature-box:hover {
  background-color: #e14a25; /* Blue Background */
  color: #ffffff;
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.6), 0 6px 15px rgba(0, 0, 0, 0.2); /* Glowing 3D Shadow */
}

/* Change child colors on hover */
.feature-box:hover .feature-icon {
  background-color: #ffffff;
  color: #007bff;
}

.feature-box:hover .feature-title,
.feature-box:hover .feature-description {
  color: #ffffff;
}

/* Icon Styling */
.feature-icon {
  background-color: #e9f5ff;
  color: #007bff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 30px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

/* Title and Description */
.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  transition: color 0.3s ease;
}

.feature-description {
  font-size: 0.95rem;
  color: #555;
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-box {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}

@media (max-width: 600px) {
  .feature-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}




/* Section Layout */
.banner-section {
  text-align: center;
  padding: 10px 20px;
}

.banner-section h2 {
  font-size: 1.8rem;
  font-weight: 500;
   color: #333;
}

.banner-section h2 span {
  color: #e14a25; /* green highlight */
  font-weight: 700;
}

/* Image Container */
.image-wrapper {
  width: 100%;
  }

.image-wrapperss img {
  width: 100%;
  height: auto;
}

/* Button Styling */
.demo-btn {
  display: inline-block;
  background-color: #e14a25;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s ease;
}

.demo-btn:hover {
  background-color: #e14a25;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-section h2 {
    font-size: 1.5rem;
  }

  .demo-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .banner-section {
    padding: 40px 15px;
  }

  .banner-section h2 {
    font-size: 1.3rem;
  }
}

 /* ------------------------------
       ✅ SECTION WRAPPER
    ------------------------------ */
    .uniq-customer-app {
      background: #fff;
      padding: 60px 20px;
    }

    .uniq-customer-app .container {
      max-width: 1200px;
      margin: auto;
    }

    .uniq-customer-app-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    /* ------------------------------
       ✅ SLIDER SECTION
    ------------------------------ */
    .uniq-app-image {
      flex: 1 1 45%;
      display: flex;
      justify-content: center;
    }

    .uniq-slider {
      position: relative;
      width: 100%;
       
      overflow: hidden;
     
      
      background: #fff;
      padding-bottom: 20px;
    }

    .uniq-slides {
      display: flex;
      transition: transform 0.8s ease-in-out;
    }

    .uniq-slide {
      min-width: 100%;
    }

    .uniq-slide img {
      width: 100%;
      display: block;
      border-radius: 25px;
    }

    /* Dots Navigation */
    .uniq-dots {
      text-align: center;
      margin-top: 10px;
    }

    .uniq-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 5px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s;
    }

    .uniq-dot.active {
      background: #007bff;
    }

    /* ------------------------------
       ✅ TEXT SECTION
    ------------------------------ */
    .uniq-app-text {
      flex: 1 1 50%;
    }

    .uniq-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #222;
    }

    .uniq-description {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
    }

/* Features Grid */
.uniq-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Feature Box */
.uniq-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f9f9f9; /* keep original background */
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 3D soft shadow */
}

/* Hover Effect */
.uniq-feature-box:hover {
  background: #154c79; /* blue on hover */
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4); /* stronger shadow */
  transform: translateY(-4px); /* slight lift */
}

/* Icon */
.uniq-feature-box span {
  font-size: 22px;
  color: #333;
  transition: color 0.3s ease;
}

/* Text */
.uniq-feature-box p {
  margin: 0;
  color: #333;
  font-size: 15px;
  transition: color 0.3s ease;
}

/* Hover text color white */
.uniq-feature-box:hover p,
.uniq-feature-box:hover span {
  color: #fff;
}


    /* ------------------------------
       ✅ RESPONSIVE DESIGN
    ------------------------------ */
    @media (max-width: 768px) {
      .uniq-customer-app-content {
        flex-direction: column;
        text-align: center;
      }

      .uniq-app-image {
        order: 1;
      }

      .uniq-app-text {
        order: 2;
      }

      .uniq-feature-box {
        justify-content: center;
        text-align: left;
      }
    }
    /* Section Styling */
.admin-app-section {
  background: radial-gradient(circle at center, #f2ffe6 0%, #f2ffe6 60%, #f2ffe6 100%);
  padding: 10px 20px;
  text-align: center;
  color: black;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Description */
.section-description {
  font-size: 14px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 0px;
}

/* Image */
.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  max-width: 100%;
  height: auto;
  
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
  }
  .section-description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .section-description {
    font-size: 12px;
  }
}

  /* Wrapper section */
    #ai-feature-section {
      padding: 40px 20px;
      background-color: #fff;
      font-family: Arial, sans-serif;
    }

    /* Grid layout */
    .ai-feature-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Feature item */
    .ai-feature-box {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 16px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

    .ai-feature-box:hover {
      transform: translateY(-3px);
    }

    /* Checkmark icon */
    .ai-checkmark {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      background-color: #154c79; /* green */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 16px;
    }

    /* Feature text */
    .ai-feature-text {
      flex: 1;
      font-size: 15px;
      color: #333;
    }

    @media (max-width: 600px) {
      .ai-feature-text {
        font-size: 14px;
      }
    }
    
     #app-categories-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .app-categories-header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .app-categories-text {
      flex: 1 1 500px;
    }

    .app-categories-text h2 {
      font-size: 32px;
      margin: 0 0 10px;
      color: #111;
    }

    .app-categories-text h2 span {
      color: #4CAF50;
    }

    .app-categories-text p {
      font-size: 15px;
      line-height: 1.7;
      color: #555;
    }

    .app-categories-image {
      flex: 1 1 400px;
      text-align: center;
    }

    .app-categories-image img {
      max-width: 100%;
      height: auto;
    }

    .categories-grid {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .category-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 15px;
      transition: transform 0.2s;
      border: 1px solid #eee;
    }

    .category-card:hover {
      transform: translateY(-5px);
    }

    .category-icon {
      font-size: 30px;
    }

    .category-title {
      font-size: 15px;
      font-weight: 500;
      color: #111;
    }

    @media (max-width: 768px) {
      .app-categories-text h2 {
        font-size: 26px;
      }
    }

    @media (max-width: 480px) {
      .category-card {
        flex-direction: column;
        text-align: center;
      }
    }
    
    
    .dev-process-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .dev-process-container h2 {
      font-size: 28px;
      margin-bottom: 40px;
    }

    .dev-process-container h2 span {
      color: #64bc45; /* Green color like in image */
    }

   .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

.process-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 3D soft shadow */
  cursor: pointer;
}

/* Hover effect */
.process-card:hover {
  background: #e14a25; /* original theme color */
  color: #ffffff; /* text turns white */
  transform: translateY(-4px); /* slight lift for 3D effect */
  box-shadow: 0 8px 20px rgba(225, 74, 37, 0.4); /* glowing shadow with same color tone */
}

/* Image (no change) */
.process-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  transition: filter 0.3s ease;
}

/* Title */
.process-title {
  font-weight: 600;
  font-size: 18px;
  color: #e14a25;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

/* Description */
.process-description {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* Hover text + icon color white */
.process-card:hover .process-title,
.process-card:hover .process-description {
  color: #ffffff;
}

.process-card:hover img {
  filter: brightness(0) invert(1); /* make image white-ish on hover */
}


    @media (max-width: 600px) {
      .dev-process-container h2 {
        font-size: 24px;
      }

      .process-card {
        padding: 25px 15px;
      }

      .process-description {
        font-size: 13px;
      }
    }
    #tech-tabs-section {
  padding: 40px 20px;
}

.tech-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.tech-heading {
  font-size: 32px;
  margin-bottom: 20px;
}

.tech-highlight {
  color: #e14a25;
  font-weight: 600;
}

/* Tabs */
.tech-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #888;
}

.tech-tabs .tab-btn {
  cursor: pointer;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.tech-tabs .tab-btn.active {
  color: #000;
  border-bottom: 2px solid #8BC34A;
}

/* Tech Box Container */
.tech-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Tech Boxes */
.tech-box {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech-box img {
  max-width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.tech-box p {
  margin: 0;
  font-weight: 600;
}

/* Bottom Borders (Customize Colors as needed) */
.wordpress { border-bottom: 3px solid #0073aa; }
.shopify { border-bottom: 3px solid #8BC34A; }
.bigcommerce { border-bottom: 3px solid #444; }
.magento { border-bottom: 3px solid #F26322; }
.laravel { border-bottom: 3px solid #F55247; }
.headless { border-bottom: 3px solid #222; }

.android { border-bottom: 3px solid #3ddc84; }
.ios { border-bottom: 3px solid #000; }
.flutter { border-bottom: 3px solid #02569B; }
.react-native { border-bottom: 3px solid #61DBFB; }

.html { border-bottom: 3px solid #e44d26; }
.css { border-bottom: 3px solid #2965f1; }
.js { border-bottom: 3px solid #f7df1e; }
.vue { border-bottom: 3px solid #42b883; }
.react { border-bottom: 3px solid #61DBFB; }

.node { border-bottom: 3px solid #3c873a; }
.php { border-bottom: 3px solid #8892be; }
.python { border-bottom: 3px solid #306998; }
.ruby { border-bottom: 3px solid #cc342d; }
.java { border-bottom: 3px solid #f89820; }

/* Hide inactive tab contents */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-box {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .tech-box {
    width: 100%;
  }

  .tech-tabs {
    gap: 10px;
  }
}


/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Section Container */
#grocery-cost-section {
  padding: 60px 20px;
  background-color: #fff;
}

.cost-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cost-heading {
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
}

.highlight-text {
  color: #e14a25;
  font-weight: bold;
}

.cost-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Card Container */
.cost-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Individual Card */
.cost-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* base 3D shadow */
  flex: 1;
  min-width: 280px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
.cost-card:hover {
  background: #e14a25; /* theme color */
  color: #fff; /* default text white */
  transform: translateY(-6px); /* lift */
  box-shadow: 0 8px 20px rgba(225, 74, 37, 0.4); /* glowing shadow */
}

/* Card Icon */
.cost-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #65c566;
  transition: color 0.3s ease;
}

/* Card Title */
.cost-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Card Text */
.cost-card-text {
  font-size: 0.95rem;
  color: #666;
  transition: color 0.3s ease;
}

/* Hover text + icon color */
.cost-card:hover .cost-card-title,
.cost-card:hover .cost-card-text,
.cost-card:hover .cost-icon {
  color: #fff;
}


/* Responsive Design */
@media (max-width: 768px) {
  .cost-card-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .cost-card {
    width: 100%;
    max-width: 100%;
  }
}
/* Factors Section */
#grocery-cost-factors {
  padding: 60px 20px;
  background-color: #ffffff;
}

.factors-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.factors-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.factor-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 280px;
  transition: transform 0.3s ease;
}

.factor-card:hover {
  transform: translateY(-5px);
}

.factor-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #65c566;
}

.factor-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.factor-text {
  font-size: 0.95rem;
  color: #555;
}

/* Button */
.consultation-btn-wrapper {
  text-align: center;
}

.consultation-btn {
  background-color: #65c566;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.consultation-btn:hover {
  background-color: #56aa54;
}

/* Responsive */
@media (max-width: 768px) {
  .factors-card-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .factor-card {
    width: 100%;
    max-width: 100%;
  }
}

/* Section Styling */
.grocery-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.grocery-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title Styling */
.grocery-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

.grocery-title span {
  color: #e14a25;
}
span{
    color: #e14a25 !important;
}
/* Grid Layout */
.grocery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Box Styling */
.grocery-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.grocery-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.highlight {
  color: #70c242;
}

.grocery-box p {
  margin-bottom: 20px;
  color: #444;
}

/* Features List */
.grocery-features {
  list-style: none;
  padding-left: 0;
}

.grocery-features li {
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.grocery-features i {
  color: #154c79;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .grocery-grid {
    grid-template-columns: 1fr;
  }

  .grocery-title {
    font-size: 24px;
  }
}
 
/* Container & Title */
.fc-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

.fc-slider-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.fc-highlight-text {
    color: #e14a25;
}

/* Carousel */
.fc-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.fc-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.fc-slide {
    min-width: 300px;
    flex: 0 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.fc-slide img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

/* Slide hover effect */
.fc-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Navigation buttons */
.fc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.fc-nav-left {
    left: 10px;
}

.fc-nav-right {
    right: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .fc-slide {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .fc-slide {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .fc-slide {
        min-width: 150px;
    }

    .fc-slider-title {
        font-size: 1.5rem;
    }
}
 
    /* ===== FAQ Section Styles ===== */
    .faq-section-unique {
      width: 80%;
      margin: 50px auto;
      font-family: 'Poppins', sans-serif;
      text-align: center;
    }

    .faq-section-unique h2 {
      font-size: 2em;
      color: #000;
      margin-bottom: 25px;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .faq-container-unique {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item-unique {
      background-color: #154c79;
      border-radius: 4px;
      overflow: hidden;
      text-align: left;
      transition: all 0.3s ease;
    }

    .faq-question-unique {
      width: 100%;
      background-color: #154c79;
      color: white;
      padding: 15px 20px;
      border: none;
      text-align: left;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question-unique:hover {
      background-color: #59607a;
    }

    .faq-answer-unique {
      display: none;
      padding: 15px 20px;
      background-color: #f7f7f7;
      color: #333;
      border-top: 1px solid #ddd;
      line-height: 1.6;
    }

    .faq-icon-unique {
      transition: transform 0.3s ease;
    }

    .faq-item-unique.active .faq-answer-unique {
      display: block;
    }

    .faq-item-unique.active .faq-icon-unique {
      transform: rotate(180deg);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-section-unique {
        width: 95%;
      }
      .faq-question-unique {
        font-size: 0.95rem;
      }
    }
  
 
.uniq-contact-section {
  position: relative;
  width: 100%;
  height: 130vh;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

.uniq-contact-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.uniq-contact-map iframe {
  width: 100%;
  height: 130vh !important;
  filter: brightness(0.7);
}

.uniq-contact-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 10;
}

.uniq-contact-title {
  text-align: center;
  font-size: 28px;
  color: black;
  margin-bottom: 10px;
}

.uniq-contact-subtitle {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.uniq-contact-form .uniq-contact-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.uniq-contact-form input,
.uniq-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.uniq-phone-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.uniq-phone-input span {
  background: #f0f0f0;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
}

.uniq-contact-form textarea {
  min-height: 100px;
  resize: none;
}

.uniq-contact-btn {
  width: 100%;
  background-color: #e14a25;
  color: #fff;
  font-size: 16px;
  padding: 12px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.uniq-contact-btn:hover {
  background-color: #e14a25;
}

/* Responsive */
@media (max-width: 768px) {
  .uniq-contact-card {
    padding: 30px 20px;
  }

  .uniq-contact-form .uniq-contact-row {
    flex-direction: column;
  }
}
.tech-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.tab-btn {
  padding: 6px 14px;
  font-size: 13px;
  border: 1px solid #007bff;
  border-radius: 6px;
  background-color: #154c79;
  color: white !important;
  cursor: pointer  !important;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background-color: #e14a25;
  border-color: white;
  color: white !important;
 }

.tab-btn.active {
  background-color: #e14a25;
  border-color: white;
}

.custom-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e14a25;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: bold;
  position: relative;
}

.custom-check::before {
  content: "✔";
  font-size: 12px;
  position: relative;
  top: -1px;
}

.highlight {
  font-weight: 600;
  color: #000;
}
