/* ==========================
   RESET & BASE
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    line-height: 1.6;
    color: #111;
    background-color: #f9f9f9;
    padding-top: 0; 
}

.top-bar {
    background: #2c5d73;
    color: #fff;
    text-align: center;
    padding: 2px;
    font-size: 14px;
}

.logo img {
    height: 80px;   /* 🔥 perfect balance */
    width: auto;
}

.logo {
    display: flex;
    align-items: below;
    height: 100%;   /* 🔥 prevents extra space */
}

/* ==========================
   HEADER / NAVBAR
========================== */
/* header {
    position: fixed !important;
    height: 100px;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 99999 !important; 
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} */

/* ==========================
   GLOBAL PRIMARY BUTTON (PREMIUM CTA STYLE)
========================== */

.btn-primary {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #ff6600;
    color: #ff6600;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background: #ffffff;
    color: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.25);
}

/* shine animation sits BELOW text */
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: transparent;
    transform: skewX(-20deg);
    transition: 0.5s;
    z-index: -1;                         
}



.btn-primary:hover::after {
    left: 120%;
}

/* Navbar layout */
.navbar {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;   /* 🔥 tighter */
    height: 60px;        /* 🔥 force clean height */
}

.nav-links {
    display: flex;
    list-style: none;
    padding-top: 40px;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff6600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #111;
}

/* Responsive Hamburger Menu */
@media(max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        display: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


/* ==========================
   HERO BACKGROUND FIX
========================== */

.hero {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    text-align: left;
    color: #fff;
    padding: 0 20px;
    font-size: larger;
}

/* ==========================
   HERO CONTENT TEXT STYLES
========================== */

.hero-content {
    padding-left: 80px;        /* Left padding for text block */
    max-width: 650px;          /* Prevent text from stretching too wide */
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 3rem;    
    line-height: 1.2;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h5 {
    font-family: "Times New Roman", Times, serif;
    font-weight: 200;
    font-size: 1.2rem;
    line-height: 1.2;   
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* ==========================
   RESPONSIVE — TABLETS
========================== */

@media (max-width: 768px) {
    .hero-content {
        padding-left: 30px;
        padding-right: 20px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* ==========================
   RESPONSIVE — MOBILE
========================== */

@media (max-width: 480px) {
    .hero-content {
        padding-left: 20px;
        padding-right: 15px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

/* Background container */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2 !important;
}

.hero::after {
    z-index: -1 !important;
}


/* GIF as background */
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for readability */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Content on top */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.video-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    
}

html {
  scroll-behavior: smooth;
}

.video-container {
       max-width: 1000px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================
   SERVICES
========================= */
.services {
    text-align: center;
    padding: 80px 20px;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 50px;
}

/* Center the grid and its items */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center; /* centers the grid horizontally */
    align-items: center;     /* centers items vertically if needed */
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    text-align: center; /* centers content inside each card */
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* ==========================
   PORTFOLIO
========================== */
.portfolio {
    padding: 80px 20px;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: start;
}

/* Make all portfolio items look like cards */
.portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Images */
.portfolio-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s;
}

/* Hover only on image cards (not the video) */
.portfolio-card:not(.portfolio-video) img:hover {
    transform: scale(1.05);
}

/* VIDEO inside portfolio */
.portfolio-card.portfolio-video {
    grid-column: 1 / -1;       /* full row */
    width: 100%;
    max-width: 780px;           /* ← increased from 650px */
    margin: 0 auto;
    justify-self: center;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 16 / 9) {
    .portfolio-card.portfolio-video {
        height: 0;
        padding-top: 56.25%;
    }
}

.portfolio-card.portfolio-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Load more button */
.load-more button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff6600;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.load-more button:hover {
    background: #e55b00;
}


/* ==========================
   TESTIMONIALS (MODERN PREMIUM)
========================== */

.testimonials {
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
    padding: 100px 20px;
    text-align: center;
}

.testimonials h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.testimonials p.subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* CAROUSEL / GRID WRAPPER */
.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    justify-items: center;
}

/* CARD DESIGN */
.testimonial-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;

    text-align: center; /* ✅ CENTER TEXT FOR YOUR HTML */
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    max-width: 340px;
}

/* TOP ACCENT BAR */
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ff6600, #ff944d);
}

/* HOVER EFFECT */
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* TEXT */
.testimonial-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-size: 1rem;
    color: #ff6600;
    font-weight: 700;
    margin-bottom: 10px;
}

/* STARS */
.stars {
    color: #ffb400;
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
}

/* STARS */
.stars {
    display: flex;
    justify-content: center;
    gap: 3px;
}

/* VIDEO SECTION */
.testimonial-video {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.testimonial-video h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonials h1 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-video iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 70px 15px;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }
}

/* ==========================
   HOW EASY IT IS (PROCESS SECTION)
========================== */

.process {
    padding: 90px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
}

.process h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #111;
}

/* STEPS GRID */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* STEP CARD */
.process-step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
}

/* NUMBER BADGE */
.process-step span {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(90deg, #ff6600, #ff944d);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}

/* TEXT */
.process-step p {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
}

/* HOVER EFFECT */
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* OPTIONAL: CONNECTING FLOW LINE FEEL */
.process-step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    width: 20px;
    height: 2px;
    background: rgba(255, 102, 0, 0.3);
}

/* REMOVE LINE FOR LAST CARD */
.process-step:last-child::after {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .process h2 {
        font-size: 2rem;
    }

    .process-step::after {
        display: none; /* remove flow line on mobile */
    }
}

/* ==========================
   CTA SECTION (HIGH CONVERSION DESIGN)
========================== */

.cta {
    background: linear-gradient(135deg, #ff6600, #ff7f2a);
    color: #fff;
    text-align: center;
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
}

/* soft floating glow background */
.cta::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(60px);
}

.cta::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0,0,0,0.08);
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
    filter: blur(60px);
}

/* heading */
.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* text */
.cta p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: auto;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* CTA BUTTON OVERRIDE (WHITE STYLE FOR CONTRAST) */
.cta .btn-primary {
    border: 2px solid #fff;
    color: #fff;
    position: relative;
    z-index: 2;
}

.cta .btn-primary:hover {
    background: #fff;
    color: #ff6600;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ==========================
   BOOKING SECTION
========================== */
.booking {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
    text-align: center;
}

.booking-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.booking-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.booking-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.booking-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: left;
}

/* LEFT INFO CARDS */
.booking-info {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.booking-info-card:hover {
    transform: translateY(-4px);
}

.booking-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.booking-info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.booking-info-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* RIGHT FORM */
.booking-form-wrapper {
    flex: 2;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.booking-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.booking-form .form-group.full-width {
    flex: 100%;
    width: 100%;
}

.booking-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form textarea {
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    background: #fafafa;
    transition: all 0.3s ease;
    width: 100%;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: #ff6600;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,102,0,0.1);
}

.booking-form textarea {
    resize: none;
}

/* TIME SLOTS */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.time-slots input[type="radio"] {
    display: none;
}

.time-slot-btn {
    padding: 9px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #444;
    background: #fafafa;
}

.time-slots input[type="radio"]:checked + .time-slot-btn {
    background: #ff6600;
    border-color: #ff6600;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,102,0,0.25);
}

.time-slot-btn:hover {
    border-color: #ff6600;
    color: #ff6600;
}

/* CALL TYPE */
.call-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
}

.call-types input[type="radio"] {
    display: none;
}

.call-type-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #444;
    background: #fafafa;
}

.call-types input[type="radio"]:checked + .call-type-btn {
    background: #ff6600;
    border-color: #ff6600;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,102,0,0.25);
}

.call-type-btn:hover {
    border-color: #ff6600;
    color: #ff6600;
}

/* SUBMIT BUTTON */
.btn-book {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255,102,0,0.3);
    margin-top: 10px;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,102,0,0.4);
}

.booking-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
    }

    .booking-header h2 {
        font-size: 2rem;
    }

    .booking-form-wrapper {
        padding: 25px;
    }

    .booking-form .form-row {
        flex-direction: column;
    }

    .time-slot-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* ==========================
   CONTACT (PRO LEVEL UI)
========================== */
.contact {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #111;
}

.contact p {
    color: #555;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

/* FORM CARD */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;

    border: 1px solid #e5e5e5;
    border-radius: 10px;

    font-size: 15px;
    font-family: 'Poppins', sans-serif;

    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}

/* Focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6600;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.12);
}

/* TEXTAREA */
.contact-form textarea {
    resize: none;
    min-height: 140px;
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;

    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;

    font-weight: 600;
    font-size: 16px;

    cursor: pointer;
    transition: all 0.3s ease;

    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.25);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.35);
}

/* INFO BOX */
.contact-info {
    max-width: 350px;
    text-align: left;
    padding: 30px;
    background: #111;
    color: #fff;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.contact-info h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #ff6600;
}

.contact-info p {
    margin-bottom: 12px;
    color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        text-align: center;
    }
}

/* ==========================
   WHATSAPP FLOATING BUTTON
========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Pulse animation */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(1.6); opacity: 0;   }
    100% { transform: scale(1.6); opacity: 0;   }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ==========================
   WHATSAPP INLINE CARD BUTTON
========================== */
.whatsapp-card {
    border: 2px solid #25d366 !important;
    background: #f0fff5 !important;
}

.whatsapp-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 9px 18px;
    background: #25d366;
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-inline-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,211,102,0.3);
}

/* ==========================
   FOOTER WHATSAPP LINK
========================== */
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #25d366;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-whatsapp:hover {
    color: #20ba5a;
}

/* ==========================
   FOOTER
========================== */
footer {
    background: #111;
    color: #fff;
    padding: 50px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-column h3 {
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column form input {
    padding: 8px;
    width: 70%;
    margin-right: 5px;
    border-radius: 5px;
    border: none;
}

.footer-column form button {
    padding: 8px 12px;
    background: #ff6600;
    border: none;
    color: #fff;
    border-radius: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

/* ==========================
   RESPONSIVE
========================== */
@media(max-width: 1024px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    }
}

@media(max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        display: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel,
    .industry-carousel {
        gap: 15px;
    }

    .industry-card {
        min-width: 200px;
        max-width: 200px;
        height: 150px;
    }

    .industry-card img {
        height: 90px;
    }
}