
:root {
            --primary-color: #6366f1;
            --secondary-color: #571ddf;
            --accent-color: #398cf9;
            --accent-pink: #486eec;
            --accent-cyan: #06b6d4;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --text-light: #ffffff;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-dark: #0f172a;
            --bg-card: rgba(255, 255, 255, 0.95);
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #205ce8 100%);
            --gradient-secondary: linear-gradient(135deg, #7d8bfa 0%, #033671 100%);
            --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-elegant: linear-gradient(135deg, #667eea 0%, #3443e6 50%, #526edd 100%);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --glass: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);

            /* Brand Colors */
                --cobalt: #004aad;
                --vivid: #337cee;
                --dark: #1a1a1a;
                --text: #333333;
                --light: #ffffff;
                        
                /* Typography */
                --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                    sans-serif;
                --font-heading: "Amiko", sans-serif;

                /* Shadows */
                --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

html {
    font-size: 100%; /* 16px base */
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.75;
    font-size: clamp(15px, 1.1vw, 18px);
    
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin: 0 0 0.6em;
}

/* Hero Heading */
h1 {
    font-size: clamp(32px, 4.2vw, 52px);
}

/* Section Headings */
h2 {
    font-size: clamp(26px, 3vw, 40px);
}

/* Sub-sections */
h3 {
    font-size: clamp(20px, 2.2vw, 28px);
}

h4 {
    font-size: clamp(18px, 1.8vw, 22px);
}

p {
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.8;
    margin-bottom: 1.1em;
    color: var(--text);
}

.small-text {
    font-size: 14px;
    opacity: 0.85;
}
a {
    color: var(--cobalt);
    text-decoration: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--dark);
    transition: all 0.25s ease;
}

.nav-link:hover {
    background-color: #f0f6ff;
    color: var(--vivid);
}

.mega-menu h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--cobalt);
}

.mega-menu a {
    font-size: 14px;
    line-height: 1.6;
}

.btn,
button {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 50px;
}

.btn-primary {
    background-image: linear-gradient(135deg, var(--cobalt), var(--vivid));
    background-color: var(--cobalt);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }
}
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
}
/* Utility Classes */
.text-center {
    text-align: center;
}
.mt-0 {
    margin-top: 0;
}
.mb-0 {
    margin-bottom: 0;
}
.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}
.px-0 {
    padding-left: 0;
    padding-right: 0;
}
/* Responsive Helpers */
.d-none {
    display: none;
}
.d-block {
    display: block;
}
.d-flex {
    display: flex;
}
.d-inline-block {
    display: inline-block;
}
.d-inline {
    display: inline;
}
@media (max-width: 768px) {
    .d-md-none {
        display: none;
    }
    .d-md-block {
        display: block;
    }
    .d-md-flex {
        display: flex;
    }
    .d-md-inline-block {
        display: inline-block;
    }
    .d-md-inline {
        display: inline;
    }
}
@media (max-width: 480px) {
    .d-sm-none {
        display: none;
    }
    .d-sm-block {
        display: block;
    }
    .d-sm-flex {
        display: flex;
    }
    .d-sm-inline-block {
        display: inline-block;
    }
    .d-sm-inline {
        display: inline;
    }
}

/* ================= Header ================= */

/* ============================= */
/* Container */
/* ============================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 14px;
}

/* ============================= */
/* Top Bar */
/* ============================= */
.top-bar {
    background: linear-gradient(90deg, var(--cobalt), var(--vivid));
    color: #fff;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 0;
}

.top-bar-actions a {
    color: #fff;
    margin-left: 15px;
    font-weight: 500;
}

.whatsapp-btn {
    background: #0bc527;
    color: #ffffff !important;
    padding: 8px 14px;
    border-radius: 100px;
    font-weight: 600;
}


@media (max-width: 992px) {

    .top-bar-inner {
        flex-wrap: wrap;
        flex-direction: column;
        font-size: 12px;
        text-align: center;
        padding: 8px 10px;
    }
    .top-bar-text {
        display: flex;
        text-align: center;
    }

    .whatsapp-btn {
        padding: 6px 10px;
        border-radius: 40px;
        font-weight: 200;
    }
}  

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.15);
    }

    40% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.heartbeat {
    animation: heartbeat 1.8s infinite;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  position:sticky;
  top:0;
  background:#fff;
  z-index:999;
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}


.header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:10px;
  
}

/* .header .logo {
  line-height: 1;
} */

.header .logo img {
   height:40px;
  margin-right:10px;
}

/* .header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
} */

/* .header .btn-getstarted,
.header .btn-getstarted:focus {
  background:linear-gradient(135deg,#004aad,#007bff);
  color:#fff;
  padding:10px 20px;
  border-radius:30px;
  font-weight:400;
  text-decoration:none;
  transition:5s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,74,173,.4);
} */

/* CTA */
        .header-actions {
        display: flex;
        gap: 15px;
        }

        .btn-primary {
        background: #fff;
        color: #004aad;
        padding: 14px 20px;
        border-radius: 40px;
        font-weight: 600;
        }

        .btn-secondary {
        border: 1px solid #fff;
        padding: 14px 20px;
        border-radius: 40px;
        color: #fff;
        }

        /* Mobile Toggle */


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    align: left; 
    margin-top: 20px;
    width: 60%;
    
 }

  .header-actions{
    order:2;
    align: right;
    font-size: 7px;
    flex-wrap: wrap;
  }

  .header .navmenu {
    order: 3;
  }
   
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    background:#fff;
  }

  .navmenu li {
    position: relative;
    background:#fff;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-right: 15px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 20px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 16px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */


/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            /* justify-content: center; */
            background: var(--gradient-elegant);
            position: relative;
            overflow: hidden;
            color: #fff;
            padding: 80px 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: float 25s ease-in-out infinite;
            opacity: 0.7;
        }
        
            .hero-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            }

            /* ========== HERO SECTION ========== */

        /* LEFT CONTENT */
        .hero-left h1 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;
        }

        .hero-left h1 span {
        color: #ffd700;
        }

        .hero-subtitle {
        font-size: 18px;
        opacity: 0.9;
        margin-bottom: 30px;
        }

        .hero-badge {
        display: inline-block;
        margin-bottom: 15px;
        font-size: 16px;
        background: rgba(255,255,255,0.15);
        padding: 6px 14px;
        border-radius: 50px;
        }

        /* CTA */
        .hero-actions {
        display: flex;
        gap: 15px;
        }

        .btn-primary {
        background: #fff;
        color: #004aad;
        padding: 14px 26px;
        border-radius: 50px;
        font-weight: 600;
        }

        .btn-secondary {
        border: 1px solid #fff;
        padding: 14px 26px;
        border-radius: 50px;
        color: #fff;
        }

        /* RIGHT FORM */
        .form-card {
        background: rgba(255,255,255,0.12);
        backdrop-filter: blur(12px);
        padding: 35px;
        border-radius: 18px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .form-card h3 {
        font-size: 22px;
        margin-bottom: 5px;
        color: #fff;

        }

        .form-card p {
        font-size: 14px;
        opacity: 0.85;
        margin-bottom: 25px;
        color: #fff;

        }

        .contact-form {
        display: grid;
        gap: 15px;
        }

        .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        }
        
.hero-right {
    position: relative;
    z-index: 5;
}
        .contact-form input,
        .contact-form textarea {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        border: none;
        background: rgba(255,255,255,0.15);
        color: #fff;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
        color: rgba(255,255,255,0.7);
        }

        .phone-group {
            display: flex;
            gap: 10px;
        }

        .phone-group select {
            width: 35%;
        }

        .phone-group input {
            width: 65%;
        }
        
        .submit-btn {
        margin-top: 10px;
        background: #ffd700;
        color: #000;
        padding: 14px;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        border: none;
        transition: 0.3s;
        }

        .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(249, 249, 249, 0.3);
}

        /* ========== RESPONSIVE ========== */
        @media (max-width: 992px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center; 
        }

        .hero-actions {
            justify-content: center;
            flex-wrap: wrap;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .hero-left h1 {
            font-size: 34px;
        }
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation: floatShape1 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            background: rgba(255, 255, 255, 0.08);
            animation: floatShape2 25s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            top: 30%;
            right: 25%;
            background: rgba(255, 255, 255, 0.12);
            animation: floatShape3 18s ease-in-out infinite;
        }

        .shape-4 {
            width: 180px;
            height: 100px;
            bottom: 25%;
            left: 20%;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            animation: floatShape4 22s ease-in-out infinite;
        }

        .shape-5 {
            width: 120px;
            height: 120px;
            top: 15%;
            right: 40%;
            background: rgba(255, 255, 255, 0.15);
            animation: floatShape5 16s ease-in-out infinite reverse;
        }

        .shape-6 {
            width: 180px;
            height: 180px;
            bottom: 20%;
            right: 40%;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 30px;
            animation: floatShape6 28s ease-in-out infinite;
        }

        .shape-7 {
            width: 50px;
            height: 50px;
            top: 20%;
            left: 50%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 30px;
            animation: floatShape6 28s ease-in-out infinite;
        }

        @keyframes floatShape1 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-30px) translateX(20px) rotate(90deg); }
            50% { transform: translateY(-15px) translateX(-10px) rotate(180deg); }
            75% { transform: translateY(-40px) translateX(15px) rotate(270deg); }
        }

        @keyframes floatShape2 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            33% { transform: translateY(25px) translateX(-20px) scale(1.1); }
            66% { transform: translateY(-20px) translateX(25px) scale(0.9); }
        }

        @keyframes floatShape3 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            50% { transform: translateY(-25px) translateX(-30px) rotate(180deg); }
        }

        @keyframes floatShape4 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(20px) translateX(-15px) rotate(45deg); }
            50% { transform: translateY(-10px) translateX(30px) rotate(90deg); }
            75% { transform: translateY(15px) translateX(-20px) rotate(135deg); }
        }

        @keyframes floatShape5 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            50% { transform: translateY(-35px) translateX(20px) scale(1.2); }
        }

        @keyframes floatShape6 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            33% { transform: translateY(-15px) translateX(10px) rotate(60deg); }
            66% { transform: translateY(10px) translateX(-25px) rotate(120deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

         @keyframes floatShape7 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            50% { transform: translateY(-35px) translateX(20px) scale(1.2); }
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            100% { opacity: 0.8; }
        }

        .hero-content {
            text-align: center;
            color: var(--text-light);
            z-index: 2;
            position: relative;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.2s forwards;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
             --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hero h1 {
            font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 60px;
            font-weight: auto;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.4s forwards;
            line-height: 1.1;
            letter-spacing: -1px;
            color: rgba(255, 255, 255, 0.8);
             --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
            color: rgba(255, 255, 255, 0.9);
             --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ================= Whatsapp float Section ================= */

        .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


@media (max-width: 600px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}

/* ================= Left Floating CTA Section ================= */
/* Left Floating Container */
.right-float {
    position: fixed;
    top: 40%;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Buttons */
.float-btn {
    width: 50px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px  #ffffff;
}

/* Colors */
.float-btn.call { background: #28a745; }
.float-btn.email { background: #28a745; }
.float-btn.enquiry { background: #28a745; }

.float-btn:hover {
    transform: scale(1.1);
}

/* Popup Modal */
#enquiryModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
}

/* Modal Box */
.modal-box {
    background: #fff;
    width: 90%;
    max-width: 400px;
    margin: 8% auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.modal-box h3 {
    margin-bottom: 15px;
}

/* Close Button */
.close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 24px;
    cursor: pointer;
}

/* Form Inputs */
.modal-box input,
.modal-box textarea {
    text: #333;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-box button {
    background: #28a745;
    color: #ffffff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}


/* ================= CTA Section ================= */
.cta-section {
  padding: 80px 20px;
  background: #fff;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'><path d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(180,180,180,0.25)' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23grid)'/></svg>");
}



/* Layout */
.cta-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Text */
.cta-content h2 {
  font-size: 42px;
  color: #004aad;
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-content h2 span {
  display: block;
  color: #0a2540;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.highlight-box {
  margin-top: 25px;
  padding: 16px 22px;
  background: linear-gradient(90deg,#004aad,#2563eb);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
}

/* Image */
.cta-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.cta-image img {
  max-width: 380px;
  width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* Floating cards */
.floating-element {
  position: absolute;
  background: rgba(255,255,255,.95);
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
  display: flex;
  gap: 10px;
  align-items: center;
  animation: float 5s ease-in-out infinite;
}

.image-card { top: 10%; right: -5%; }
.imageco-card { bottom: 10%; left: 2%; }
.imagemeta-card { top: 30%; right: -7%; }
.imagegoogle-card { bottom: 30%; left: -5%; }



.imagemeta-card img {
  max-width: 200px;
  width: 90%;
}
.imagegoogle-card img {
  max-width: 200px;
  width: 90%;
}

.floating-element i {
  font-size: 22px;
  color: #004aad;
}

.number { font-weight: 700; }
.label { font-size: 12px; color: #555; }

/* Mobile */
@media(max-width:900px){
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center; 
  }
  .cta-image {
    margin-top: 20px;
  }
  .image-card, .imageco-card {
    position: absolute;
    margin: 12px auto;
  }
}

/* Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}


/* ================= Industry Section ================= */
.industry-section {
  padding: 50px 20px;
  background: #fff;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'><path d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(180,180,180,0.25)' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23grid)'/></svg>"); 
}

.industry-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.industry-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  transition: all .4s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

/* Image */
.industry-img {
  height: 220px;
  overflow: hidden;
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s ease;
}

.industry-card:hover img {
  transform: scale(1.1);
}

/* Content */
.industry-content {
  background: linear-gradient(135deg,#004aad,#002c6d);
  padding: 25px;
  color: white;
}

.industry-content h3 {
  font-size: 24px;
  color: #ffd94f;
  margin-bottom: 12px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tags span {
  background: rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 18px;
}

.stats h4 {
  font-size: 24px;
  color: #fff;
}

.stats p {
  font-size: 13px;
  color: #ffd94f;
}

/* Responsive */
@media(max-width: 1024px){
  .industry-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 700px){
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= How We Work Section ================= */

.how-we-work{
  padding: 60px 25px;
  background: #fff;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'><path d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(180,180,180,0.25)' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23grid)'/></svg>");
}

.how-work-wrapper{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.how-work-left h2{
  font-size: 42px;
  color:#002b6b;
  margin-bottom: 20px;
}

.how-work-left p{
  font-size: 17px;
  color:#555;
  line-height:1.7;
}

.work-points{
  margin:30px 0;
  padding:0;
  list-style:none;
}

.work-points li{
  margin-bottom:12px;
  font-weight:600;
  color:#004aad;
}

.work-btn{
  display:inline-block;
  padding:14px 30px;
  background:#004aad;
  color:#fff;
  border-radius:40px;
  text-decoration:none;
  transition:.4s;
}

.work-btn:hover{
  background:#002f75;
  transform:translateY(-3px);
}

/* RIGHT PROCESS */
.how-work-right{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.process-item{
  position:relative;
  transition: transform 0.10s ease;
}


.how-we-work .process-item .content:hover .step-number {
  transform: translateX(10px);
  opacity: 10;
}



.step-number{
  position:absolute;
  left:-30px;
  top:50%;
  transform:translateY(-50%);
  font-size:60px;
  font-weight:800;
  color:#004aad;
  opacity:0.8;
  transition: transform 0.5s ease;
  transform: rotate(-10deg);

}

.process-item .content{
  display:flex;
  gap:20px;
  padding:30px;
  border-radius:20px;
  background:#fff;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.5s;
}

.process-item .content:hover{
  transform:translateX(10px);
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.step-icon{
  width:80px;
  height:60px;
  background:#004aad;
  color:white;
  border-radius:15px;
  display:grid;
  place-items:center;
  font-size:24px;
  background: linear-gradient(135deg, color-mix(in srgb, #004aad, transparent 15%), #004aad);
  transform: rotate(10deg);
}

/* Mobile */
@media(max-width:900px){
  .how-work-wrapper{
    grid-template-columns:1fr;
  }

  .step-number{
    left:50%;
    top:-25px;
    transform:translateX(-50%);
  transition: transform 0.5s ease;
  transform: rotate(10deg);

  }

  .process-item .content{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }
}


    /* ================= Growth Section ================= */

    .growth-section {
  padding: 40px 20px;
  background: #fff;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'><path d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(180,180,180,0.25)' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23grid)'/></svg>");
}

.growth-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    
}

.growth-section h2 {
     font-size: 42px;
  color:#002b6b;
  margin-bottom: 20px;
}

.sub-text {
    color: #475569;
    margin-bottom: 50px;
    font-size: 18px;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.box {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.box:hover {
    transform: translateY(-8px) scale(1.02);
}

.box h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.box ul {
    list-style: none;
    padding: 0;
}

.box ul li {
    font-size: 16px;
    color: #334155;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.box ul li:last-child {
    border-bottom: none;
}

/* Problem Style */
.problem {
    border-left: 6px solid #ef4444;
}

.problem h3 {
    color: #dc2626;
}

/* Solution Style */
.solution {
    border-left: 6px solid #22c55e;
}

.solution h3 {
    color: #16a34a;
}

/* Animation Effect */
.box::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34,197,94,0.07);
    transition: 0.5s;
}

.solution::before {
    background: rgba(34,197,94,0.12);
}

.problem::before {
    background: rgba(239,68,68,0.1);
}

.box:hover::before {
    top: 0;
}

/* Mobile Responsive */
@media(max-width: 768px){
    .compare-grid {
        grid-template-columns: 1fr;
    }

    .growth-section h2 {
        font-size: 28px;
    }
}


/* ================= CTA Section ================= */

.cta-section-section {
     padding: 100px 20px;
    background: #fff;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'><path d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(180,180,180,0.25)' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23grid)'/></svg>");
    justify-content: center;
    align-items: center;
    display: flex;
}

.cta-container-section {
    max-width: 900px;
    text-align: center;
    background: #004aad;
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: fadeUp 2s ease-in-out;
}

.cta-container-section h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #d1d5db;

}

.cta-container-section p {
    font-size: 1.1rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons-section a {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Primary CTA */
.btn-primary {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(34,197,94,0.5);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Secondary CTA */
.btn-secondary {
    border: 2px solid #22c55e;
    color: #22c55e;
}

.btn-secondary:hover {
    background: #22c55e;
    color: #ffffff;
    transform: translateY(-4px);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .cta-container-section {
        padding: 40px 25px;
    }

    .cta-container-section h2 {
        font-size: 1.9rem;
    }

    .cta-container-section p {
        font-size: 1rem;
    }
}

/* ================= Services Section ================= */

.services-section {
    background: linear-gradient(135deg, #0b4a8b, #0d2f57);
    padding: 80px 20px;
    color: #fff;
}


.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;

}

.services-section .subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #dbeafe;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(255,255,255,0.08);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    color: #0b4a8b;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #facc15;;

}

.service-card p {
    font-size: 0.95rem;
    color: #e0f2fe;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tag {
    background: #facc15;
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 25px 20px;
    }
}


/* ================= FAQ Section ================= */

.faq-section {
    padding: 100px 20px;
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grid' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 10 0 L 0 0 0 10' fill='none' stroke='rgba(180,180,180,0.25)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.faq-container h2 {
  font-size: 36px;
  color: #002b6b;
  margin-bottom: 10px;
}

.faq-subtitle {
  color: #666;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  background: #0b4a8b;
  color: #ffffff;
  padding: 18px 20px;
  font-size: 16px;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-question span {
  font-size: 24px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  color: #444;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px;
}


/* Rotate plus icon */
.faq-question span {
    transition: 0.3s;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-container h2 {
    font-size: 28px;
  }
}


/* ================= Partners Section ================= */
/* .partners-section {
    background: #f8faff;
    padding: 80px 20px;
}

.partners-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.partners-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 20px;
}

.partners-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}


.partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.partner-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    cursor: pointer;
    animation: float 4s ease-in-out infinite;
}

.partner-card img {
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.partner-card span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}


@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}


@media (max-width: 900px) {
    .partners-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-text h2 {
        font-size: 32px;
    }
} */


/* ================= FOOTER ================= */
.site-footer {
    background: #000;
    color: #cfcfcf;
    font-family: "Inter", sans-serif;
}

/* Layout */
.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: "Amiko", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* Headings */
.site-footer h4 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.site-footer h4::after {
    content: "";
    width: 35px;
    height: 3px;
    background: #337cee;
    display: block;
    margin-top: 6px;
}

/* Text & Links */
.site-footer p,
.site-footer a {
    font-size: 15px;
    color: #b5b5b5;
}

.site-footer a:hover {
    color: #337cee;
}

/* Lists */
.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

/* Contact */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* Map */
.map-box {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 160px;
    border: 0;
}

/* Social */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    background: #337cee;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #111;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom .legal-links {
    margin-top: 8px;
}

.footer-bottom .legal-links a {
    margin: 0 10px;
}

.footer-partners {
    background: linear-gradient(135deg, #0a2540, #061c30);
    padding: 70px 20px;
    text-align: center;
    color: #fff;
}

.footer-partners h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-partners p {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    color: #cfd8e3;
    margin-bottom: 40px;
}

/* Slider */
.partner-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Track */
.partner-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

/* Logo box */
.partner-logo {
    border-radius: 14px;
    min-width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.partner-logo img {
    height: 50px;
    object-fit: contain;
}

/* Hover effect */
.partner-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Auto scroll animation */
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-partners h3 {
        font-size: 26px;
    }

    .partner-logo {
        min-width: 130px;
    }

    .partner-logo img {
        height: 28px;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .footer-wrapper {
        padding: 60px 20px 40px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}





/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    animation: heartbeat 1.8s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.08);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
}
