﻿/* ===== Base Styles ===== */
body, html {
    margin: 0;
    padding: 0;
}
:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #81c784;
    --secondary-color: #ff9800;
    --accent-color: #ff5722;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #fff;
    --gray-light: #f5f5f5;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




/* ===== Responsive Layout for Mobile ===== */
@media (max-width: 768px) {
    .goda-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 10px 16px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--primary-dark);
        transition: var(--transition);
    }

/* ===== Main Content ===== */
.goda-main {
    margin-top: 80px;
    min-height: calc(100vh - 80px - 150px);
    padding: 40px 0;
}

/* ===== Footer Styles ===== */
.goda-footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .footer-logo img {
        height: 40px;
        width: auto;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
        font-weight: 600;
    }

.footer-about {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--secondary-color);
    }

.footer-col ul li {
    margin-bottom: 10px;
}

    .footer-col ul li a:hover {
        color: var(--secondary-color);
        padding-left: 5px;
    }

.footer-col.contact-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

    .footer-col.contact-info ul li i {
        margin-top: 3px;
    }

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: var(--transition);
    }

        .footer-social a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

    .footer-links a {
        font-size: 0.9rem;
        opacity: 0.8;
    }

        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary-color);
        }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--primary-dark);
        transform: translateY(-5px);
    }

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .nav-list {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }

        .main-nav.active {
            right: 0;
        }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-link {
        padding: 10px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Mobile menu toggle animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .goda-main {
        margin-top: 70px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-item {
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 80, 0, 0.5);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
}

.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background-color: #ff0000;
    opacity: 1;
}
.image-slider-section .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s;
}

    .image-slider-section .swiper-slide img:hover {
        transform: scale(1.05);
    }
/* Animate header on page load */
.animated-header {
    animation: slideDown 0.6s ease-in-out;
    z-index: 9999;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}

/* Dropdown animation */
.dropdown-menu.dropdown-animate {
    transform-origin: top center;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    0% {
        opacity: 0;
        transform: scaleY(0.9);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Improve dropdown spacing and font */
.dropdown-menu a {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #e9f5ff;
    color: #0d6efd;
}
.goda-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.goda-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section-start {
    margin-top: 0 !important;
    padding-top: 20px;
}

/* Social Media Floating Button Wrapper */
.social-media-floating {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 5px;
    animation: slideInRight 1.2s ease forwards;
}

/* Individual Buttons */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #333;
    font-size: 18px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
}

    /* Hover Effects */
    .social-link:hover {
        transform: scale(1.15);
        background-color: #333;
        color: #fff;
    }

/* Specific Brand Colors */
.call {
    background-color: #34af23;
    color: #fff;
}

    .call:hover {
        background-color: #1e7c13;
    }

.whatsapp {
    background-color: #25D366;
    color: #fff;
}

    .whatsapp:hover {
        background-color: #1DA851;
    }

.facebook {
    background-color: #1877f2;
    color: #fff;
}

    .facebook:hover {
        background-color: #0e5bb5;
    }

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}

    .instagram:hover {
        background: #c13584;
    }

/* Entrance Slide Animation */
@keyframes slideInRight {
    from {
        transform: translateX(100px) translateY(-50%);
        opacity: 0;
    }

    to {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}
