@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Handlee&family=Oswald:wght@200..700&family=Sen:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

html {
    scroll-behavior: smooth;
  }

/* Scrollbar for WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 15px; 
    height: 25px;
}

/* Track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background: #016306; 
    border-radius: 0;
}

/* Handle (the moving part) */
::-webkit-scrollbar-thumb {
    background: #2b8600; 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #002b09; 
}


:root {
    --primary-green: #4ab446;
    --primary-red: #eb1922;
    --dark-green: #3a8a37;
    --dark-red: #c41419;
    --white: #ffffff;
    --yellow: #fffc61;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #f8f9fa;
}


.nav {
    background: rgba(227, 187, 57, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    position: absolute;
    z-index: 500;
    display: inline-block;
}
.navbar-brand img {
    position: relative;
    top:37px;
    width:40%;
}


/* Enhanced Dropdown Styles */
.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-top: 1rem;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: #333;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.dropdown-header {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section Styles */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: background-image 1s ease-in-out; /* smooth fade */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: left;
}

.hero-title {
    font-family: "Handlee", serif;
    font-size: 4.6rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.2s ease forwards 1s;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border:2.5px  solid var(--primary-green);
    border-radius: 30px;
    background: none;
    color: white;
    cursor: pointer;
    position: relative;
    left:20px;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.5s;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-green), var(--yellow));
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    transform-origin: right;
}

.hero-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Floating Particles Animation */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(var(--moveX), var(--moveY)) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
    }
    .dropdown-menu {
        margin-top: 0;
    }
}

/* company container section style */

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.company-container {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--white), #f8f8f8);
    overflow: hidden;
    position: relative;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(74, 180, 70, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.shape:nth-child(even) {
    background: rgba(235, 25, 34, 0.1);
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-100px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.company-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.title-english {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
}

.title-english::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: width 1s ease;
}

.title-english.animate::after {
    width: 100%;
}

.title-sinhala {
    font-size: 2rem;
    color: var(--dark-red);
    margin-bottom: 2rem;
}

.company-description {
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
}

.highlight {
    color: var(--primary-green);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.highlight.animate::after {
    transform: scaleX(1);
    transform-origin: left;
}

.company-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    perspective: 1000px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(74, 180, 70, 0.2),
        rgba(235, 25, 34, 0.2)
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover::before {
    opacity: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: translateZ(20px);
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.company-logo {
    position: relative;
    z-index: 999999;
    text-align: right;
    margin-top: 4rem;
}

.logo-img {
    max-width: 300px;
    filter: drop-shadow(0 5px 15px rgba(74, 180, 70, 0.2));
    transition: all 0.5s ease;
}

.logo-img:hover {
    transform: translateY(-10px) rotate(5deg);
    filter: drop-shadow(0 15px 25px rgba(74, 180, 70, 0.3));
}

.accent-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    margin-top: 20px;
}

.accent-button:hover {
    background: transparent;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 180, 70, 0.3);
}

@media (max-width: 768px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .company-logo {
        text-align: center;
        margin-top: 2rem;
    }

    .title-english {
        font-size: 2rem;
    }

    .title-sinhala {
        font-size: 1.5rem;
    }

    .image-wrapper {
        margin-bottom: 1rem;
    }
}

/* Custom Animation for Elements */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* our collection section styles */
.collection-main {
   background-color: #a0ffb877;
}
.our-collection {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.collection-card {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
	pointer-events: none;
}

.c1 {
    background-color: var(--yellow);
}

.c2 {
    background-color: var(--primary-red);
    color: var(--white);
}

.c3 {
    background-color: var(--primary-red);
    color: var(--white);
}

.c4 {
    background-color: var(--primary-green);
    color: var(--white);
}

.c5 {
    background-color: var(--yellow);
}

.card-image {
    width: 500px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transform: translateY(0);
    transition: transform 0.5s ease;
}
@media (max-width:768px) {
    .card-image {
        width: 310px;
    } 
}
.collection-card:hover .card-image {
    transform: translateY(-10px);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.card-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.explore-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.explore-btn:hover {
    transform: translateX(10px);
}

.navigation-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}



@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .navigation-dots {
        right: 1rem;
    }
}

/* Animation for cards on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* key number section styles */
.key-number-main{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 200px 0px;
}
.stats-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.key-num-title {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-family: "Handlee", serif;
    font-weight: 800;
    font-size: 2.5rem;
    position: relative;
}

.key-num-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5rem;
}

.stat-card {
    width:120%;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 30px rgba(74, 180, 70, 0.2);
}

.number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: inline-block;
}

.label {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plus {
    font-weight: bold;
    font-size: 2.5rem;
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap:1.5rem;
    }
    .number {
        font-size: 2.8rem;
    }
    .stat-card {
        width:100%;
    }
    .plus {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2rem;
    }
    .number {
        font-size: 2.5rem;
    }
    .stat-card {
        width:100%;
    }
}

/* Simple scale animation for the cards */
@keyframes scaleUp {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.stat-card {
    animation: scaleUp 0.5s ease forwards;
}


/* key number second section styles*/
.key-number-second-section {
    padding: 0 0 -400px 0;
    position: relative;

}
.main-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    top:-180px;
    background: #f5f5f5;
    overflow: hidden;
    
}

.spice-section {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 500px;
    position: relative;
}

.left-image {
    flex: 1;
    background-image: url('images/spices.webp');
    background-size: cover;
    background-position: center;
    transform: skewY(-5deg);
    margin-top: -50px;
    margin-bottom: -50px;
}

.center-content {
    flex: 1.5;
    background-color: #0d4d26;
    padding: 4rem 2rem;
    color: white;
    text-align: center;
    position: relative;
    height: auto;
    z-index: 2;
    clip-path: polygon(0 0, 110% 0, 110% 87%, 0 110%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.right-image {
    flex: 1;
    background-image: url('images/pepper.jpg');
    background-size: cover;
    background-position: center;
    transform: skewY(5deg);
    margin-top: -50px;
    margin-bottom: -50px;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 600px;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    margin: 2rem auto;
    border-radius: 2px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
    pointer-events: none;
}

@media (max-width: 768px) {
    .spice-section {
        flex-direction: column;
    }

    .left-image, .right-image {
        display: none;
    }

    .center-content {
        padding: 3rem 1rem;
        clip-path: none;
    }

    h1 {
        font-size: 2.5rem;
    }
}

/* Additional Decorative Elements */
.spice-decoration {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 4s ease-in-out infinite;
}

.spice-decoration:nth-child(1) {
    top: 10%;
    left: 5%;
}

.spice-decoration:nth-child(2) {
    bottom: 15%;
    right: 8%;
    animation-delay: 1s;
}


/* styles for cetificate section */
.cetificate-section-main{
    width:100%;
    background-color: #009e5c18;
    position: relative;
    top: -130px;
}
.cetificate-section-title {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-family: "Handlee", serif;
    font-weight: 800;
    font-size: 2.5rem;
    position: relative;
}
.carousel-item {
    text-align: center;
    transition: transform 0.6s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.certification-img {
    max-width: 300px;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0.8;
}

.carousel-item.active .certification-img {
    transform: scale(1.2) rotateY(360deg);
    opacity: 1;

}

.carousel-control-prev, .carousel-control-next {
    filter: invert(1);
    width: 5%;
    border: 1px solid var(--dark-green);
    border-radius: 50%;
}

.carousel-indicators button {
    background-color: var(--primary-green);
    border-radius: 50%;
    width: 12px;
    height: 12px;

}


















/* styles for footer */
 .footer-container {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements */
        .spice-decoration {
            position: absolute;
            width: 150px;
            height: 150px;
            opacity: 0.1;
            pointer-events: none;
        }

        .spice-1 {
            top: 20px;
            left: 20px;
            background: url("#");
            animation: float 6s ease-in-out infinite;
        }

        .spice-2 {
            bottom: 20px;
            right: 20px;
            background: url("#");
            animation: rotate 10s linear infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-section h3 {
            color: var(--primary-green);
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 3px;
            background: var(--primary-red);
            transition: width 0.4s ease;
        }

        .footer-section:hover h3::after {
            width: 100%;
        }

        .footer-section p {
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .social-icons {
            display: flex;
            gap: 20px;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--primary-green);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid var(--primary-green);
            position: relative;
            overflow: hidden;
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-green);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: -1;
        }

        .social-icons a:hover {
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(74, 180, 70, 0.2);
        }

        .social-icons a:hover::before {
            top: 0;
        }

        .quick-links {
            list-style: none;
        }

        .quick-links li {
            margin-bottom: 15px;
        }

        .quick-links a {
            color: var(--text-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }

        .quick-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: var(--primary-red);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .quick-links a:hover {
            color: var(--primary-green);
            transform: translateX(10px);
        }

        .quick-links a:hover::before {
            background: var(--primary-green);
            transform: translateY(-50%) scale(1.5);
        }

        .contact-info li {
            list-style: none;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .contact-info li i {
            width: 40px;
            height: 40px;
            background: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            margin-right: 15px;
            transition: all 0.3s ease;
        }

        .contact-info li:hover i {
            background: var(--primary-green);
            color: var(--white);
            transform: rotate(360deg);
        }

        .contact-info li:hover {
            color: var(--primary-green);
            transform: translateX(10px);
        }

        .footer-bottom {
            background: var(--light-gray);
            padding: 20px 0;
            text-align: center;
            position: relative;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--primary-red), var(--yellow));
        }

        .footer-bottom p {
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-section {
                text-align: center;
            }

            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-icons {
                justify-content: center;
            }

            .quick-links a {
                justify-content: center;
            }

            .contact-info li {
                justify-content: center;
            }
        }