/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #253D2C;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Performance optimizations */
*,
*::before,
*::after {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.container-fluid {
    max-width: 90%;
    padding: 0 20px;
}

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */

button.back-to-top{
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
	height: 0px;
  width: 0px;
  overflow: hidden;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
  color: transparent;
	clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
	bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 99;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus,{
  outline: 0 !important;
}
button.back-to-top::before,
button.back-to-top::after {
  content: "";
    display: block;
    vertical-align: middle;
    border-bottom: solid 10px #EA5D5F;
    border-left: solid 10px transparent;
    line-height: 0;
    border-right: solid 10px transparent;
    height: 0;
    margin: 18px auto 0;
    width: 0;
  border-radius:20px;
  visibility: hidden;
}
button.back-to-top.show::after,
button.back-to-top.show::before{
  visibility: visible;
}
button.back-to-top::after {
  border-bottom-color:#fff;
      position: relative;
  top:-24px;
}
button.back-to-top.show {
  display: block;
  background: #fff;
  color: #00ab6c;
  font-size: 25px;
  right: 25px;
	bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
	box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}
button.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

@keyframes bounce-up {
    0% {
        transform: rotate(-45deg) translateY(0);
    }
    100% {
        transform: rotate(-45deg) translateY(-3px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .scroll-to-top::before {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .scroll-to-top::before {
        width: 8px;
        height: 8px;
    }
}

/* ========================================
   HEADER STYLES
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.header.scrolled {
    background-color: rgba(37, 61, 44, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.logo-img {
    width: 80px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-items a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-items a:hover {
    color: #2E6F40;
    background-color: rgba(46, 111, 64, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 111, 64, 0.2);
}

.header.scrolled .nav-items a {
    background-color: rgba(255, 255, 255, 0.05);
}

.header.scrolled .nav-items a:hover {
    background-color: rgba(46, 111, 64, 0.15);
}

/* Animated underline */
.nav-items a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2E6F40, #68BA7F);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-items a:hover::after {
    width: 80%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.menu-toggle:hover {
    color: #2E6F40;
    background-color: rgba(46, 111, 64, 0.15);
    transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 80px);
    background: rgba(37, 61, 44, 0.95);
    backdrop-filter: blur(30px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    top: 80px;
    opacity: 1;
    pointer-events: auto;
}

.menu-content {
    padding: 30px 20px;
    width: 100%;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.menu-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.menu-items a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 25px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.menu-items a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 111, 64, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-items a:hover::before {
    left: 100%;
}

.menu-items a:hover {
    color: #2E6F40;
    background-color: rgba(46, 111, 64, 0.1);
    border-color: #2E6F40;
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(46, 111, 64, 0.2);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    margin: 0;
    padding: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: block;
}

.bg-video.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.newsroom-text {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.1em;
    transform: rotate(-5deg);
    user-select: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-lr;
    text-orientation: mixed;
    z-index: 3;
}

.btn-contact {
    background-color: red;
    color: #ffffff;
    padding: 20px 15px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(46, 111, 64, 0.3);
}

.btn-contact:hover {
    background-color: #68BA7F;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(104, 186, 127, 0.4);
}

/* ========================================
   SERVICES/PROJECTS SECTION
======================================== */
.project-section-3 {
    padding: 80px 0;
    background-color: #CFFFDC;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #2E6F40;
    margin: 0;
    letter-spacing: 1px;
}

.project-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    overflow: hidden;
    flex-wrap: nowrap;
    height: 550px;
}

.project-image-items {
    flex: 1 1 0%;
    height: 100%;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
    min-width: 0;
    cursor: pointer;
    border-radius: 12px;
}

.project-image-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.8);
    transition: all 0.4s ease;
}

.project-image-items:hover img {
    filter: brightness(0.7) saturate(1);
    transform: scale(1.05);
}

.project-image-items .content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 9;
    color: #fff;
    transition: all 0.4s ease;
    text-align: left;
}

.project-image-items .content h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.project-image-items .content h4 a {
    color: #68BA7F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-image-items .content h4 a:hover {
    color: #2E6F40;
}

.project-image-items .content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.project-image-items.active {
    flex: 3 1 0%;
    z-index: 10;
}

.project-image-items.active .content {
    opacity: 1;
}

/* Overlay gradient */
.project-image-items::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 2;
    transition: opacity 0.3s ease;
}

.project-image-items .content {
    z-index: 3;
}

/* ========================================
   BRAND VIRAL SECTION (Replaces Our Work Section)
======================================== */
.brand-viral-section {
    padding: 100px 30px;
    background-color: #68BA7F;
    color: #253D2C;
    overflow: hidden;
}

.brand-viral-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.brand-viral-image {
    flex: 0 0 45%;
    position: relative;
}

.brand-viral-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(37, 61, 44, 0.2);
    transition: transform 0.3s ease;
}

.brand-viral-image:hover img {
    transform: scale(1.02);
}

.brand-viral-content {
    flex: 1;
    padding-left: 20px;
}

/* Enhanced Animated Badge Styles */
        .brand-viral-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(37, 61, 44, 0.3);
            padding: 16px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.8px;
            color: #253D2C;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            user-select: none;
            box-shadow: 
                0 8px 32px rgba(37, 61, 44, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 20px;
            
            /* Floating animation */
            /*animation: */
            /*    float 4s ease-in-out infinite,*/
            /*    shimmer 3s linear infinite,*/
            /*    pulse-glow 2s ease-in-out infinite alternate;*/
        }

        /* Glowing border effect */
        .brand-viral-badge::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                #2E6F40, #68BA7F, #253D2C, #68BA7F, #2E6F40);
            background-size: 300% 300%;
            border-radius: 50px;
            z-index: -1;
            opacity: 0;
            animation: gradient-rotate 3s linear infinite;
            transition: opacity 0.3s ease;
        }

        /* Shimmer overlay */
        .brand-viral-badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        /* Hover effects */
        .brand-viral-badge:hover {
            transform: translateY(-4px) scale(1.05);
            background: rgba(255, 255, 255, 0.25);
            border-color: #2E6F40;
            box-shadow: 
                0 20px 40px rgba(37, 61, 44, 0.3),
                0 0 30px rgba(46, 111, 64, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            animation-play-state: paused;
        }

        .brand-viral-badge:hover::before {
            opacity: 1;
        }

        .brand-viral-badge:hover::after {
            left: 100%;
        }

        /* Active/click effect */
        .brand-viral-badge:active {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 
                0 10px 20px rgba(37, 61, 44, 0.2),
                inset 0 2px 4px rgba(37, 61, 44, 0.1);
        }

        /* Icon animation */
        .badge-icon {
            display: inline-block;
            width: 20px;
            height: 20px;
            background: #2E6F40;
            border-radius: 50%;
            position: relative;
            animation: icon-pulse 2s ease-in-out infinite;
        }

        .badge-icon::before {
            content: '⚡';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12px;
            color: white;
        }

        /* Keyframe animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-8px) rotate(1deg);
            }
            50% {
                transform: translateY(-4px) rotate(0deg);
            }
            75% {
                transform: translateY(-12px) rotate(-1deg);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        @keyframes pulse-glow {
            0% {
                box-shadow: 
                    0 8px 32px rgba(37, 61, 44, 0.2),
                    0 0 0 rgba(46, 111, 64, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
            100% {
                box-shadow: 
                    0 8px 32px rgba(37, 61, 44, 0.2),
                    0 0 20px rgba(46, 111, 64, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
        }


        @keyframes icon-pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        /* Magnetic effect on mouse move */
        .brand-viral-badge.magnetic {
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Additional floating particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(46, 111, 64, 0.6);
            border-radius: 50%;
            animation: particle-float 4s linear infinite;
        }

        @keyframes particle-float {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .brand-viral-badge {
                padding: 14px 24px;
                font-size: 14px;
                gap: 10px;
            }
        }

.brand-viral-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #253D2C;
}

.brand-highlight {
    background: linear-gradient(135deg, #2E6F40 0%, #253D2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.brand-viral-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 35px;
    font-weight: 500;
}


.stat-label {
    font-size: 0.9rem;
    color: #2E6F40;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating elements animation */
.brand-viral-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(37, 61, 44, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.brand-viral-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(46, 111, 64, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ========================================
   PARTNERS SECTION
======================================== */
.partners {
    padding: 50px 30px;
    background-color: #253D2C;
    color: #ffffff;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #68BA7F;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header-h2{
    color: #253D2C !important;
}

.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}


.partner-logo:hover {
    background: rgba(104, 186, 127, 0.1);
    transform: translateY(-5px);
    border-color: #68BA7F;
    box-shadow: 0 10px 30px rgba(104, 186, 127, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%) brightness(0.8); */
    transition: filter 0.3s ease;
    z-index: 1;
    position: relative;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-230px * 10));
    }
}



/* ========================================
   STATISTICS SECTION
======================================== */
.statistics {
    padding: 100px 30px;
    background: linear-gradient(135deg, #68BA7F 0%, #253D2C 100%);
    color: #ffffff;
    position: relative;
}

.statistics::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"><circle cx="25" cy="25" r="1" fill="rgba(104,186,127,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(104,186,127,0.1)"/><circle cx="75" cy="25" r="1" fill="rgba(104,186,127,0.1)"/><circle cx="25" cy="75" r="1" fill="rgba(104,186,127,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: bold;
    color: #CFFFDC;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 2px solid rgba(104, 186, 127, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(104, 186, 127, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: #68BA7F;
    box-shadow: 0 15px 40px rgba(104, 186, 127, 0.2);
}

.stat-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: bold;
    color: #CFFFDC;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ========================================
   FOOTER STYLES
======================================== */
.footer {
    background: #2E6F40;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
}

.footer-section h3.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #68BA7F, #CFFFDC);
    border-radius: 2px;
}

/* Company Info */
.company-info .footer-logo {
    margin-bottom: 20px;
}

.company-info .logo .logo-img {
    width: 80px;
    height: auto;
}

.company-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 15px;
}

.follow-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #68BA7F;
    border-color: #68BA7F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 186, 127, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #68BA7F;
    padding-left: 5px;
}

/* Office Info */
.office-location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #68BA7F;
}

.flag-icon {
    font-size: 20px;
    margin-top: 2px;
}

.office-details p {
    font-size: 13px;
    line-height: 1.4;
    margin: 2px 0;
    color: rgba(255, 255, 255, 0.9);
}

.office-details strong {
    color: #ffffff;
}

.contact-info {
    margin: 20px 0;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.contact-info i {
    width: 16px;
    color: #68BA7F;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Events List */
.events-banner {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #68BA7F 0%, #2E6F40 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.events-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/events/banner.jpg') repeat;
}

/* Main Events Section */
.events-showcase {
    padding: 100px 0 50px 0;
    background: #253D2C;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #68BA7F;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Event Categories Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 4 columns on desktop */
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-category {
    position: relative;
    height: 450px;
    /* Slightly reduced height for better fit */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #68BA7F 0%, #2E6F40 100%);
}

.event-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(104, 186, 127, 0.3);
}

.category-image {
    width: 100%;
    height: 70%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-category:hover .category-image {
    transform: scale(1.05);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(37, 61, 44, 0.9));
    padding: 50px 20px 25px;
    /* Adjusted padding for smaller cards */
    transition: all 0.4s ease;
}

.category-title {
    font-size: 1.5rem;
    /* Slightly smaller for better fit */
    font-weight: 700;
    color: #CFFFDC;
    margin-bottom: 12px;
    text-align: center;
    transform: translateY(70px);
    transition: all 0.4s ease;
}

.event-category:hover .category-title {
    transform: translateY(0);
}

.category-description {
    font-size: 0.85rem;
    /* Smaller text for compact design */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.event-category:hover .category-description {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Overlay */
.stats-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(207, 255, 220, 0.9);
    color: #253D2C;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: #68BA7F;
}

.brands-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #253D2C;
    margin-bottom: 60px;
}

.brand-carousel {
    padding: 20px 0;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin: 0 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #253D2C;
    transform: translateY(-5px);
}

.brand-item img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #68BA7F 0%, #2E6F40 100%);
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    background: #253D2C;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 61, 44, 0.3);
}

.cta-button:hover {
    background: #CFFFDC;
    color: #253D2C;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(207, 255, 220, 0.4);
}

/* Digital Hero Banner Section */
.digital-hero-banner {
    padding: 0; /* Remove padding to let flexbox handle centering */
    background: linear-gradient(135deg, #68BA7F 0%, #2E6F40 100%);
    color: white;
    position: relative;
    overflow: hidden;
    height: 80vh;
    display: flex; /* Add flexbox */
    align-items: center; /* Vertically center the content */
}

.digital-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 61, 44, 0.1);
}

.digital-hero-content {
    position: relative;
    z-index: 2;
}

.digital-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.digital-hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.digital-hero-buttons .btn {
    margin-right: 1rem;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.digital-hero-buttons .btn-primary {
    background: #253D2C;
    border-color: #253D2C;
}

.digital-hero-buttons .btn-primary:hover {
    background: #CFFFDC;
    border-color: #CFFFDC;
    color: #253D2C;
    transform: translateY(-2px);
}

.digital-hero-buttons .btn-outline-primary {
    color: white;
    border-color: white;
}

.digital-hero-buttons .btn-outline-primary:hover {
    background: white;
    color: #68BA7F;
    transform: translateY(-2px);
}

.digital-hero-image img {
    border-radius: 20px;
    /*box-shadow: 0 20px 40px rgba(37, 61, 44, 0.2);*/
    height: 60vh;
}

/* Digital Services Section */
.digital-services-section {
    padding: 100px 0;
    background: #CFFFDC;
}

.digital-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #253D2C;
    margin-bottom: 1rem;
}

.digital-section-subtitle {
    font-size: 1.1rem;
    color: #2E6F40;
    /*max-width: 600px;*/
    margin: 0 auto;
}

.digital-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    max-height: 550px;
    min-height: 550px;
    
    transition: all 0.3s ease;
    border: 1px solid #68BA7F;
    position: relative;
    overflow: hidden;
}

.digital-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(104, 186, 127, 0.1), transparent);
    transition: left 0.5s;
}

.digital-service-card:hover::before {
    left: 100%;
}

.digital-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(104, 186, 127, 0.2);
    border-color: #2E6F40;
}

.digital-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #68BA7F, #2E6F40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.digital-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #253D2C;
    margin-bottom: 15px;
}

.digital-service-description {
    color: #2E6F40;
    margin-bottom: 20px;
    text-align: start;
}

.digital-service-link {
    color: #68BA7F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.digital-service-link:hover {
    color: #2E6F40;
    text-decoration: none;
}

.digital-service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.digital-service-link:hover i {
    transform: translateX(5px);
}

/* Digital FAQ Section */
.digital-faq-section {
    padding: 100px 0;
    background: #68BA7F;
}

.digital-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #253D2C;
    margin-bottom: 1rem;
}

.digital-faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #253D2C;
    margin-bottom: 30px;
    line-height: 1.3;
}

.digital-faq-list {
    margin-top: 20px;
}

.digital-faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(37, 61, 44, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.digital-faq-item:hover {
    box-shadow: 0 5px 20px rgba(37, 61, 44, 0.2);
}

.digital-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #253D2C;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.digital-faq-question:hover {
    color: #68BA7F;
}

.digital-faq-icon {
    background: #68BA7F;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.digital-faq-item.active .digital-faq-icon {
    background: #2E6F40;
    transform: rotate(45deg);
}

.digital-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #2E6F40;
    line-height: 1.6;
}

.digital-faq-item.active .digital-faq-answer {
    padding: 0 25px 20px 65px;
    max-height: 200px;
}

.digital-faq-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.digital-faq-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #2E6F40 0%, #CFFFDC 100%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.digital-faq-image img {
    position: relative;
    z-index: 2;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(37, 61, 44, 0.2);
}


/* Digital CTA Section */
.digital-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #68BA7F 0%, #2E6F40 100%);
}

.digital-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.digital-cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.digital-cta-buttons .btn {
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.digital-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 61, 44, 0.2);
}

/* Digital Stats Section */
.digital-stats-section {
    padding: 80px 0;
    background: white;
}

.digital-stat-item {
    padding: 20px;
}

.digital-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #68BA7F;
    margin-bottom: 10px;
}

.digital-stat-label {
    font-size: 1.1rem;
    color: #2E6F40;
    font-weight: 500;
}

/* Scroll to Top Button */
.scroll-to-top {
   position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2E6F40, #68BA7F);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(46, 111, 64, 0.3);
}

.scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(46, 111, 64, 0.4);
        }

        .scroll-to-top::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 12px solid white;
        }


/* About Hero Section - New Unique Design */
.about-hero {
    padding: 150px 0 100px;
    background: #253D2C;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: about-float 6s ease-in-out infinite;
}

.about-shape-1 {
    width: 120px;
    height: 120px;
    background: #68BA7F;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.about-shape-2 {
    width: 80px;
    height: 80px;
    background: #CFFFDC;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.about-shape-3 {
    width: 100px;
    height: 100px;
    background: #2E6F40;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.about-shape-4 {
    width: 60px;
    height: 60px;
    background: #68BA7F;
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes about-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.about-hero-content-wrapper {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(104, 186, 127, 0.15);
    border: 1px solid rgba(104, 186, 127, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: about-pulse 2s ease-in-out infinite;
}

@keyframes about-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(104, 186, 127, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(104, 186, 127, 0); }
}

.about-badge-icon {
    font-size: 20px;
}

.about-badge-text {
    font-weight: 600;
    color: #CFFFDC;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.about-hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-highlight-text {
    background: linear-gradient(135deg, #68BA7F 0%, #CFFFDC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.about-hero-image {
    position: relative;
    z-index: 1;
}

.about-hero-image img {
    position: relative;
    z-index: 2;
    max-width: 320px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(37, 61, 44, 0.2);
}

/* Why Choose Us Section */
.about-why-choose-us {
    padding: 100px 0;
    background: #CFFFDC;
    color: #253D2C;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #253D2C;
    margin-bottom: 1rem;
}

.about-section-subtitle {
    font-size: 1.1rem;
    color: #2E6F40;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.about-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #68BA7F;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(104, 186, 127, 0.1), transparent);
    transition: left 0.5s;
}

.about-feature-card:hover::before {
    left: 100%;
}

.about-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(104, 186, 127, 0.2);
    border-color: #2E6F40;
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #68BA7F, #2E6F40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.about-feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #253D2C;
    margin-bottom: 15px;
}

.about-feature-card p {
    color: #2E6F40;
    line-height: 1.6;
}

/* Core Services Section - New Card Design */
.about-core-services {
    padding: 120px 0;
    background: #68BA7F;
    color: #253D2C;
}

.about-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 61, 44, 0.1);
    border: 1px solid rgba(37, 61, 44, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.about-services-emoji {
    font-size: 18px;
}

.about-services-badge-text {
    font-weight: 600;
    color: #2E6F40;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.about-services-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #253D2C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-services-subtitle {
    font-size: 1.1rem;
    color: #2E6F40;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-service-card-new {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(104, 186, 127, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 61, 44, 0.15);
    border-color: #68BA7F;
}

.about-card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(104, 186, 127, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.about-service-card-new:hover .about-card-hover-effect {
    left: 100%;
}

.about-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.about-service-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #68BA7F;
    background: rgba(104, 186, 127, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-service-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #68BA7F 0%, #2E6F40 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.about-service-card-new:hover .about-service-icon-new {
    transform: rotate(360deg);
}

.about-card-content {
    flex: 1;
}

.about-card-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #253D2C;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-card-content p {
    color: #2E6F40;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-feature-tag {
    background: rgba(104, 186, 127, 0.1);
    color: #2E6F40;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(104, 186, 127, 0.2);
    transition: all 0.3s ease;
}

.about-service-card-new:hover .about-feature-tag {
    background: rgba(104, 186, 127, 0.15);
    border-color: #68BA7F;
}

/* FAQ Section */
.about-faq-section {
    padding: 100px 0;
    background: #253D2C;
    color: white;
}

.about-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #68BA7F;
}

.about-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.about-faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.about-faq-question:hover {
    color: #68BA7F;
}

.about-faq-icon {
    background: #68BA7F;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.about-faq-item.active .about-faq-icon {
    background: #2E6F40;
    transform: rotate(45deg);
}

.about-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-faq-item.active .about-faq-answer {
    padding: 0 25px 20px 65px;
    max-height: 200px;
}

.about-faq-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-faq-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #2E6F40 0%, #CFFFDC 100%);
    border-radius: 50%;
    z-index: 1;
}

.about-faq-image img {
    position: relative;
    z-index: 2;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(37, 61, 44, 0.2);
}

/* about us end*/

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .event-category {
        height: 420px;
    }
    
}

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .work-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-logo {
        flex: 0 0 180px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .office-info {
        grid-column: span 2;
    }

    .project-wrapper {
        height: 450px;
    }

    .project-image-items .content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .project-image-items .content h4 {
        font-size: 18px;
    }

    .project-image-items .content p {
        font-size: 13px;
    }
    .brand-viral-container {
        gap: 40px;
    }
    
    .brand-viral-content {
        padding-left: 0;
    }
    
    .brand-viral-stats {
        gap: 30px;
    }

}

/* Small Tablet - 2 columns */
@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .event-category {
        height: 400px;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .category-description {
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo-img {
        width: 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .contact-btn {
        position: static;
        transform: none;
        writing-mode: horizontal-tb;
        margin-top: 20px;
    }

    .btn-contact {
        writing-mode: horizontal-tb;
        display: inline-block;
        padding: 15px 30px;
    }

    .our-work,
    .partners,
    .statistics {
        padding: 60px 20px;
    }

    .work-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-logo {
        flex: 0 0 150px;
        height: 100px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-box {
        padding: 30px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .office-location {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .contact-info {
        text-align: center;
    }

    .project-wrapper {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .project-image-items {
        width: 100%;
        height: 300px;
        flex: none;
    }

    .project-image-items.active {
        flex: none;
        width: 100%;
        height: 400px;
    }

    .project-image-items .content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .event-category {
        height: 350px;
    }

    .category-content {
        padding: 40px 15px 20px;
    }

    .category-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .category-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .stats-overlay {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .brands-section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }
    
    .brand-viral-section {
        padding: 80px 20px;
    }
    
    .brand-viral-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .brand-viral-image {
        flex: none;
        order: 2;
    }
    
    .brand-viral-content {
        flex: none;
        order: 1;
    }
    
    .brand-viral-stats {
        justify-content: center;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    .digital-hero-title {
        font-size: 2.5rem;
    }
    
    .digital-hero-description {
        font-size: 1rem;
    }
    
    .digital-hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .digital-section-title {
        font-size: 2rem;
    }
    
    .digital-cta-title {
        font-size: 2rem;
    }
    
    .digital-stat-number {
        font-size: 2.5rem;
    }
    
    .digital-faq-title {
        font-size: 1.8rem;
    }
    
    .digital-service-card {
        margin-bottom: 30px;
    }
    
    .digital-faq-title {
                font-size: 1.8rem;
            }
            
            .digital-faq-circle {
                width: 220px;
                height: 220px;
            }
            
            .digital-faq-image img {
                max-width: 240px;
            }
            
            .digital-faq-question {
                padding: 15px 20px;
                font-size: 14px;
            }
            
            .digital-faq-item.active .digital-faq-answer {
                padding: 0 20px 15px 55px;
            }
            
            .about-hero {
        padding: 100px 15px 60px;
        min-height: 80vh;
    }
    
    .about-floating-shapes .about-shape {
        display: none;
    }
    
    .about-hero-badge {
        padding: 10px 20px;
        gap: 8px;
    }
    
    .about-hero-badge .about-badge-icon {
        font-size: 16px;
    }
    
    .about-hero-badge .about-badge-text {
        font-size: 12px;
    }
    
    .about-hero-main-title {
        margin-bottom: 20px;
    }
    
    .about-hero-description {
        margin-bottom: 30px;
    }
    
    .about-hero-image img {
        max-width: 280px;
    }
    
    .about-why-choose-us {
        padding: 60px 15px;
    }
    
    .about-section-subtitle {
        margin-bottom: 2rem;
    }
    
    .about-feature-card {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    
    .about-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .about-core-services {
        padding: 60px 15px;
    }
    
    .about-services-header {
        margin-bottom: 40px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-service-card-new {
        padding: 25px 20px;
    }
    
    .about-service-card-new:hover {
        transform: translateY(-3px);
    }
    
    .about-card-header {
        margin-bottom: 20px;
    }
    
    .about-service-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .about-service-icon-new {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .about-faq-section {
        padding: 60px 15px;
    }
    
    .about-faq-question {
        padding: 15px 20px;
    }
    
    .about-faq-answer {
        padding: 0 20px;
    }
    
    .about-faq-item.active .about-faq-answer {
        padding: 0 20px 15px 60px;
    }
    
    .about-faq-circle {
        width: 200px;
        height: 200px;
    }
    
    .about-faq-image img {
        max-width: 220px;
    }
    
    .about-faq-image-wrapper {
        margin-top: 30px;
    }
    
}



@media (max-width: 576px) {
    .digital-hero-banner {
        padding: 60px 0;
    }
    
    .digital-services-section,
    .digital-faq-section {
        padding: 60px 0;
    }
    
    .digital-cta-section {
        padding: 60px 0;
    }
    
    .digital-stats-section {
        padding: 60px 0;
    }
    
    .digital-faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .digital-faq-circle {
                width: 180px;
                height: 180px;
            }
            
            .digital-faq-image img {
                max-width: 200px;
            }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container-fluid {
        padding: 0 15px;
    }

    .logo-img {
        width: 50px;
    }

    .menu-items a {
        font-size: 16px;
        padding: 12px 15px;
    }

    .partner-logo {
        flex: 0 0 120px;
        height: 80px;
        padding: 15px;
    }

    .work-overlay {
        padding: 20px 15px 15px;
    }

    .work-overlay h3 {
        font-size: 16px;
    }

    .work-overlay p {
        font-size: 12px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 14px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .office-location {
        padding: 12px;
    }

    .office-details p {
        font-size: 12px;
    }

    .contact-info p {
        font-size: 13px;
    }

    .project-section-3 {
        padding: 60px 0;
    }

    .project-image-items {
        height: 250px;
    }

    .project-image-items.active {
        height: 350px;
    }

    .project-image-items .content h4 {
        font-size: 16px;
    }

    .project-image-items .content p {
        font-size: 12px;
    }

    .newsroom-text {
        font-size: clamp(40px, 8vw, 80px);
    }

    .events-grid {
        gap: 10px;
        padding: 0 5px;
    }

    .event-category {
        height: 300px;
    }

    .category-content {
        padding: 30px 12px 15px;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .category-description {
        font-size: 0.75rem;
    }
    
    .about-hero {
        padding: 80px 10px 50px;
    }
    
    .about-hero-main-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 0.95rem;
    }
    
    .about-hero-image img {
        max-width: 240px;
    }
    
    .about-why-choose-us,
    .about-core-services,
    .about-faq-section {
        padding: 50px 10px;
    }
    
    .about-feature-card,
    .about-service-card-new {
        padding: 20px 15px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-faq-question {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .about-faq-answer {
        padding: 0 15px;
        font-size: 0.85rem;
    }
    
    .about-faq-item.active .about-faq-answer {
        padding: 0 15px 12px 55px;
    }
    
    .about-faq-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-right: 10px;
    }
    
    .about-faq-circle {
        width: 160px;
        height: 160px;
    }
    
    .about-faq-image img {
        max-width: 180px;
    }
    
    .brand-viral-section {
        padding: 60px 15px;
    }
    
    .brand-viral-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .brand-viral-description {
        font-size: 1rem;
    }
    
    .brand-viral-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
    
    .brand-viral-image::before,
    .brand-viral-image::after {
        display: none;
    }

    /* Scroll to top mobile adjustments */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container-fluid {
        padding: 0 10px;
    }

    .logo-img {
        width: 40px;
    }

    .menu-items a {
        font-size: 14px;
        padding: 10px 12px;
    }

    .project-image-items {
        height: 200px;
    }

    .project-image-items.active {
        height: 300px;
    }

    .partner-logo {
        flex: 0 0 100px;
        height: 70px;
        padding: 10px;
    }

    .stat-box {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .social-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .newsroom-text {
        font-size: clamp(30px, 6vw, 60px);
    }

    /* Scroll to top extra small adjustments */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .logo-img,
    .partner-logo img,
    .work-item img,
    .project-image-items img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {

    .header,
    .mobile-menu,
    .contact-btn,
    .video-background,
    .scroll-to-top {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .section-title h2,
    .section-header h2,
    .stats-header h2 {
        color: black !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .carousel-track {
        animation: none;
    }

    .scroll-to-top {
        transition: none;
    }

    .scroll-to-top:hover::before {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #253D2C;
        --bg-secondary: #68BA7F;
        --text-primary: #ffffff;
        --text-secondary: rgba(255, 255, 255, 0.8);
        --accent: #68BA7F;
        --hover: #2E6F40;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {

    .nav-items a,
    .menu-items a,
    .footer-links a {
        border: 1px solid currentColor;
    }

    .btn-contact,
    .social-link,
    .scroll-to-top {
        border: 2px solid currentColor;
    }
}