   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      padding-top: 105px; /* Space for fixed topbar + header */
        overflow-x: hidden !important;
      
    }

    /* Topbar Styling */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #1b75bc;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      color: white;
      z-index: 1001;
      font-size: 14px;
      height: 45px;
    }

    .left, .center, .right {
      display: flex;
      align-items: center;
    }

    .left i, .center i {
      margin-right: 8px;
      font-size: 16px;
    }

    .right a {
      margin-left: 15px;
      color: white;
      font-size: 18px;
      text-decoration: none;
      transition: opacity 0.3s ease;
    }

    .right a:hover {
      opacity: 0.7;
    }

    /* Header Styling */
    .header {
  position: fixed;
  top: 45px; /* Position exactly below topbar */
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;   /* ✅ yahi change: vertical padding remove */
  z-index: 1000;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 80px;
}

.logo img {
  height: 75px;
  padding: 5px 0px;
  border-radius: 4px;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li {
  margin: 0 15px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.nav i {
  font-size: 18px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #0079ff;
}

/* Tablet View (768px and below) - Hide topbar, show header with hamburger */
@media (max-width: 768px) {
  .topbar {
    display: none; /* Hide topbar on tablet and mobile */
  }

  body {
    padding-top: 60px; /* Adjust for header only */
  }

  .header {
    top: 0; /* Position at top since topbar is hidden */
    padding: 0px 10px;   /* ✅ yahi change: vertical padding remove */
    height: 60px;
  }

  .logo img {
    height: 70px;
    padding: 10px;
  }

  .hamburger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    background-color: #1A3D74;
    transition: max-height 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .nav.active {
    max-height: 400px;
  }

  .nav ul {
    flex-direction: column;
    padding: 0;
  }

  .nav li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav li:last-child {
    border-bottom: none;
  }

  .nav a {
    font-size: 16px;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    width: 692%;
  }

  .nav a:hover {
    background-color: rgba(255, 127, 80, 0.1);
  }
}

/* Large Laptop/Desktop View - Responsive for all screen sizes */
@media (min-width: 769px) and (max-width: 1024px) {
  .topbar {
    font-size: 13px;
    padding: 8px 15px;
  }

  .left span,
  .center span {
    font-size: 13px;
  }

  .right a {
    margin-left: 10px;
    font-size: 16px;
  }

  .header {
    padding: 0px 25px;   /* ✅ yahi change: vertical padding remove */
  }

  .nav li {
    margin: 0 10px;
  }

  .nav a {
    font-size: 15px;
  }
}

/* Default nav link */
.nav ul li a {
  position: relative;
  text-decoration: none;
  padding: 8px 15px;
  transition: color 0.3s ease;
}

/* Underline animation (desktop + mobile) */
.nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

/* Extra Large Screens */
@media (min-width: 1025px) {
  .topbar {
    padding: 12px 30px;
  }

  .header {
    padding: 0px 40px;   /* ✅ yahi change: vertical padding remove */
  }
}

/* Demo content */
.content {
  max-width: 1200px;
  margin: 0 auto;
}

.content h1 {
  color: #1A3D74;
  margin-bottom: 20px;
}

.content p {
  line-height: 1.6;
  margin-bottom: 15px;
}


    /* Hero Section Styling */
 .hero-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  animation: changeBackground 9s infinite; /* 9s for 3 images, 3 seconds each */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Keyframes for the background image transition */
@keyframes changeBackground {
  0%, 33.33% {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/homepageimage1.jpg') center/cover no-repeat;
  }
  33.33% {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/homepageimage2.jpg') center/cover no-repeat;
  }
  66.66% {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/homepageimage3.jpg') center/cover no-repeat;
  }
  100% {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/homebanner1.jpg') center/cover no-repeat;
  }
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
  animation: fadeInContent 3s ease-in-out; /* Fade-in effect for the content */
}

.hero-content h1 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #007bff;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.book-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.available-badge {
  background: #28a745;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.available-badge::before {
  content: '✓';
  font-weight: bold;
}

/* Fade-in effect for the hero content */
@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

         
       /* Why Choose Us Section */
.why-choose-us {
    background: #f4f4f4;
    padding: 20px 20px;
    color: #333;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 12px;
    color: #555;
    max-width: 1000px;
    margin: 0 auto;
}

/* Quality Cards Container */
.qualities-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: 4 cards per row for large screens */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Quality Card */
.quality-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.quality-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Icon Circle Design */
.quality-card .icon {
    background-color: #00bcd4;
    padding: 20px; /* Adjusted padding for better size */
    border-radius: 50%; /* This makes it a full circle */
    margin-bottom: 20px;
    display: flex;
    justify-content: center; /* Horizontally center the icon */
    align-items: center; /* Vertically center the icon */
    width: 80px; /* Fixed width and height to ensure the icon stays in a circle */
    height: 80px;
    margin-left: auto;
    margin-right: auto;
}

.quality-card .icon svg {
    width: 40px; /* Adjusted the icon size to fit inside the circle */
    height: 40px;
    fill: white;
}

.quality-card h3 {
    font-size: 1.2rem;
    color: #00bcd4;
    margin-bottom: 15px;
}

.quality-card p {
    font-size: 12px;
    line-height: 1.6;
    color: #444;
}

/* About Button Container */
.about-btn-container {
    text-align: center;
    margin: 40px;
}

.about-btn {
    background: #00bcd4;
    color: white;
    text-decoration: none;
    padding: 12px 11px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.about-btn:hover {
    background: #008c9e;
}

/* Mobile View */
@media (max-width: 768px) {
    /* Tablet Layout: 2 cards per row */
    .qualities-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .quality-card h3 {
        font-size: 1.1rem;
    }

    .quality-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Mobile Layout: 1 card per row */
    .qualities-cards {
        grid-template-columns: 1fr; /* 1 item per row */
        gap: 20px;
    }

    .section-header h2 {
        font-size: 19px;
    }

    .quality-card h3 {
        font-size: 1rem;
    }

    .quality-card p {
        font-size: 12px;
    }
}

        /* Home Section 1 - Services */
               /* General styling for the section */
.home-section-1 {
  background: #f8f9fa;
  color: #333;
  padding: 20px 20px;
}

.home-section-1 .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.home-section-1 .section-header h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.home-section-1 .section-header p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid layout for services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Card (updated for full-width image) */
.service-card{
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 0;              /* ✅ image edge-to-edge */
  overflow: hidden;        /* ✅ image rounded corners ke andar */
  text-align: center;
  transition: all 0.3s ease;
}

.service-icon{
  width: 100%;
  height: 280px;           /* ✅ image height (aap adjust kar sakte ho) */
  margin: 0;               /* ✅ no gap */
}

.service-icon img{
  width: 100%;
  height: 108%;
  object-fit: cover;       /* ✅ cover full card area */
  display: block;
}

.service-content{
  padding: 50px 20px 24px; /* ✅ content ko niche push + spacing */
}

/* Service content styling */
.service-content h3 {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-content p {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* Tablet view adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    padding: 0 20px;
  }

  .service-icon {
    height: 190px;
  }

  .service-content {
    padding: 18px;
  }

  .service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .service-content p {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 520px){
  .home-section-1{
    padding: 55px 0; /* section top-bottom */
  }

  .home-section-1 .section-header{
    padding: 0 14px; /* heading ke liye */
  }

  .services-grid{
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 12px;   /* ✅ thodi left-right padding */
    max-width: 100%;
  }

  .service-card{
    width: 100%;
    border-radius: 10px; /* rounded same rahe */
  }

  .service-icon{
    height: 170px;
  }

  .service-content{
    padding: 16px;
  }
}

/* Style for the "View Services" button */
.service-btn {
  display: inline-block;
  background-color: #00bcd4; /* Use the same accent color */
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background-color: #0097a7; /* Darker shade on hover */
  transform: translateY(-3px);
}

/* Gallery section */
/* Gallery Section */
.gallery-section {
    background: #f9f9f9;
    padding: 0px 20px;
    text-align: center;
}

.gallery-section .section-header {
    margin-bottom: 40px;
}

.gallery-section .section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.gallery-section .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 1000px;
    margin: 0 auto;
}

/* Grid for Gallery Images */
.gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row for large screens (laptops) */
    gap: 30px; /* Increase the gap between images */
    margin-bottom: 30px;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 250px; /* Increase the height for images */
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the space properly */
    transition: transform 0.3s ease;
}

/* Increase image size on hover */
.gallery-image:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Gallery Button */
.gallery-button {
    margin: 20px;
}

.gallery-btn {
    display: inline-block;
    background-color: #00bcd4;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background-color: #0097a7;
    transform: translateY(-3px);
}

/* Tablet View - 2 items per row for 768px */
@media (max-width: 768px) {
    .gallery-images {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 30px; /* Adjust gap between images */
    }

    .gallery-section .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery-section .section-header p {
        font-size: 1rem;
    }
}

/* Mobile View - Single column layout for small screens */
@media (max-width: 480px) {
    .gallery-images {
        grid-template-columns: 1fr; /* 1 item per row */
        gap: 20px;
    }

    .gallery-section .section-header h2 {
        font-size: 1.5rem;
    }

    .gallery-section .section-header p {
        font-size: 14px;
    }
}


/* CTA SECTION CSS */

      .home-cta-section {
    max-width: 1200px;
    margin: 0 auto;
    /* background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); */
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.home-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.9;
    animation: fadeInDown 0.8s ease-out;
    color: black;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: black;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-description {
    font-size: 13px;
    margin-bottom: 19px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    color: black;
}

/* ✅ Buttons wrapper - all screens centered */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ✅ Buttons - proper size & consistent */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;

    border: none;
    border-radius: 50px;
    cursor: pointer;

    text-decoration: none;
    transition: all 0.3s ease;

    min-width: 220px;
    line-height: 1;
}

.cta-btn-primary {
    background: #00bcd4;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.35);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 188, 212, 0.55);
    background: #00bcd4;
}

.cta-btn-secondary {
    background: #00bcd4;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-3px);
}

.phone-icon {
    font-size: 20px;
}

/* ✅ WhatsApp icon only size control (no background conflict) */
.whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: black;
}

.stat-number.counting {
    animation: none;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .home-cta-section {
        padding: 60px 30px;
    }

    .cta-title {
        font-size: 18px;
    }

    .cta-description {
        font-size: 12px;
    }

    .cta-buttons {
        gap: 14px;
        max-width: 520px;
    }

    .cta-btn {
        min-width: 200px;
        padding: 13px 20px;
        font-size: 15px;
    }

    .cta-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 520px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .cta-btn {
        width: 100%;
        min-width: unset;
        padding: 11px 11px;
        font-size: 15px;
    }
}

/* footer section css */
/* Footer Wrapper */
.footer-wrap {
  background: linear-gradient(90deg, #0b3c5d 0%, #1565c0 50%, #0b3c5d 100%);
  color: #eaf2ff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 20px;

  /* ✅ FULL WIDTH FIX */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}


/* Titles */
.footer-title {
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  color: #ffffff;
}

/* Brand logo */
.footer-logo-box {
  width: 100px;
  height: 90px;
  border-radius: 12px; /* rectangle with soft corners */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Paragraph */
.footer-text {
  color: rgba(234, 242, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 290px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-link {
  color: rgba(234, 242, 255, 0.9);
  text-decoration: none;
  transition: 0.2s ease;
}
.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Contact */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Same box for all contact icons */
.footer-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px; /* fixed width so all align same */
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  margin: 3px;
}

/* Force all icons same size + center */
.footer-ico i {
  font-size: 18px;
  line-height: 1;
  display: block;
}

.footer-contact-link {
  color: rgba(234, 242, 255, 0.92);
  text-decoration: none;
}
.footer-contact-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-address {
  color: rgba(234, 242, 255, 0.9);
  line-height: 1.55;
}

/* Newsletter */
.footer-input {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  height: 48px;
  border-radius: 12px;
}
.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer-input:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-btn{
  height: 48px;
  border-radius: 12px;
  background-color: #000 !important; 
  border: none;
  color: #ffffff !important;
  font-weight: 700;
  transition: all 0.25s ease;   /* smooth hover */
}

.footer-btn:hover{
  background-color: #111;       /* hover pe thoda light black */
  filter: brightness(0.95);
}



/* Social */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s ease;
}
.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* Divider */
.footer-hr {
  border-color: rgba(255, 255, 255, 0.18);
}

/* Bottom bar */
.footer-copy,
.footer-dev {
  color: rgba(234, 242, 255, 0.9);
}
.footer-dev-highlight {
  color: #ffd54a;
  font-weight: 700;
}

/* ✅ FIX: 1024px (laptop) view */
/* ✅ FIX: 992px to 1199px (laptop) view */
@media (min-width: 992px) and (max-width: 1199px) {

  /* Contact aur Newsletter ke beech gap bada do */
  .footer-contact-col {
    padding-right: 50px;   /* contact ko left feel + extra space */
  }

  .footer-newsletter-col {
    padding-left: 20px;    /* newsletter ko thoda kam right push */
  }

  /* ✅ Gmail overlap fix: wrap/break allow karo */
  .footer-email {
    white-space: normal;        /* nowrap hatao */
    overflow-wrap: anywhere;    /* email ko break karne de */
    word-break: break-word;
    display: block;
    max-width: 240px;           /* contact column ke andar hi rahe */
  }
}


/* Extra: 520px and below -> 1 column feel + spacing */
/* Extra: 520px and below -> center everything */
@media (max-width: 520px) {

  /* har column ka content center */
  .footer-row > div{
    text-align: center;
  }

  /* logo size + center */
  .footer-logo-box{
    width: 160px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
  }

  /* paragraph center */
  .footer-text{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* social center */
  .footer-social{
    justify-content: center;
  }

  /* ✅ Quick Links center fix */
  .footer-links{
    padding-left: 0 !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links li{
    width: 100%;
    text-align: center;
  }
  .footer-link{
    display: inline-block;
  }

  /* ✅ Contact info center fix */
  .footer-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-contact-item{
    justify-content: center;
    text-align: center;
  }

  /* address wali row bhi center */
  .footer-contact-item.align-items-start{
    align-items: center !important;
  }
  .footer-address{
    text-align: center;
  }

  /* newsletter form center */
  .footer-form{
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* bottom bar center */
  .footer-bottom{
    text-align: center;
  }
}
.footer-wrap .container{
    padding-left: 16px;
    padding-right: 16px;
  }

/* 
What our client say section css */
/* ===== What Our Clients Say ===== */
.client-say-section{
  width: 100%;
  padding: 34px 0;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 1024px){
  .client-say-section{
    padding-left: 40px;
    padding-right: 40px;
  }
}

.client-say-inner{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.client-say-head{
  margin-bottom: 18px;
}

.client-say-title{
  margin: 0 0 8px 0;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #111827;
  text-align: center;
}

.client-say-subtitle{
  margin: 0 auto;              /* ✅ center block */
  font-size: 15px;
  line-height: 1.6;
  color: rgba(17,24,39,.78);
  text-align: center;          /* ✅ center text on all screens */
  max-width: 70ch;             /* ✅ optional: readable width */
}


/* Grid */
.client-say-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* Card */
.client-say-card{
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
  min-width: 0;
}

.client-say-card-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.client-say-img{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(17,24,39,.10);
  flex: 0 0 auto;
}

.client-say-meta{
  min-width: 0;
}

.client-say-name{
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.client-say-role{
  margin: 2px 0 0 0;
  font-size: 13px;
  color: rgba(17,24,39,.65);
}

.client-say-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(17,24,39,.78);
}

/* Responsive */
@media (max-width: 1024px){
  .client-say-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .client-say-title{
    font-size: 24px;
  }
  .client-say-subtitle{
    text-align: center;
  }
}

@media (max-width: 640px){
  .client-say-section{
    padding: 22px 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .client-say-grid{
    grid-template-columns: 1fr;
  }
  .client-say-title{
    font-size: 20px;
  }
}

/* floating icon */
.floating-actions{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-btn{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.floating-icon{
  width: 28px;          /* IMPORTANT */
  height: 28px;
  display: block;       /* prevents weird spacing */
}

.floating-btn.whatsapp{ background: #25D366; }
.floating-btn.call{ background: #0b5cff; }

.floating-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.32);
}
.floating-btn:active{ transform: translateY(0); }

@media (max-width: 520px){
  .floating-actions{ right: 14px; bottom: 14px; }
  .floating-btn{ width: 54px; height: 54px; }
}
