:root {
    --primary-color: #2D6A4F;
    --primary-dark: #1B4332;
    --secondary-color: #40916C;
    --accent-color: #52B788;
    --accent-vibrant: #FF9F1C;
    /* Gold/Orange */
    --accent-glow: #F9C74F;
    --text-color: #1B262C;
    --text-light: #52616b;
    --bg-color: #fdfdfd;
    --bg-alt: #F0FFF4;
    --white: #ffffff;
    --gradient-main: linear-gradient(135deg, #40916C 0%, #52B788 100%);
    --gradient-hero: linear-gradient(-45deg, #F0FFF4, #ffffff, #DCF2E1);
    --gradient-accent: linear-gradient(135deg, #FF9F1C 0%, #F9C74F 100%);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-soft: 0 10px 30px rgba(45, 106, 79, 0.1);
    --shadow-hover: 0 20px 50px rgba(45, 106, 79, 0.2);
    --shadow-deep: 0 40px 100px rgba(45, 106, 79, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 159, 28, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.15;
    animation: moveBlob 20s infinite alternate;
}

body::before {
    top: -100px;
    left: -100px;
    background: var(--primary-color);
}

body::after {
    bottom: -100px;
    right: -100px;
    background: var(--accent-vibrant);
    animation-delay: -10s;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: var(--transition);
}

h1 {
    font-size: 4rem;
    font-weight: 700;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.highlight {
    background: linear-gradient(120deg, var(--secondary-color), var(--accent-vibrant));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--accent-vibrant);
    z-index: -1;
    opacity: 0.2;
    border-radius: 2px;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section:nth-child(odd) {
    background-color: var(--bg-color);
}

.section:nth-child(even) {
    background-color: var(--bg-alt);
    background-image: radial-gradient(#2c3e50 1px, transparent 1px);
    background-size: 20px 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    z-index: 1;
}

.btn:hover::after {
    left: 150%;
    animation: shine 0.8s forwards;
}

/* Header */
.header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 1100;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: rgba(79, 172, 254, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown i {
    font-size: 0.8em;
    margin-left: 4px;
}

/* Header Actions & Call Button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-call-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
    border-radius: 50px;
    background: #4285f4;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-call-btn:hover {
    background: #3367d6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.header-call-btn:active {
    transform: translateY(-1px);
}





/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .nav {
        position: fixed;
        top: 70px;
        /* adjusted for header height */
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: white;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
        background: #f9f9f9;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .header-call-btn {
        display: none;
        /* Hide header btn on small screens, commonly replaced by bottom bar or inside menu */
    }

    /* Show call button inside mobile menu if needed, or keep bottom sticky */
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .logo {
        font-size: 1.25rem;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(45, 106, 79, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(82, 183, 136, 0.15) 0%, transparent 50%),
        var(--bg-color);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* New Hero Elements */
.hero-tag {
    display: inline-block;
    color: #8A2BE2;
    /* Purple logic from image */
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.platform-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.platform-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.plat-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 200px;
}

.plat-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.software-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    /* Blue gradient */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* Purple-ish from image */
}

.hardware-btn {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    background: linear-gradient(to right, #f83600 0%, #f9d423 100%);
    /* Orange gradient */
}

.plat-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.btn-text small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.explore-text {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    margin-bottom: 30px;
}

.cta-buttons.mt-4 {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
}

.call-btn {
    background: #3282B8;
    /* Matching existing blue */
    padding: 10px 25px;
}

.whatsapp-btn {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 10px 25px;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Right Side Image Layout */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    /* Adjust as needed */
}

.main-profile-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.35), 0 25px 50px -25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    background: #fff;
}

.main-profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: #fff;
}

/* Floating Icons */
.float-icon {
    position: absolute;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-soft);
    padding: 15px;
    border: 2px solid var(--glass-border);
    transition: var(--transition);
}

.float-icon:hover .icon-circle {
    transform: scale(1.15) translateY(-15px);
    box-shadow: var(--shadow-deep);
    background: var(--white);
    border-color: var(--accent-vibrant);
}

/* Specific colors for icons */
.icon-1 .icon-circle {
    border-color: #FF9F1C;
}

/* Teaching Studio - Orange */
.icon-2 .icon-circle {
    border-color: #3282B8;
}

/* App Dev - Blue */
.icon-3 .icon-circle {
    border-color: #25D366;
}

/* Marketing - Green */
.icon-4 .icon-circle {
    border-color: #0F4C75;
}

/* Website - Dark Blue */

.float-icon i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: inherit;
}

.icon-1 i {
    color: #FF9F1C;
}

.icon-2 i {
    color: #3282B8;
}

.icon-3 i {
    color: #25D366;
}

.icon-4 i {
    color: #0F4C75;
}

.icon-circle span {
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
}

/* Positioning the floating icons around the circle */
.icon-1 {
    top: 20px;
    right: 80px;
    animation-delay: 0s;
}

.icon-2 {
    top: 80px;
    right: 0px;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 80px;
    left: 0px;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20px;
    right: 80px;
    animation-delay: 1.5s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .main-profile-circle {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle span {
        font-size: 8px;
        /* Slightly larger, more readable */
    }

    .icon-1 {
        top: -10px;
        right: 20px;
    }

    .icon-2 {
        top: 60px;
        right: -20px;
    }

    .icon-3 {
        bottom: 60px;
        left: -20px;
    }

    .icon-4 {
        bottom: -10px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 30px;
        min-height: auto;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .platform-buttons {
        justify-content: center;
    }

    /* Center buttons on mobile */
    .cta-buttons.mt-4 {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image-wrapper {
        margin-top: 20px;
        height: auto;
        transform: scale(0.9);
        display: inline-flex;
    }
}

/* Services with Images */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-deep);
    border-color: var(--accent-vibrant);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
    position: relative;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--accent-vibrant);
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.video-item img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: filter 0.3s;
}

.video-item:hover img {
    filter: brightness(0.9);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.video-item:hover .play-overlay {
    background: var(--accent-vibrant);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.15) rotate(10deg);
}


.bg-primary {
    background: var(--primary-dark);
}

.text-white {
    color: var(--white) !important;
}

.section-header.text-white h2,
.section-header.text-white p {
    color: var(--white);
}

/* Contact/Footer fixes */
.contact-form {
    border-top: 5px solid var(--accent-vibrant);
}

/* Media/As Seen On */
/* Media/As Seen On - Enhanced Section */
.media-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.media-item {
    text-decoration: none;
    text-align: center;
    padding: 50px 30px;
    border-radius: 25px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 320px;
    /* Increased height */
}

.media-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.media-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.media-item img {
    height: 100px;
    /* Larger images */
    width: auto;
    object-fit: contain;
    transition: all 0.5s ease;
    z-index: 1;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.media-item:hover img {
    transform: scale(1.2) rotate(5deg);
}

.media-btn {
    padding: 12px 35px;
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.media-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Individual Platform Colors & Animations */
.media-item.youtube:hover {
    border-color: rgba(255, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.media-item.youtube:hover .media-btn {
    background: #FF0000;
    color: #fff;
    border-color: #FF0000;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.media-item.instagram:hover {
    border-color: rgba(225, 48, 108, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fff2f6 100%);
}

.media-item.instagram:hover .media-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.media-item.facebook:hover {
    border-color: rgba(24, 119, 242, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.media-item.facebook:hover .media-btn {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

/* Float animation for the whole section */
.media-row .media-item {
    animation: float-small 6s ease-in-out infinite;
}

.media-row .media-item:nth-child(2) {
    animation-delay: 1s;
}

.media-row .media-item:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float-small {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .media-item {
        height: 260px;
        padding: 30px 20px;
    }

    .media-item img {
        height: 70px;
    }

    .media-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-links a,
.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 15px;
    transition: var(--transition);
}

.footer-links a:hover,
.social-links a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .header .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-soft);
    }

    .header .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    margin: 10% auto;
    padding: 35px;
    border-radius: 25px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.45), 0 30px 60px -25px rgba(0, 10, 30, 0.25);
    color: #1B262C;
    border-top: 6px solid var(--primary-color);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: #000;
}

.modal-header h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1B262C;
    /* Force dark color */
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    /* Light border */
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    background: #fff;
    color: #333;
}

.modal-form input:focus,
.modal-form textarea:focus {
    border-color: #4285F4;
}

.btn-block {
    width: 100%;
    background: #4285F4;
    border-radius: 8px;
    padding: 14px;
    font-size: 1.1rem;
    color: white;
    border: none;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
}

.btn-block:hover {
    background: #3367D6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.modal-footer {
    text-align: right;
    margin-top: 15px;
}

.close-btn-text {
    background: #F1F3F4;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.close-btn-text:hover {
    background: #E8EAED;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9991;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-toggle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    border: none;
    box-shadow: 0 8px 0 #128C7E, 0 15px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    animation: pulse-green 3s infinite;
}

.chat-toggle:active {
    transform: translateY(5px) scale(0.95);
    box-shadow: 0 2px 0 #128C7E, 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.chat-toggle:hover {
    transform: translateY(-5px) scale(1.05) rotate(5deg);
    box-shadow: 0 12px 0 #128C7E, 0 20px 40px rgba(0, 0, 0, 0.4);
}

.chat-toggle i {
    color: white;
    font-size: 32px;
}

.chat-box {
    width: 380px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 45px 100px -20px rgba(0, 0, 0, 0.4), 0 30px 60px -30px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    margin-bottom: 25px;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 70px;
    right: 0;
}

.chat-box.open {
    transform: scale(1);
    opacity: 1;
}

.chat-header {
    background: var(--gradient-main);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-info h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-info p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.close-chat:hover {
    opacity: 1;
}

.chat-body {
    background-color: #e5ddd5;
    /* WhatsApp default chat bg color */
    background-image: url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png");
    /* Simple pattern */
    padding: 20px;
    min-height: 200px;
    background-blend-mode: soft-light;
}

.chat-bubble {
    background-color: white;
    padding: 15px 15px 15px 15px;
    border-radius: 0 15px 15px 15px;
    position: relative;
    max-width: 85%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: white;
    border-right-color: transparent;
    border-bottom: 0;
    margin-top: 0;
    margin-right: -10px;
}

.chat-sender {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.chat-bubble p {
    margin: 0;
    color: #333;
    line-height: 1.4;
    font-size: 1rem;
}

.chat-footer {
    padding: 15px 20px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background-color: #25D366;
    color: white;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.chat-btn:hover {
    background-color: #1ebc57;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* Profile Icon Placeholder Fallback */
.profile-icon img[src=""] {
    display: none;
}

/* Discount Slider Styles */
.offers-section {
    padding: 0;
    margin-top: 0;
    margin-bottom: 50px;
    background: #000;
    overflow: hidden;
}

.container-fluid {
    width: 100%;
    margin: 0;
    padding: 0;
}

.slider-container {
    width: 100%;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 625px;
    object-fit: contain;
    background: #0d0d0d;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slide img {
        max-height: 250px;
    }
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 0 #000, 0 8px 15px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-52%) scale(1.05);
    box-shadow: 0 6px 0 #000, 0 10px 20px rgba(0, 0, 0, 0.4);
}

.slider-btn:active {
    transform: translateY(-48%) scale(0.95);
    box-shadow: 0 1px 0 #000, 0 4px 10px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slide Overlay Buttons */
.slide {
    position: relative;
}

.slide-buttons {
    position: absolute;
    bottom: 40px;
    left: 25%;
    /* Moved to left side */
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
    width: 80%;
    justify-content: center;
}

.slider-call-btn,
.slider-whatsapp-btn {
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 12px;
    white-space: nowrap;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-call-btn {
    background: #3282B8;
    color: white;
}

.slider-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slider-whatsapp-btn {
    background: #25D366;
    color: white;
}

.slider-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .slide-buttons {
        bottom: 20px;
        flex-direction: row;
        /* Keep row unless too crowded, maybe scale down */
        gap: 10px;
        width: 90%;
    }

    .slider-call-btn,
    .slider-whatsapp-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

.profile-icon:empty::after {
    content: '\f19c';
    /* Font Awesome University/Bank icon as placeholder or similar */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #444;
    font-size: 20px;
}

@media (max-width: 480px) {
    .chat-box {
        width: 300px;
        right: -20px;
        /* Adjust purely for mobile align if needed */
    }
}

/* ===============================================
   ENHANCED CONTACT SECTION STYLING
   =============================================== */

.contact-section {
    background: linear-gradient(135deg, #F0FFF4 0%, #DCF2E1 100%);
    position: relative;
    overflow: hidden;
}

.contact-section .section-header h2,
.contact-section .section-header p {
    color: var(--primary-color);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(45, 106, 79, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(82, 183, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-main);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(15, 76, 117, 0.15);
}

.contact-info-item:hover::before {
    transform: scaleY(1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.3);
    transition: all 0.4s ease;
}

.contact-info-item:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.contact-details p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-vibrant);
}

/* Enhanced Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.form-group textarea~.form-icon {
    top: 25px;
    transform: translateY(0);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e7ee;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Floating Label Effect */
.form-group label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 5px;
}

.form-group textarea~label {
    top: 25px;
    transform: translateY(0);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 45px;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: white;
    font-weight: 600;
    padding: 0 8px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(50, 130, 184, 0.1);
    background: white;
}

.form-group input:focus~.form-icon,
.form-group textarea:focus~.form-icon {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.form-group textarea:focus~.form-icon {
    transform: translateY(0) scale(1.1);
}

/* Submit Button Enhancement */
.submit-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn i {
    margin-right: 10px;
    transition: transform 0.4s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Animation Keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info {
    animation: slideInLeft 0.8s ease-out;
}

.contact-form {
    animation: slideInRight 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-info-item {
        padding: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-section .section-header h2 {
        font-size: 2rem;
        color: #ffffff;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 14px 25px;
    }
}

/* ===============================================
   ENHANCED MILESTONES SECTION STYLING
   =============================================== */

.milestones-section {
    background: #f8fbff; /* Very light blue/white */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.milestones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 242, 254, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.milestones-section .section-header h2,
.milestones-section .section-header p {
    color: #0F4C75;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.milestone-item {
    background: rgba(255, 255, 255, 0.85); /* More solid white for tiles */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Softer shadow */
}

.milestone-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.3) 0%, rgba(0, 242, 254, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.milestone-item:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0.1) 100%);
}

.milestone-item:hover::before {
    opacity: 1;
}

.milestone-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.3) 0%, rgba(0, 242, 254, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(79, 172, 254, 0.6);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.milestone-item:hover .milestone-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-color: #00f2fe;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
}

.milestone-icon i {
    font-size: 2rem;
    color: #0F4C75;
}

.milestone-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0F4C75;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.milestone-number::after {
    content: '+';
    font-size: 2.5rem;
    margin-left: 5px;
}

.milestone-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0F4C75;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.milestone-desc {
    font-size: 0.9rem;
    color: #6c757d !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 10;
}

/* Milestone Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.milestone-number.counting {
    animation: countUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 992px) {
    .milestones-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .milestone-number {
        font-size: 2.8rem;
    }

    .milestone-icon {
        width: 70px;
        height: 70px;
    }

    .milestone-icon i {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .milestone-item {
        padding: 30px 15px;
    }

    .milestone-number {
        font-size: 2.5rem;
    }

    .milestone-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .milestone-item {
        padding: 25px 15px;
    }

    .milestone-number {
        font-size: 2.2rem;
    }

    .milestone-icon {
        width: 60px;
        height: 60px;
    }

    .milestone-icon i {
        font-size: 1.4rem;
    }
}

/* ===============================================
   VISION SECTION STYLING
   =============================================== */

.vision-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 159, 28, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vision-section .section-header h2,
.vision-section .section-header p {
    color: white;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.vision-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(45, 106, 79, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.2) 0%, rgba(249, 199, 79, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.3) 0%, rgba(249, 199, 79, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.vision-card:hover .vision-icon-wrapper {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #FF9F1C 0%, #F9C74F 100%);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 159, 28, 0.4);
}

.vision-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive design for vision section */
@media (max-width: 992px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .vision-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-card {
        padding: 30px 20px;
    }

    .vision-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .vision-icon-wrapper i {
        font-size: 1.8rem;
    }

    .vision-card h3 {
        font-size: 1.3rem;
    }

    .vision-card p {
        font-size: 0.95rem;
    }
}

/* ===============================================
   FOOTER SECTION STYLING
   =============================================== */

.footer {
    background: #000000;
    color: #ffffff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}



.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-heading);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(50, 130, 184, 0.4);
}

.social-icon.facebook:hover {
    background-color: #3b5998;
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
}

.social-icon.instagram:hover {
    background-color: #e1306c;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 0.7rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item:hover p {
    color: var(--white);
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}