* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

:root {
    --font-body: "Inter", sans-serif;
    --font-display: "Bebas Neue", sans-serif;
    --forest-primary: #2C5F2D;
    --forest-dark: #1B4332;
    --amber-light: #D4A574;
    --nature-bg: #F4F1EA;
    --nature-light: #FDFBF7;
    --text-dark: #1A1A1A;
    --text-medium: #5A5A5A;
    --dark-bg: #2A2A2A;
}

html,
body {
    scroll-behavior: smooth;
    height: 100%;
}

html {
    overflow-y: hidden;
    background: var(--nature-light);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--nature-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0;
    width: auto;
    max-width: 90%;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #F5F5F5;
    padding: 8px 12px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--nature-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 20px;
    border-radius: 25px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.nav-links a.current {
    background: rgba(107, 78, 61, 0.15);
    backdrop-filter: blur(10px);
    color: var(--nature-light);
}

.features-bar {
    background: rgba(0, 0, 0, 0.9234);
    padding: 20px 0;
    overflow: hidden;
}

.features-scroll {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: featureMarquee 4s linear infinite alternate;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    color: #cccccc;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-item i {
    font-size: 1.4rem;
    color: #f1f4f1;
    animation: leafSway 2s ease-in-out infinite;
}

@keyframes featureMarquee {
    0% {
        transform: translateX(500px);
    }

    100% {
        transform: translateX(-100px);
    }
}

@keyframes leafSway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-10deg);
    }
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.portfolio-gallery {
    padding: 100px 0;
    background: var(--nature-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.stats-section {
    padding: 80px 0;
    background: var(--text-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--amber-light);
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 1.05rem;
    opacity: 0.9;
}

.mission-section {
    padding: 100px 0;
    background: var(--nature-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.8rem;
    color: var(--forest-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    text-transform: uppercase;
}

.mission-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.gear-section {
    padding: 100px 0;
    background-color: black;
}

.gear-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.gear-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gear-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.gear-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gear-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gear-item {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gear-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.85);
}

.gear-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--forest-primary), var(--forest-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(44, 95, 45, 0.3);
}

.gear-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.gear-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.gear-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gear-specs span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.gear-specs i {
    color: var(--forest-primary);
    font-size: 1rem;
}

.social-media-section {
    padding: 100px 0;
    background: var(--nature-light);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.social-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 16/9;
    display: block;
}

.social-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.social-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.social-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.social-card:hover .social-image img {
    transform: scale(1.05);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card:hover .social-overlay {
    opacity: 1;
}

.social-overlay i {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.social-card:hover .social-overlay i {
    transform: scale(1.1);
}

.youtube-card .social-overlay i {
    color: #FF0000;
}

.social-overlay h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 12px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.6;
}

.awards-section {
    padding: 100px 0;
    background: #000000;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.award-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.award-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.3);
    border-color: rgba(212, 165, 116, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.award-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.award-card:hover .award-image img {
    transform: scale(1.08);
}

.award-info {
    padding: 32px;
    position: relative;
}

.award-badge {
    position: absolute;
    top: -30px;
    left: 32px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4A574, #B8860B);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
    border: 3px solid #000000;
}

.award-badge i {
    font-size: 1.8rem;
    color: #000000;
}

.award-info h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 12px;
    margin-top: 40px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.award-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.award-card:hover .award-info h3 {
    color: var(--amber-light);
}

.award-card:hover .award-badge {
    transform: rotate(15deg) scale(1.1);
}

.page-footer {
    background: #1F1B19;
    color: #F4EDE6;
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #d9d9d9;
}

.footer-brand p {
    color: rgba(244, 237, 230, 0.8);
    margin: 16px 0 24px;
    line-height: 1.6;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(244, 237, 230, 0.12);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-pill i {
    color: var(--amber-light);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #FDF9F3;
}

.footer-column p {
    margin: 0 0 16px;
    color: rgba(244, 237, 230, 0.75);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(244, 237, 230, 0.85);
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--amber-light);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(244, 237, 230, 0.8);
    margin-bottom: 20px;
}

.footer-contact-details span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-details i {
    color: var(--amber-light);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(244, 237, 230, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4EDE6;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--amber-light);
    color: #1F1B19;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(244, 237, 230, 0.1);
    margin-top: 60px;
    padding-top: 24px;
    text-align: center;
    color: rgba(244, 237, 230, 0.6);
    font-size: 0.9rem;
}

.hero {
    position: relative;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 3;
    border-radius: 20px;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 50rem);
    font-weight: 100;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
    opacity: 0.5;
    cursor: default;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.btn-hero {
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    color: var(--text-dark);
    border: 2px solid rgba(45, 27, 27, 0.3);
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

#showreel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#showreel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section {
    padding: 100px 0;
    background: var(--nature-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.about-text {
    padding: 20px 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-text p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-photos {
    width: 100%;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.photo-item:hover img {
    transform: scale(1.05);
}