  :root {
            --primary-red: #e31837;
            --secondary-blue: #007acc;
            --dark-blue: #005a9e;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #343a40;
            --text-color: #333;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Jost', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
             background: linear-gradient(
      rgba(36, 38, 40, 0.749), 
      rgba(37, 37, 38, 0.902)
    ),
    url("vambee\ favicon.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
      }
        
        
        h1, h2, h3, h4, h5 {
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--dark-gray);
            
        }
        
        h1 {
            font-size: 3.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--primary-red);
        }
        
        h3 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
        }
        
        .btn-primary {
            background-color: var(--primary-red);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #c4142f;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .btn-secondary {
            background-color: var(--secondary-blue);
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-red);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            display: inline-block;
        }
        
        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: transparent;
            
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-blue);
        }
        
        .logo span {
            color: var(--primary-red);
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        .logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            color: white;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-red);
            transition: var(--transition);
        }
        
        .nav-links a:hover {
            color: var(--primary-red);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: var(--primary-red);
        }
        
        .nav-links a.active:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--secondary-blue);
            cursor: pointer;
        }
        
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 0px;
            height: 80vh;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
            animation: fadeInUp 1s ease;
            font-weight: 2500;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }
        
        /* Services Overview */
        .services-overview {
            background-color: var(--light-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding: 40px 30px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background-color: rgba(231, 24, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            font-size: 2.2rem;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            background-color: var(--primary-red);
            color: var(--white);
            transform: rotateY(180deg);
        }
        .service-card h3 {
            margin-bottom: 15px;
            color: var(--secondary-blue);
        }

        
        /* Testimonials */
        .testimonials {
            background-color: var(--white);
        }
        
        .swiper {
            width: 100%;
            height: 100%;
            padding: 30px 0 60px;
        }
        
        .testimonial-card {
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin: 20px;
            position: relative;
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: rgba(231, 24, 55, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-content {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--secondary-blue);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            color: var(--secondary-blue);
        }
        
        .swiper-pagination-bullet-active {
            background-color: var(--primary-red);
        }
        
        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            background-color: black;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .feature-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: rgba(0, 122, 204, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--secondary-blue);
            font-size: 1.5rem;
        }
        
        /* Services Detail */
        .service-detail-card {
            display: flex;
            background-color: black;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            transition: var(--transition);
            color: white;
        }
        
        .service-detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            flex: 1;
            min-height: 300px;
            background-size: cover;
            background-position: center;
        }
        
        .service-content {
            flex: 1;
            padding: 40px;
        }
        
        .service-content h3 {
            color: var(--secondary-blue);
            margin-bottom: 20px;
        }
        
        /* Contact Form & Map */
        .contact{
            background-color: black;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            
        }
        
        .contact-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .contact-form h3 {
            margin-bottom: 25px;
            color: var(--secondary-blue);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-gray);
        }
        
        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary-blue);
            box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
        }
        .contact-info h3 {
            margin-bottom: 25px;
            color: var(--secondary-blue);
        }
        
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            
        }
        
        .info-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(231, 24, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-red);
            font-size: 1.5rem;
        }
        
        #map {
            height: 400px;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-top: 40px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--primary-red);
        }
        
        .footer-about p {
            opacity: 0.8;
        }
        
        .footer-links h3, .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3:after, .footer-contact h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-red);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--primary-red);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--primary-red);
        }
        .footer-logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
  /*filter: brightness(0) invert(1);*/
  transition: all 0.4s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background-color: var(--primary-red);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .service-detail-card {
                flex-direction: column;
            }
            
            .service-img {
                min-height: 250px;
            }
             .service-img {
            flex: 1;
            min-height: 300px;
            background-size: cover;
            background-position: center;
        }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

              .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 0px;
            height: 80vh;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
            animation: fadeInUp 1s ease;
            font-weight: 2500;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }
            
            .btn {
                width: 100%;
                max-width: 250px;
            }
            
            .service-detail-card {
                margin-bottom: 40px;
            }
            /* Hide menu by default on mobile */
.nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 80px;
    right: 0;
    background: var(--dark-gray);
    width: 200px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Show menu when active */
.nav-links.active {
    display: flex;
}

/* Show hamburger only on mobile */
#mobileMenuBtn {
    display: none;
}

@media (max-width: 768px) {
    #mobileMenuBtn {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }

    .nav-links {
        display: none; /* stays hidden until active */
    }
}

        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero {
                padding: 130px 0 60px;
            }
            
            .service-card, .testimonial-card, .contact-form {
                padding: 30px 20px;
            }
        }

        /* Fullscreen Hero */
.hero {
  height: 80vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* Background Video Fills Entire Hero */
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

/* Overlay shading */
.hero-overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: linear-gradient(to right,
    rgba(0, 0, 0, 0.482) 60%,
    rgba(0, 0, 0, 0.721) 100%);
  z-index:1;
}

/* Container: split layout */
.hero-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left area for visual/video (we leave empty since video background is full-screen) */
.hero-visual {
  flex: 1;
  min-width: 0;
  /* optionally you could place a framed version of the video here */
}

/* HERO TEXT – LUXURY AGENCY LEVEL */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  padding-left: 10px;
  animation: fadeSlide 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Bold Hero Headline */
.hero-text h1 {
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 500;
  /*text-transform: uppercase;*/
  line-height: 1.03;
  letter-spacing: -2px;
  background: linear-gradient(90deg, #ffffff 0%, #a6ffe2 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 14px rgba(0,255,173,0.15));
  animation: glowPulse 3s ease-in-out infinite alternate;
  font-weight: 200;
}

@keyframes glowPulse {
  0% { filter: drop-shadow(0 4px 10px rgba(0,255,173,0.08)); }
  100% { filter: drop-shadow(0 10px 24px rgba(0,255,173,0.22)); }
}

.hero-text h1 span {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, #00ffb3, #00cfff, #00ffb3);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: glowText 2s ease forwards 0.3s;
  filter: drop-shadow(0 0 10px rgba(0,255,200,0.4));
  font-weight: 200;
}

@keyframes glowText {
  0% {
    background-position: 200%;
    filter: blur(6px) brightness(0.6);
  }
  100% {
    background-position: 0%;
    color: #ffffff;
    filter: blur(0) brightness(1);
  }
}

.hero-text h1 span::after {
  content: "Vambee";
  position: absolute;
  inset: 0;
  color: #02f7b1;
  text-shadow: 0 0 12px rgba(2,247,177,0.75);
  clip-path: inset(0 100% 0 0);
  animation: reveal2 1.5s cubic-bezier(.18,.66,.46,1.17) forwards 1s;
  
}

@keyframes reveal2 {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}


@keyframes slideUnderline {
  to { transform: scaleX(1); }
}

/* Sublines */
.hero-text p:first-of-type {
  font-size: 1.35rem;
  font-weight: 500;
  color: #d6fdfa;
}

.hero-text p:nth-of-type(2) {
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  font-size: 1.05rem;
  
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 22px;
  margin-top: 10px;
}

.btn {
  padding: 15px 34px;
  border-radius: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.8px;
  transition: 0.35s ease;
  font-size: 0.92rem;
}

/* About Section Gradient Background */
.about {
    background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: 'Segoe UI', sans-serif;
}

/* Container */
.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.section-title h2 {
    font-size: 40px;
    color: var(--secondary-blue);
    text-align: center;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 18px;
    color:black;
    text-align: center;
    margin-bottom: 50px;
}

/* About Text */
.about-text p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

/* Why Choose Us Heading */
.why-choose-us h3 {
    text-align: center;
    font-size: 40px;
    color: var(--secondary-blue);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Swiper Card Styling */
.swiper-slide.feature-item {
    background-color: black;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.swiper-slide.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Feature Icon */
.feature-icon {
    font-size: 70px;
    color: var(--primary-red);
    margin-bottom: 20px;

}

/* Feature Titles */
.feature-item h4 {
    font-size: 30px;
    font-weight: 400;
    color:var(--secondary-blue);
    margin-bottom: 10px;
}

/* Feature Descriptions */
.feature-item p {
    font-size: 20px;
    color: white;
    line-height: 1.6;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #008060;
    transition: color 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #004d40;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #008060;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .swiper-slide.feature-item {
        padding: 25px 15px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
/* About Section Gradient */
.about {
    background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: 'Segoe UI', sans-serif;
}

/* Container width */
.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.section-title h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--secondary-blue);
}

.section-title p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Layout Wrapper */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* About Text */
.about-text {
    flex: 1 1 55%;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

/* CEO Card */
.ceo-card {
    flex: 1 1 35%;
    background: black;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

.ceo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 15px rgba(0,0,0,0.12);
}

/* CEO Image */
.ceo-img img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
}

/* CEO Name */
.ceo-name {
    font-size: 22px;
    font-weight: 500;
    color: #004d40;
    margin-top: 10px;
}

/* CEO Title */
.ceo-title {
    font-size: 16px;
    color: var(--secondary-blue);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .ceo-card {
        flex: 1 1 100%;
    }
      .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 0px;
            height: 80vh;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
            animation: fadeInUp 1s ease;
            font-weight: 2500;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }
}

/* ===============================
   GLOBAL RESPONSIVE FIXES
================================ */
img, video {
  max-width: 100%;
  height: auto;
}

.container {
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

section {
  padding: clamp(60px, 8vw, 100px) 0;
}

/* ===============================
   TYPOGRAPHY SCALING
================================ */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

/* ===============================
   HERO SECTION (ALL DEVICES)
================================ */
.hero {
  min-height: 100vh;
  height: auto;
  padding: clamp(120px, 18vw, 200px) 0 clamp(60px, 10vw, 120px);
}

.hero-container {
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  max-width: 700px;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -1px;
}

.hero-btns {
  flex-wrap: wrap;
}

.hero-btns .btn {
  min-width: 200px;
}

/* ===============================
   NAVIGATION (CLEAN MOBILE)
================================ */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    font-size: 28px;
    color: white;
  }

  .nav-links {
    position: fixed;
    inset: 80px 0 auto 0;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

/* ===============================
   GRID & CARDS
================================ */
.services-grid,
.features-grid,
.footer-container,
.contact-container {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Service Detail Card */
.service-detail-card {
  flex-wrap: wrap;
}

.service-img {
  min-height: 220px;
}

/* ===============================
   ABOUT SECTION
================================ */
.about-wrapper {
  gap: 30px;
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    font-size: 1rem;
  }
}

/* ===============================
   FORMS
================================ */
.contact-form,
.info-item {
  padding: clamp(20px, 4vw, 40px);
}

.btn {
  width: auto;
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
    max-width: 100%;
  }
}

/* ===============================
   FOOTER
================================ */
.footer-logo img {
  max-width: 140px;
}

/* ===============================
   FLOATING WHATSAPP
================================ */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
}

