 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f9fbff;
      color: #333;
      line-height: 1.6;
    }




/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  animation: slideDown 0.6s ease;
  width: 100%;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #0d47a1;
}

/* NAV */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #0d47a1;
  transition: 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  overflow: hidden;
  min-width: 200px;
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 1000;
}

/* .dropdown:hover .dropdown-menu {
  display: block;
} */

/* .dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #333;
} */

.dropdown-menu li a:hover {
  background: #f0f5ff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}

/* CONTACT BUTTON */
.nav-btn {
  background: linear-gradient(to right, #0d47a1, #00bcd4);
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(13,71,161,0.3);
}

.menu-btn {
  width: 30px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between; /* thoda zyada spacing ke liye */
  cursor: pointer;
  margin-top: 8px;
  font-weight: 200;
}

.menu-btn span {
  display: block;
  height: 4px; /* patli lines ke liye */
  background: #948f8f;
  border-radius: 2px;
  transition: 0.4s ease;
}


.menu-btn span {
  margin-bottom: 3px;
}
.menu-btn span:last-child {
  margin-bottom: 0;
}


/* CROSS STATE */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1100;
  }
  .nav-container .logo  {
    margin-top: 10px;
  }

  nav ul {
    position: absolute;
    top: 65px;
    left: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav ul.show {
    max-height: 500px;
  }

  nav ul li {
    width: 100%;
    padding: 10px 0;
  }

  /* MOBILE DROPDOWN CLICK */
  .dropdown-menu {
    position: static;
    /* display: none; */
    box-shadow: none;
    border-radius: 0;
    width: 100%;
  }

  
}




.hero {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-left .badge {
  background: #fff2ee;
  color: #0d47a1;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-left h1 span {
  color: #0d47a1;
}

.hero-left p {
  color: #666;
  margin-bottom: 20px;
  max-width: 450px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  a{
  text-decoration: none;
}

}

.btn {
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.primary {
 
  background: #6dccd3;
  color: #333;
}

.btn.secondary {
  background: #2869b3;
  color: white;
}

.hero-stats {
  display: flex;
  gap: 30px;
}

.hero-stats h3 {
  font-size: 26px;
  color: #222;
}

.hero-stats p {
  color: #777;
  font-size: 14px;
}


/* Right Image Area */

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating cards */

.float-card {
  position: absolute;
  background: rgb(228, 236, 238);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.top-card {
  top: 20px;
  right: 10px;
}

.bottom-card {
  bottom: 20px;
  left: 10px;
}


/* Responsive */

@media(max-width:900px){
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
}




  
/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.overlay {
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  animation: fadeUp 1s ease;
}

.overlay h1 {
  font-size: 48px;
  max-width: 900px;
  margin-bottom: 20px;
}

.overlay p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btn {
  background: linear-gradient(to right, #00bcd4, #0d47a1);
  padding: 14px 38px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.carousel-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

.carousel-dots span {
  height: 12px;
  width: 12px;
  display: inline-block;
  background: rgba(255,255,255,0.5);
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots span.active {
  background: white;
}

/* Responsive */
@media(max-width:768px) {
  .overlay h1 {
    font-size: 30px;
  }
  .overlay p {
    font-size: 16px;
  }
}



.trusted-section {
  padding: 80px 20px;
  background: #f4f7ff;
  text-align: center;
  overflow: hidden;
}

.trusted-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0d47a1;
}

/* Marquee effect */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 60px;
  margin: 0 50px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-track img {
    height: 40px;
    margin: 0 25px;
  }
}


    
.services-section {
  padding: 80px 20px;
  background: #eef3fb;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  padding: 30px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.08);
}

/* Left Dark Panel */
/* .services-left {
  background: linear-gradient(135deg, #0d47a1, #083b82);
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
}

.services-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.services-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.services-btn {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.services-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
} */



.services-left {
  max-width: 600px;
  padding: 55px 45px;
  background: linear-gradient(
    135deg,
    rgba(9, 58, 150, 0.95),
    rgba(5, 20, 55, 0.95)
  );
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: serviceCardEntry 1.2s ease-out forwards;
  transition: all 0.5s ease;
}

/* Glow border */
.services-left::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(120deg, #3f8cff, #00e0ff, #ff9800);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.7;
}

/* Hover lift */
.services-left:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.7);
}

/* Heading */
.services-left h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  animation: slideDown 1s ease forwards;
}

/* Text */
.services-left p {
  font-size: 17px;
  line-height: 1.8;
  color: #dbe6ff;
  margin-bottom: 38px;
  animation: fadeUp 1.3s ease forwards;
}

/* Button */
.services-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9800, #ff5c00);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(255, 153, 0, 0.7);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Button shine */
.services-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.7s;
}

.services-btn:hover::after {
  left: 120%;
}

.services-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 42px rgba(255, 153, 0, 0.95);
}

/* Animations */
@keyframes serviceCardEntry {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-left {
    padding: 40px 25px;
  }

  .services-left h2 {
    font-size: 30px;
  }

  .services-left p {
    font-size: 15px;
  }
}



/* SECTION */
.services-section {
  padding: 80px 20px;
  background: #f4f7fb;
}

/* WRAPPER */
.services-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  align-items: stretch;
}

.services-section {
  padding: 80px 20px;
  background: #f4f7fb;
  /* Subtle background gradient for depth */
  background: linear-gradient(135deg, #f4f7fb 0%, #e0e7f1 100%);
  /* Smooth fade-in on load */
  animation: fadeInSection 1.5s ease forwards;
  opacity: 0;
}

/* Fade in animation */
@keyframes fadeInSection {
  to {
    opacity: 1;
  }
}

/* WRAPPER */
.services-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  align-items: stretch;
  
  /* Glassmorphism effect */
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 30px;
  
  /* Slide up animation */
  animation: slideUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  animation-delay: 0.5s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: hover effect to brighten wrapper */
.services-wrapper:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}





/* LEFT PANEL */
.services-info {
  background: linear-gradient(180deg, #0f4cb8, #082a5e);
  color: #fff;
  padding: 45px 35px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-info h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.services-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #e5ecff;
}

.services-btn {
  align-self: flex-start;
  padding: 14px 32px;
  border-radius: 40px;
  background: #ff9800;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.services-btn:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: linear-gradient(180deg, #1c5fd4, #0b2f66);
  border-radius: 22px;
  padding: 30px 22px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 52px;
  margin: 0 auto 16px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #dce6ff;
}

/* TABLET */
@media (max-width: 992px) {
  .services-wrapper {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .services-section {
    padding: 50px 15px;
  }

  .services-info {
    text-align: center;
  }

  .services-btn {
    align-self: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}












.why-choose-us {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff, #eef3ff);
}

.why-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;
  text-align: center;
  padding: 50px 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.why-container h2 {
  font-size: 34px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.why-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Main layout */
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}

/* Feature boxes */
.why-item {
  padding: 20px;
  border-radius: 16px;
  background: #f9fbff;
  margin-bottom: 25px;
  transition: 0.4s;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(13,71,161,0.15);
}

.why-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.why-item h4 {
  font-size: 17px;
  color: #0d47a1;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14px;
  color: #555;
}

/* Center Image */
.why-image img {
  width: 100%;
  max-width: 540px;
  margin: auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Button */
.why-btn {
  display: inline-block;
  background: #0d47a1;
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 40px;
  font-size: 15px;
  transition: 0.3s;
}

.why-btn:hover {
  background: #08397d;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .why-content {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: -1;
    margin-bottom: 30px;
  }
}
.why-choose-us {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff, #eef3ff);
}

.why-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;
  text-align: center;
  padding: 50px 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.why-container h2 {
  font-size: 34px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.why-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Main layout */
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}

/* Feature boxes */
.why-item {
  padding: 20px;
  border-radius: 16px;
  background: #f9fbff;
  margin-bottom: 25px;
  transition: 0.4s;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(13,71,161,0.15);
}

.why-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.why-item h4 {
  font-size: 17px;
  color: #0d47a1;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14px;
  color: #555;
}

/* Center Image */
.why-image img {
  width: 100%;
  max-width: 240px;
  margin: auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Button */
.why-btn {
  display: inline-block;
  background: #0d47a1;
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 40px;
  font-size: 15px;
  transition: 0.3s;
}

.why-btn:hover {
  background: #08397d;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .why-content {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: -1;
    margin-bottom: 30px;
  }
}




/* Base */
.testimonials-section {
  background: #000;
  padding: 28px 16px;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
}

/* Header: stack on mobile */
.testimonials-header {
  max-width: 1100px;
  margin: 0 auto 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.google-rating { font-weight:700; color:#fff; }
.stars { color:#f6c34a; margin-top:4px; font-size:14px; }
.write-review-btn {
  background:#e53935; color:#fff; padding:8px 12px; border-radius:8px; text-decoration:none; font-weight:600;
}

/* Slider wrapper */
.testimonial-slider {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* Track */
.testimonial-track {
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding-bottom:6px;
  scrollbar-width:none;
}
.testimonial-track::-webkit-scrollbar{ display:none; }

/* Card: make flexible on mobile */
.testimonial-card {
  background:#151515;
  border-radius:12px;
  padding:16px;
  box-sizing:border-box;
  box-shadow: 0 6px 26px rgba(0,0,0,0.45);
  flex: 0 0 320px;       /* default desktop card size */
  max-width: 320px;
}
.testimonial-card .stars { color:#f6c34a; margin-bottom:8px; }
.testimonial-card p { color:#ddd; line-height:1.6; margin:8px 0 12px; font-size:14px; }
.user-info { display:flex; gap:10px; align-items:center; margin-top:8px; }
.avatar { width:44px; height:44px; border-radius:50%; display:grid; place-items:center; background:#333; color:#fff; font-weight:700; }

/* Buttons */
.slider-btn {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  height:48px; width:48px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.06);
  color:#fff; font-size:24px; cursor:pointer; z-index:9999;
}
#prevBtn { left: -8px; }
#nextBtn { right: -8px; }

/* ===== MOBILE ADAPTIVE ===== */
@media (max-width: 760px) {

  /* header stacks */
  .testimonials-header { padding-bottom: 8px; }

  /* make each card fill most of the viewport so one card per view */
  .testimonial-card {
    flex: 0 0 86%;     /* card width relative to viewport */
    max-width: 86%;
    margin-left: 6%;
    margin-right: 6%;
  }

  /* smaller avatars */
  .avatar { width:40px; height:40px; }

  /* position arrows inside the viewport on small screens */
  #prevBtn { left: 8px; }
  #nextBtn { right: 8px; }
}

/* very small phones */
@media (max-width:420px) {
  .testimonial-card { flex: 0 0 92%; max-width:92%; margin-left:4%; margin-right:4%; padding:14px; }
  .stars { font-size:13px; }
  .write-review-btn { width:100%; text-align:center; margin-top:8px; }
}





.contact-pro {
  padding: 100px 20px;
  background: linear-gradient(to right, #0d47a1, #00bcd4);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  background: white;
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

/* Left */
.contact-left h2 {
  font-size: 34px;
  color: #0d47a1;
}

.contact-left p {
  color: #555;
  margin-bottom: 25px;
}

.contact-left img {
  width: 60%;
  border-radius: 18px;
}

/* Right */
.input-box {
  position: relative;
  margin-bottom: 25px;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 18px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 15px;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: white;
  padding: 0 4px;
  font-size: 14px;
  color: #888;
  pointer-events: none;
  transition: 0.3s;
}

.input-box input:focus + label,
.input-box textarea:focus + label,
.input-box input:valid + label,
.input-box textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #0d47a1;
}

button {
  background: linear-gradient(to right, #0d47a1, #00bcd4);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13,71,161,0.3);
}

.form-status {
  margin-top: 15px;
  font-size: 14px;
  color: green;
}



.site-footer {
  background: #f5f9ff;
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin-top: 50px;
}

.footer-wave svg {
  width: 100%;
  height: 70px;
  display: block;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.footer-about h2 {
  font-size: 26px;
  color: #0d47a1;
}

.footer-about p {
  color: #666;
  margin: 15px 0;
}

.footer-social a {
  margin-right: 10px;
  color: #0d47a1;
  text-decoration: none;
  font-weight: bold;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  margin-bottom: 15px;
  color: #0d47a1;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
  color: #555;
}

.footer-links a {
  text-decoration: none;
  color: #555;
}

.footer-contact input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 10px;
}

.footer-contact button {
  background: linear-gradient(to right,#0d47a1,#00bcd4);
  border: none;
  color: white;
  padding: 12px;
  width: 100%;
  border-radius: 20px;
  margin-top: 10px;
  cursor: pointer;
}

.footer-bottom {
  background: #0d47a1;
  color: white;
  text-align: center;
  padding: 15px;
  position: relative;
}

#topBtn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #0d47a1;
  border: none;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
}



    .floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

   
   

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* MOBILE MENU */
    @media(max-width: 768px) {
      nav ul {
        position: absolute;
        background: white;
        top: 65px;
        left: 0;
        width: 100%;
        flex-direction: column;
        text-align: center;
        display: none;
      }

      nav ul.show {
        display: flex;
      }

      .menu-btn {
        display: block;
      }
    }





   
/* BOTTOM NAV – MOBILE + DESKTOP */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: linear-gradient(to right, #edeef0, #dde2e2); */
  background-color: #f8f7f7;
 
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 9999;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #2842b3;
  font-size: 12px;
}

.mobile-bottom-nav .nav-item i {
  font-size: 22px;
  margin-bottom: 5px;
  color: #2842b3;
}

.mobile-bottom-nav .nav-item span {
  font-weight: 500;
}

/* DESKTOP FLOATING ICONS – OPTIONAL */
@media (max-width: 768px) {
  .desktop-floating-icons {
    display: none !important;
  }
  body {
    padding-bottom: 70px;
  }
}

/* DESKTOP CENTER LOOK (OPTIONAL) */
@media (min-width: 992px) {
  .mobile-bottom-nav {
    max-width: 520px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 16px 16px 0 0;
  }
}
