
/* Reset Styles (For Consistency) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Navbar (Odoo Style) */
.navbar {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* Logo Image Styling */
.navbar-logo {
  height: 40px; /* Adjust as needed */
  object-fit: contain;
}

/* Optional: To vertically center logo in navbar */
.logo {
  display: flex;
  align-items: center;
}
.navbar img {
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #008080; /* or #0e7c7b based on logo */
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
section .container{
  flex-direction: column;
  gap: 35px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  background: linear-gradient(to right, #774056, #8b5cf6);
  background: linear-gradient(to right, #774056, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #7b4b56;
}

.nav-links li a {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00bcd4; /* You can match your Kenzou color */
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a.active::after {
  width: 100%;
}



/* responsive navbar */
/* Base styles */
/* Responsive Navbar */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 80px; /* adjust if navbar is taller */
    right: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }
}



/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #fff;
  
}



/* Main Heading */
.hero h1 {
  font-size: 48px;
  font-weight: bold;
  color: #222;
  font-family: "Poppins", sans-serif;
}

/* Handwritten-Style Subheading */
.hero p {
  font-size: 35px;
  font-weight: 500;
  font-style: italic;
  margin-top: 10px;
  color: #444;
  font-family: "Caveat", cursive;
}

/* Highlighted Words (Odoo-Style) */
.highlight {
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
}

.highlight-orange {
  background: linear-gradient(to right, #ffb100, #ff7b00);
  padding: 5px 15px;
  border-radius: 8px;
  color: white;
}

.highlight-blue {
  background: linear-gradient(to right, #00aaff, #0077ff);
  padding: 5px 10px;
  border-radius: 8px;
  color: white;
  background-color: red;
}

/* CTA Buttons */
.cta-buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary {
  background: #774056;
  background: #009ca6;;
  color: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #009ca6;
  transform: translateY(-2px);
  box-shadow:  rgba(0, 156, 166, 0.5);
  transition: all 0.1s ease-in-out;
  transform: translateY(1px);
box-shadow: 0 12px 30px rgba(197, 195, 200, 0.6);
}

.btn-secondary {
  background: #eee;
  color: #333;
  margin-left: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #ddd;
}




/* Price Section (Handwritten Effect) */
/* .price-section {
  margin-top: 20px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  font-family: "Caveat", cursive;
  color: #4a235a;
} */

.price-section img {
  width: 100px;
  position: absolute;
  transform: rotate(-10deg);
  margin-left: 10px;
}

/* Services Section */
.services {
  background: #f5f5f5;
  background: red;
  padding: 60px 20px;
  text-align: center;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* Service Items */
.service-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: scale(1.05);
}

/* Icons */
.service-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Text */
.service-item p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}






/* Services Section - Odoo Style */
.services {
  background: linear-gradient(to bottom, #f5f5f5 70%, white 30%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  background-color: red;
}

/* Add Background Curve */
.services::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('images/curve.png') no-repeat center;
  background-size: cover;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* Service Items */
.service-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Icons */
.service-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Text */
.service-item p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-top: 5px;
}

.services {
  position: relative;
  background: linear-gradient(to bottom, #f5f5f5 70%, white 30%);
  padding: 80px 20px;
  background-color: red;
}






/* Services Section (Odoo-Style) */
.services {
  position: relative;
  background: linear-gradient(to bottom, #f5f5f5 80%, white 20%);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

/* Odoo Curve Image */
.services::before {
  content: "";
  position: absolute;
  
  top: 0px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('https://odoocdn.com/web_editor/shape/illustration/doodle/03.svg?c4=%23ffffff') no-repeat center;
  background-size: cover;
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat no-repeat;
}




/* Services Section - Full Background Fix */
.services {
  position: relative;
  background: #f5f5f5; /* Extend background to full section */
  padding: 100px 20px;
  text-align: center;
}

/* Odoo Curve Image - Blended */
.services::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('https://odoocdn.com/web_editor/shape/illustration/doodle/03.svg?c4=%23ffffff') no-repeat center;
  background-size: cover;
}

/* Grid Layout (Properly Aligned) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding-top: 40px;
}

/* Service Cards */
.service-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}




.services-card {
  width: 150px; /* Fixed width */
  height: 180px; /* Fixed height */
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.services-card:hover {
  transform: translateY(-5px);
}

.services-card img {
  width: 70px; /* Adjust image size */
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.services-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
  color: #333;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 50px 50px 0 0;
}



.services-card {
  width: 150px; /* Fixed width */
  height: 180px; /* Fixed height */
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.services-card:hover {
  transform: translateY(-5px);
}

.services-card img {
  width: 60px; /* Adjust image size */
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.services-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
  color: #333;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 50px 50px 0 0;
}



.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  background: #f8f9fa;
  border-radius: 50px 50px 0 0;
}

.services-card {
  width: 160px; /* Fixed width */
  height: 200px; /* Fixed height */
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-card img {
  width: 80px; /* Adjust image size */
  height: 80px;
  object-fit: cover;
  margin-bottom: 10px;
}

.services-card h3 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-top: auto;
}

.service-item{
  object-fit: cover;
  
}




/* technologyStack */






.services {
  text-align: center;
  padding: 50px 20px;
  background: #f8f9fa;
  
}

.services h2 {

  
  
  margin-bottom: 40px;
  

  font-size: 32px;
  font-weight: bold;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.service-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover {
  transform: scale(1.1);
}

.service-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  font-family: "Poppins", sans-serif;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 900px; /* Ye line add karo taaki width limit ho */
  margin: 0 auto; /* Center align */
  font-family: "Poppins", sans-serif;
}



















/* Scrolling Track */











/* .---------- */

/* new technology stack  css */
.tech-stack {
  text-align: center;
  padding: 60px 20px;
  background-color:rgb(255, 255, 255);
}

.tech-stack h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #222;
  font-family: "Poppins", sans-serif;

}

.tech-slider-wrapper {
  
  width: 100%;
}

.tech-slider {
  display: flex;
  gap: 50px;
  animation: scroll 25s linear infinite;
  
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 1px 4px 10px rgba(0,0,0,0.1);
  min-width: 100px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
  margin: 5px;
  border: 0.1px solid gray;
  
}

.card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 0px 0.2px gray;
}

/* @keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */
@keyframes scrollTech {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* If not smooth, try -52% or tweak value */
  }
}



.tech-slider-wrapper {
  width: 100%;
  overflow: hidden; /* ✅ important to hide scrollbar */
}

.tech-slider {
  display: flex;
  gap: 50px;
  animation: scrollTech 25s linear infinite;
  width: max-content; /* ✅ prevents wrapping */
}






/* About us css */

.about-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.about-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  animation: pulse 2s infinite;
}

.about-heading span {
  color: #a855f7;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.about-text {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.about-text p {
  font-size: 18px;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  color: #ccc;
  font-size: 14px;
}

.about-points {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.about-points li {
  text-align: left;
  margin-bottom: 10px;
  font-size: 16px;
}

.about-image img {
  max-width: 100%;
  border: 2px solid #4a235a;
  border-radius: 20px;
  box-shadow: 0 1px  20px #4a235a;
}

.about-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
  gap: 30px;
  max-width: 800px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .about-numbers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-numbers h3 {
  font-size: 32px;
  color: #a855f7;
  color:#4a235a;
  margin-bottom: 8px;
}

.about-numbers p {
  color: #aaa;
  font-size: 14px;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}





/* update css of about */
body {
  margin: 0;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.about-section {
  padding: 60px 20px;
  text-align: center;
  color: #111;
  background-color: whitesmoke;
}

/* Odoo Style Heading */
.hero-style-heading {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  color: #111;
}

.brush-text {
  position: relative;
  display: inline-block;
  color: #e63946;
  font-family: 'Pacifico', cursive;
}

.brush-text::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: url('https://i.imgur.com/nOwzT1U.png') no-repeat center/contain;
  z-index: -1;
}

.hero-style-heading::after {
  content: '';
  display: block;
  width: 180px;
  height: 4px;
  background-color: #00bfa6;
  margin: 10px auto 0;
  border-radius: 5px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.about-text {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.about-text p {
  font-size: 18px;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  color: #666;
  font-size: 14px;
}

.about-points {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.about-points li {
  text-align: left;
  margin-bottom: 10px;
  font-size: 16px;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.about-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
  gap: 30px;
  max-width: 800px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .about-numbers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-numbers h3 {
  font-size: 32px;
  color: #774056;
  margin-bottom: 8px;
}

.about-numbers p {
  color: #666;
  font-size: 14px;
}










/* CSS for contact us page */
.contact-section {
  padding: 80px 20px;
  background-color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 60px rgba(1, 1, 1, 0.15);
  
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1f2937;
}

.contact-info p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 30px;
}

.info-block {
  margin-bottom: 20px;
}

.info-block h4 {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}

.info-block p {
  font-size: 16px;
  color: #111827;
  font-weight: 500;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
}

input, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border 0.2s ease-in-out;
}

input:focus, textarea:focus {
  border-color: #6366f1;
}

button {
  padding: 14px 24px;
  background: linear-gradient(to right, #774056, #5a2f3f);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #774056;
  color: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

}

button:hover {
  transform: translateY(-2px);
  
  background: #5a2f3f;
}






/* css for WHy kenzou ? */
.why-kenzou {
  background: linear-gradient(to right, #f3f4f7, #f8f9fa);
  padding: 100px 20px;
  text-align: center;
}

.why-subtitle {
  color:#009ca6;
  ;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-title {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 60px;
  font-weight: 700;
}

.why-title span {
  background: linear-gradient(to right, #009ca6, #3a6669); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  /* color: #009ca6; */
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: linear-gradient(to top, #ffffff, #ffffff);
  border-radius: 20px;
  padding: 40px 25px;
  border: 1px solid #e0e7ff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform:  scale(1.015);
  box-shadow: 0 18px 35px rgba(99, 102, 241, 0.25);
  /* background: linear-gradient(to bottom right, #ffffff, #edf1ff); */
  cursor: pointer;
}

.why-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  object-fit: contain;
}

.why-card p {
  font-size: 16px;
  color: #374151;
  font-weight: 500;
  line-height: 1.5;
}





/* footer css */
/* Add to your style.css */
.footer {
  background-color: #111827; /* Keep your original dark background */
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;
}

.grid-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-about {
  flex: 1 1 300px;
}

.footer-about h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 14px;
  color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #00bcd4;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #ccc;
}

.footer-contact i {
  margin-right: 8px;
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 10px;
  font-size: 13px;
  color: #888;
}










/* again updated enquiry section */
.enquire-section {
background: linear-gradient(135deg, #f8f9fc, #f1f1f1);
padding: 100px 20px;
position: relative;
overflow: hidden;
}

.enquire-section::before {
content: "";
position: absolute;
width: 400px;
height: 400px;
/* background: radial-gradient(circle, rgba(255,0,150,0.2), transparent 70%); */
top: -100px;
right: -100px;
z-index: 0;
}

.enquire-container-flex {
max-width: 1200px;
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 40px;
position: relative;
z-index: 1;
}

.enquire-left {
flex: 1;
min-width: 300px;
text-align: center;

}

.enquire-right {
flex: 1;
min-width: 300px;
text-align: center;
}

.enquire-right img {
max-width: 100%;
height: auto;
}

.enquire-heading {
font-size: 2.5rem;
color: #111;
font-weight: bold;
margin-bottom: 30px;
}

.enquire-heading span {
background: linear-gradient(90deg, #ff4d94, #8e2de2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.enquire-btn {
background: linear-gradient(90deg, #ff4d94, #8e2de2);

color: white;
padding: 14px 32px;
font-size: 16px;
border-radius: 40px;
text-decoration: none;
font-weight: 500;
box-shadow: 0 8px 20px rgba(142, 45, 226, 0.4);
display: inline-flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
background: #774056;
color: white;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
 background: #009ca6;;;
}

.enquire-btn:hover {
transform: translateY(1px);
box-shadow: 0 12px 30px rgba(164, 157, 170, 0.6);
}









/* Popup Styles */
.popup-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

.popup-content h2 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #5a2f3f;
}

.popup-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
}










/* testimonial */

/* ========== Testimonials Section ========== */

.testimonials-section {
  background: url(./images/lightpatternwhite.jpg) no-repeat center center/cover; 
  padding: 80px 20px;
  text-align: center;
}

.testimonials-heading {
  font-size: 32px;
  font-weight: bold;
  color:#009ca6;
  margin-bottom: 10px;
}

.testimonials-heading span {
  display: block;
  font-size: 30px;
  color: #009ca6;
}

.testimonials-subtext {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
  font-size: 16px;
}

/* Carousel Container */
.testimonial-carousel {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  padding: 0 60px; /* space for arrows */
}

/* Track holds the wrapper */
.testimonial-track {
  overflow: hidden;
  width: 100%;
}

/* Wrapper has the cards */
.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Individual Card */
.testimonial-card {
  flex: 0 0 48%;
  margin: 10px;
  padding: 25px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  padding: 10px;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.stars {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-text {
  margin: 15px 0;
  font-style: italic;
  color: #444;
}

/* User Info */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.userimage {
  background-color: white;
  height: 60px;
  width: 60px;
  border-radius: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50% );
  font-size: 22px;
  color: white;
  border: none;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  background-color: #009ca6;
  outline: none;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: #009ca6;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
  left: 10px;
  
}

.carousel-btn.next {
  right: 10px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .carousel-btn.prev {
    left: 5px;
  }

  .carousel-btn.next {
    right: 5px;
  }
}




/* faq css */


.faq-section {
  font-family: Arial, sans-serif;
  background: url('/images/lightpatternwhite.jpg') ;
  /* background-size: cover; */
  
  margin: 10px auto;
 
  margin: 0 auto;
  padding: 50px ;
  

  
}



.faq-header {
  text-align: center;
  font-size: 1.5rem;
  
  padding: 20px;
  color: #333;
  color:white;
  background:#009ca6;
  border-radius: 10px 10px 0 0;
}

.faq {
  border-top: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  font-size: 15px;
  cursor: pointer;
  background:white;
  
}





.faq-icon {
  font-size: 1.2rem;
}

.faq-question.active .faq-answer {
  display: block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:  0.5s ease-in-out;
}




.faq-container {
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
  
}



.faq-question:hover {
  background: rgb(236, 233, 238) ;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  padding: 0 15px;
  border-left: 3px solid #007bff;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
  font-size: 14px;
}

.faq-question.active + .faq-answer {
   /* Adjust based on content */
  padding: 1px;
  
}





/* career page css */
.career-wrapper {
  /* background: url('./images/lappy.jpg') center center / cover no-repeat; */
  padding: 60px 20px;
  min-height: 100vh;
}

.career-container {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 60px 30px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.career-header {
  margin-bottom: 40px;
}
.career-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.career-header p {
  font-size: 1rem;
  color: #6b7280;
}
.job-listing {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-bottom: 20px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s ease;
}
.job-listing:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  
}
.job-info h3 {
  margin: 0;
  font-size: 1.25rem;
}
.job-info p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #6b7280;
}
.job-info ul {
  margin-top: 5px;
  padding-left: 20px;
}

.job-info ul li {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 4px;
}

.tags {
  margin-top: 10px;
}
.tag {
  display: inline-block;
  margin-right: 10px;
  background: #e0e7ff;
  color: #009ca6;;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 12px;
}
.apply-btn {
  background-color: transparent;
  border: 2px solid #009ca6;
  color: #009ca6;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  transition: background-color 0.3s, color 0.3s;
}
.apply-btn:hover {
  background-color: #009ca6;
  color: white;
}

/* career page responsive */
@media (max-width: 768px) {
  .job-listing {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .career-header h1 {
    font-size: 2rem;
  }
  .career-header p {
    font-size: 0.95rem;
  }
  .job-info h3 {
    font-size: 1.1rem;
  }
}



/* // model popup css */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  position: relative;
}
.modal-content h2 {
  margin-bottom: 15px;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Match the focus effect */
.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  outline: none;
  border-color: #009ca6; /* Theme color (adjust if needed) */
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1); /* Subtle focus glow */
  color: #111;
}
.modal-content select {
  appearance: none;
  -webkit-appearance: none; /* For Safari */
  -moz-appearance: none;    /* For Firefox */
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%237c3aed"><polygon points="0,0 12,0 6,8"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px; /* Give space for the icon */
}


.modal-content button {
  /* background-color: #009ca6; */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.modal-content .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.modal-content .close-btn:hover {
  background-color: transparent;
  color: #333;
}

#serviceTitle{
  color: #009ca6;
}




/* // css for read more in about us */
.left-know-more {
  margin-top: 25px;
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
}

.left-know-more p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.left-know-more .cta-button {
  padding: 8px 20px;
  background-color: #009ca6;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.left-know-more .cta-button:hover {
  background-color: #007e89;
}

/* Left slide animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.left-know-more p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.left-know-more p span {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideWordIn 0.6s forwards;
}

.left-know-more p span:nth-child(1) { animation-delay: 0.1s; }
.left-know-more p span:nth-child(2) { animation-delay: 0.2s; }
.left-know-more p span:nth-child(3) { animation-delay: 0.3s; }
.left-know-more p span:nth-child(4) { animation-delay: 0.4s; }
.left-know-more p span:nth-child(5) { animation-delay: 0.5s; }
.left-know-more p span:nth-child(6) { animation-delay: 0.6s; }
.left-know-more p span:nth-child(7) { animation-delay: 0.7s; }
.left-know-more p span:nth-child(8) { animation-delay: 0.8s; }

@keyframes slideWordIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




.hero {
  text-align: center;
  padding: 100px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}



/* Floating Icons */
.floating-icons .icon {
  position: absolute;
  width: 60px;
  opacity: 0.05;
  z-index: 1;
  animation: float 6s ease-in-out infinite alternate;
}
.icon1 { top: 40px; left: 10%; animation-delay: 0s; }
.icon2 { top: 200px; left: 80%; animation-delay: 2s; }
.icon3 { top: 350px; left: 50%; animation-delay: 4s; }

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-20px); }
}

/* Heading and button already present, keeping your styles */
.hero h1 {
  font-size: 48px;
  font-weight: bold;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.hero p.subtext {
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  margin-top: 10px;
  color: #444;
  font-family: "Caveat", cursive;
  min-height: 40px;
  transition: opacity 0.3s ease;
}









/* Glowing Button */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}
@keyframes shine {
  to {
    left: 100%;
  }
}

.scroll-down {
  margin-top: 50px;
}
.scroll-down span {
  font-size: 30px;
  color: #009ca6;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-down a {
  text-decoration: none;  /* removes underline */
  display: inline-block;
  
}

html {
  scroll-behavior: smooth;
}




.scroll-down {
  text-align: center;
  margin-top: 40px;
}

.scroll-down span {
  font-size: 30px;
  color: #009ca6;
  animation: bounce 2s infinite;
  cursor: pointer;
  display: inline-block;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

/* Enable smooth scroll globally */
html {
  scroll-behavior: smooth;
}


.nav-links li a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00bcd4;
}





/* css for hero page responsive */

/* css for hero page reponsiveness */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 40px;
   
  }

  .hero p {
    font-size: 28px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .floating-icons .icon {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 15px;
  }

  .hero h1 {
    font-size: 32px;
   
    line-height: 1.4;
  }

  .hero p {
    font-size: 22px;
    margin-top: 8px;
  }

  .btn {
    font-size: 15px;
    padding: 10px 18px;
  }

  .floating-icons {
    display: none; /* Hide icons on smaller screens */
  }
}

@media (max-width: 480px) {
  .hero {
    text-align: center;
    padding: 49px 20px;
    background: #fff;
    
  }
  .hero h1 {
    font-size: 35px;
    
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 18px;
  }

  .scroll-down span {
    font-size: 30px;
  }
}



/*  for responsive testimonial section */
@media (max-width: 768px) {
  .testimonial-card {
  
    padding: 5px 25px !important;
    font-size: 0.95rem !important;
    line-height: 1.5rem !important;
  }

  .testimonial-card p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 1rem !important;
  }

  .testimonial-author img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
  }

  .testimonial-card h3 {
    font-size: 1rem !important;
  }

  .testimonial-arrow {
    bottom: 20px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }
}










