 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;

  font-style: normal;
}
html, body{
     overflow-x: hidden;
}

/* TOP STRIP */
.top-strip {
  background: #222;
  color: #fff;
  font-size: 13px;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  padding-left: 40px;
}
.logo img {
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

#navMenu {
  padding-right: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar nav ul li a {
  position: relative;
  text-decoration: none;
  color: #222;
  padding: 10px 0;
  font-weight: 500;
}

.navbar nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #7a1bb9; /* your purple */
  transition: width 0.3s ease;
}

.navbar nav ul li a:hover::after {
  width: 100%;
}

/* nav ul li a:hover {
  color: #4b006e;
} */

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;      /* Changed from 40px to 100% to sit flush with the bottom of the parent */
  left: 5%;        /* This forces it to align with the left edge of the "Locations" item */
  background: #fff;
  min-width: 200px;
  max-width: 250px;
  width: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;  /* Added this to ensure it stays on top of the hero image */
}


.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-align: left;   /* better UX than center */
  color: #333;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #f3f3f3;
}
.dropdown-menu.show {
  display: block;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 22px;
}
@media (max-width: 768px) {

  #navMenu ul {
    flex-direction: column;
  }

  #navMenu ul li {
    width: 100%;
  }

  .dropdown-menu {
    position: static;        /* KEY FIX */
    box-shadow: none;
    background: #f7f7f7;
    padding-left: 15px;
  }

  .dropdown-menu li a {
    padding: 12px;
    display: block;
  }
}

/* FLOATING BUTTONS */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* This creates the perfect space between them */
  z-index: 9999;
}

.floating-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size:24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-btn { background-color: #25d366; }
.phone-btn { background-color: #007bff; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 24px;
    padding:0px 8px;
  }

  .top-strip {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    right: 12px;
  }

  .fab {
    right: 12px;
  }
}
  .hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
}

/* Normal image styling */
.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Overlay stays above image */
.hero-overlay {
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.2)
  );
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-content p {
  color: #fff;
  font-size: 36px;
}

.hero-content span {
  font-weight: 700;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #740183;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { height: 70vh; }

  .hero-content h1 { font-size: 30px; }

  .hero-content p { font-size: 24px; }
}

/* Text animation base */
.hero-content h1,
.hero-content p,
.hero-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease forwards;
}

/* Delay for each element */
.hero-content h1 { animation-delay: 0.3s; }
.hero-content p  { animation-delay: 0.7s; }
.hero-btn        { animation-delay: 1.1s; }

/* Keyframes */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Acp info */
.acp-info {
  padding: 80px ;
  background: #fff;
}

.acp-info .container {
  max-width: 1100px;
  margin: auto;
 
}

/* Headings */
.acp-info h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #222;
   text-align: center;
}

.acp-info h2 span {
  color: #9a1b3b;
  font-weight: 600;

}

.acp-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #9a1b3b;
  text-align: center;
}

/* Paragraphs */
.acp-info p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #5e0156;
  margin-bottom: 14px;
   text-align: left;
  
}

/* Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .acp-info h2 {
    font-size: 24px;
  }

  .acp-info h3 {
    font-size: 16px;
  }

  .acp-info p {
    font-size: 14px;
  }

}

.expertise {
  padding: 80px 15px;
  background: #fff;
}

.expertise .container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.expertise-header {
  text-align: center; 
  margin-bottom: 50px;
}

.expertise-header h2 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #222;
}

.expertise-header h2 span {
  color: #6a1b9a;
  font-weight: 600;
}

.expertise-header p {
  margin-top: 12px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

/* Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.expertise-card {
  text-align: center;
}

.expertise-card img {
  width: 360px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.expertise-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.expertise-card h3 span {
  color: #6a1b9a;
}

.expertise-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
}

/* Button */
.expertise-btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 20px;
  background: #6a1b9a;
  color: #ffd54f;
  text-decoration: none;
  transition: 0.3s ease;
}

.expertise-btn:hover {
  background: #4a0f73;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-header h2 {
    font-size: 24px;
  }
}
.expertise-section {
  padding: 90px 20px;
  background: #fff;
}

.expertise-container {
  max-width: 1200px;
  margin: auto;
}

.expertise-header {
  text-align: center;
  margin-bottom: 50px;
}

.expertise-header h2 {
  font-size: 32px;
  letter-spacing: 2px;
}

.expertise-header h2 span {
  color: #97019c;
}

.expertise-header p {
  margin-top: 10px;
  font-size: 17px;
  color: #555;
}

/* SLIDER / GRID */

.expertise-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .expertise-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .expertise-slider {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.expertise-section {
  padding: 80px 20px;
}

.expertise-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.expertise-section .section-title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 1px;
}

.expertise-section .section-title span {
  color: #97019c;
  font-weight: 600;
}

.expertise-section .section-subtitle {
  margin: 10px 0 50px;
  font-size: 18px;
  color: #666;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.expertise-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  overflow: hidden;
  border-radius: 14px;
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.expertise-card:hover img {
  transform: scale(1.05);
}

.expertise-card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.expertise-card h3 span {
  color: #97019c;
}

.expertise-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.expertise-section .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #1b003d;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

.expertise-section .btn:hover {
  background: #97019c;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}
.delay-2 {
  transition-delay: 0.3s;
}
.delay-3 {
  transition-delay: 0.45s;
}

/* Responsive */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-section .section-title {
    font-size: 28px;
  }
}

/* why choose */
.why-choose {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  color: #333;
  margin-bottom: 50px;
}

.section-title span {
  color: #610064;
   font-weight: 500;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: #fafafa;
  padding: 35px 25px;
  border-radius: 16px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card .icon {
  font-size: 42px;
 color: #610064;
  margin-bottom: 18px;
}

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(106, 27, 185, 0.15);
}

.section-desc {
  width: 90%;
  margin: auto;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* Reveal animation */
.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}
.feature-card .icon {
  font-size: 42px;
 color: #610064;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.feature-card:hover .icon {
  transform: rotate(15deg) scale(1.15);
}

.acp-section {
  padding:80px 20px ;
  background: #f4f4f4;
}

.acp-container {
  max-width: 1200px;
  margin: auto;
}

.acp-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 80px;
  color: #222;
}

.acp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
 
}

.acp-row.reverse {
  direction: rtl;
}

.acp-row.reverse > * {
  direction: ltr;
}

.acp-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.acp-image img {
 
  width:500px ;
  height: auto;
 
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .acp-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .acp-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .acp-row.reverse {
    direction: ltr;
  }

  .acp-image img {
 
  width:380px ;
  height: auto;
 
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}
}
.animate-left,
.animate-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.animate-left {
  transform: translateX(-40px);
}

.animate-right {
  transform: translateX(40px);
}

.show {
  opacity: 1;
  transform: translateX(0);
}


/* location parah */
.location-about {
  padding: 80px 20px;
  background: #ffffff;
}

.location-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.location-title {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.3;
}

.location-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.location-text strong {
 color: #7f0683;
  font-weight: 600;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .location-about {
    padding: 50px 15px;
  }

  .location-title {
    font-size: 26px;
  }

  .location-text {
    font-size: 16px;
    line-height: 1.7;
  }
}


.faq-section {
  padding: 90px 20px;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #222;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
}

.faq-question i {
  color: #7f0683;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  padding-bottom: 15px;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Animation on scroll */
.animate-faq {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease;
}

.animate-faq.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
  }
}



.contact-pro {
  padding: 80px 20px;
  background: #faf8ff;
}

.contact-pro-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* COMMON CARD */
.contact-card {
  flex: 1;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* MAP */
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FORM */
.form-card {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-card h3 {
  margin-bottom: 12px;
  color: #7f0683;
  font-size: 22px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card input,
.form-card textarea {
  padding: 4px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-card textarea {
  resize: none;
  height: 70px;
}

.form-card button {
  margin-top: 6px;
  padding: 12px;
  background: linear-gradient(135deg, #7a3df0, #720072);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-pro-wrapper {
    flex-direction: column;
  }
}

.contact-card {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.contact-pro.animate .contact-card {
  opacity: 1;
  transform: translateY(0);
}


/* footer section */
.site-footer {
  background: linear-gradient(135deg, #570072, #440044);
  color: #fff;
  padding-top: 30px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr ; /* Address column added */
  gap: 20px;
  padding: 0 ;
}

/* BRAND */
.footer-col.brand h2 {
  font-size: 30px;
  line-height: 0.8;
}

.footer-col.brand h2 span {
  font-weight: 300;
  font-size: 18px;
}

.footer-col p {
  margin: 20px 0;
  color: #e6d9ff;
  line-height: 1.7;
}

/* BUTTON */
.footer-btn {
  display: inline-block;
  background: #ffb300;
  color: #4b006e;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 200;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  display: flex;
  align-items: center; /* keeps dot aligned on multi-line text */
  gap: 10px;
}

.footer-col ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ffcc4d;
  border-radius: 50%;
  margin-top: 7px; /* perfect vertical alignment */
  flex-shrink: 0;
}


.footer-col ul li {
  margin-bottom: 10px;
  color: #e6d9ff;
  cursor: pointer;
  transition: 0.3s;
}
.footer-col ul li a{
   text-decoration: none;
   color: #e6d9ff;
}

.footer-col ul li:hover {
  color: #ffcc4d;
  transform: translateX(15px);
}

/* SOCIAL */
.footer-social {
  text-align: center;
  margin: 15px 0 15px;
}

.footer-social a {
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc4d;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  color: #e6d9ff;
}





/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
     padding:10px;
  }
  .footer-col h4 {
    text-align: left;
  }
  .footer-col ul li::before {
    margin-top: 6px;
  }
  .footer-brand {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .footer-brand .btn,
  .footer-brand .social-icons {
    margin-left: 0;
    justify-content: flex-start;
  }
}

