:root {
    --black: #000000;
    --gold: #bc9c4d;
    --light-gold: #F7DFA4;
    --dark-gold: #9E7C1F;
    --gray: #333333;
    --light-gray: #888888;
    --dark-gray: #121212;
    --text-glow: 0 0 10px rgba(212, 175, 55, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
}

.full-screen {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

body {
    background-color: var(--black);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    perspective: 1000px;
    justify-content: center;
}

.carousel-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}
.carousel-track {
    display: flex;
    animation: slideRight 20s linear infinite;
    width: max-content;
}
.carousel-slide {
    width: 300px;       /* Fixed width for each box */
    height: 300px;      /* Fixed height for each box */
    margin-right: 20px; /* Spacing between slides */
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensures image fills box nicely */
    display: block;
    transition: transform 0.3s ease;
}
.carousel-slide:hover img {
    transform: scale(1.05);
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #000000 0%, #060606 50%, #111111 100%);
    overflow: hidden;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

        /* Navigation Button */
.menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #bc9c4d;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-btn:hover {
    background: #9b7f3a;
    transform: scale(1.1) rotate(90deg);
}

.menu-btn .hamburger {
    position: relative;
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-btn .hamburger::before,
.menu-btn .hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-btn .hamburger::before {
    top: -7px;
}
                   
.menu-btn .hamburger::after {
    bottom: -7px;
}

.menu-checkbox {
    display: none;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 250px;
    height: 117vh;
    background: linear-gradient(145deg, rgba(0,0,0,0.9), rgba(20,20,20,0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 10px 200px;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    text-align: center;
}

.menu-checkbox:checked ~ .nav-menu {
    right: 0;
}

.nav-button {
    position: relative;
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    font-weight: 300;
    margin: 15px 0;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: 100%;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    text-decoration: none;
}

.menu-checkbox:checked ~ .nav-menu .nav-button {
    opacity: 1;
    transform: translateX(0);
}

.nav-button::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #bc9c4d;
    transition: width 0.3s ease;
}
.nav-button:hover::after {
    width: 100%;
    background-color: rgba(188, 156, 77, 1); /* Fully opaque on hover */
}

.nav-button:hover {
    color: #bc9c4d;
}
/* Social Me */
.nav-social {
    text-align: center;
    padding: 1rem 0;
}

.social-title {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icon {
    margin: 0 0.5rem;
    font-size: 202rem;
    color: white;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #d4af37; /* Example gold hover */
}

/* Staggered animation for nav buttons */
.nav-button:nth-child(1) { transition-delay: 0.1s; }
.nav-button:nth-child(2) { transition-delay: 0.1s; }
.nav-button:nth-child(3) { transition-delay: 0.1s; }
.nav-button:nth-child(4) { transition-delay: 0.1s; }
.nav-button:nth-child(5) { transition-delay: 0.1s; }

/* Social icons */
.nav-social {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.nav-social a {
    color: white;
    font-size: 1.4rem;
    margin: 0 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    text-align: center;
    text-decoration: none;
}

.menu-checkbox:checked ~ .nav-menu .nav-social a {
    opacity: 1;
    transform: translateY(0);
}

.nav-social a:hover {
    color: #bc9c4d;
}

.nav-image {
    text-align: center;
    padding: 1rem 0;
}

.nav-image img {
    width: 200px; /* or whatever fits your design */
    height: auto;
    top: 0;
    height: 10%;
}

.grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--gray) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gray) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: -1px -1px;
    opacity: 0.1;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(20vw);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo img {
    width: 140px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
}

.logo::before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: var(--gold);
    margin-right: 10px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateLogo 4s infinite linear;
}

@keyframes rotateLogo {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.navigation {
    display: flex;
justify-content: center; /* Center the navigation items */
gap: 20px; /* Space between items */
background-color: transparent; /* Optional: Set background color */
padding: 10px 0; /* Optional: Add padding */
}

.nav-button {
    position: relative;
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 16px;
    z-index: 1;
}

.nav-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-button:hover {
    color: var(--gold);
}

.home-button {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.home-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 20, 20, 0.85); /* Slight transparency */

    transition: left 0.7s ease;
}

.home-button:hover::before {
    left: 100%;
}

.home-button:hover {
    background-color: var(--gold);
    color: var(--black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.home-button .icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.home-button:hover .icon {
    transform: scale(1.2);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    z-index: 2;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
    perspective: 1000px;
}
    .hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns text towards the top */
    margin-top: -200px; /* Moves content up */
 }


.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    display: block;
    text-align: left; /* Aligns text to the left */
}


.hero-title span {
    color: var(--gold);
    text-shadow: var(--text-glow);
    position: relative;
}


.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    box-shadow: var(--text-glow);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns all content to the left */
    text-align: left;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    color: var(--black);
    text-decoration: none;
    padding: 10px 10px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin: 100;
    
    
}
.parent-container {
    text-align: left; /* Aligns content (including the button) to the left */
}

.cta-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(112, 88, 88, 0.5);
    
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -00%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.9s ease;
    z-index: -1;

}
 /* Video Section Styles */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); 
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* adjust opacity for darkness */
    pointer-events: none;
}


.cta-button:hover::before {
    left: 100%;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
    justify-content: center;
    font-family: 'Courier New', Courier, monospace;
}

.cube {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-100%, -50%) rotateX(30deg) rotateY(45deg);
    transform-style: preserve-3d;
    width: 200px;
    height: 200px;
    animation: rotateCube 7s infinite linear;
}

@keyframes rotateCube {
    0% {
        transform: translate(-50%, -50%) rotateX(30deg) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateX(30deg) rotateY(360deg);
    }
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    backface-visibility: visible;
    transition: all 0.5s ease;
    font-family: 'futura', sans-serif;
    /*-weight: bold; --*/
}

.cube-face:nth-child(1) {
    transform: translateZ(100px);
}

.cube-face:nth-child(2) {
    transform: rotateY(180deg) translateZ(100px);
}

.cube-face:nth-child(3) {
    transform: rotateY(90deg) translateZ(100px);
}

.cube-face:nth-child(4) {
    transform: rotateY(-90deg) translateZ(100px);
}

.cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(100px);
}

.cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(100px);
}

.cube:hover .cube-face {
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.highlights {
    margin-top: 80px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.highlight-title {
    text-align: center;
    color: #bc9c4d;
    margin-bottom: 20px;
    font-size: 2.2rem;
    width: 100%;
}

.highlight-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--gold);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.highlight-card {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border: 1px solid rgba(128, 128, 128, 0.1);
    padding: 30px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.highlight-card:hover::before {
    transform: scaleY(1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    width: fit-content;
}

.highlight-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 1px solid var(--gold);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

/* Animation classes */
.fade-in-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for better visual effect */
.highlight-cards:first-child .fade-in-card:nth-child(1) {
    transition-delay: 0.3s;
}

.highlight-cards:first-child .fade-in-card:nth-child(2) {
    transition-delay: 0.4s;
}

.highlight-cards:first-child .fade-in-card:nth-child(3) {
    transition-delay: 0.5s;
}

.highlight-cards:last-child .fade-in-card:nth-child(1) {
    transition-delay: 0.6s;
}

.highlight-cards:last-child .fade-in-card:nth-child(2) {
    transition-delay: 0.7s;
}

.highlight-cards:last-child .fade-in-card:nth-child(3) {
    transition-delay: 0.8s;
}


.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.highlight-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Previous styles remain the same */

/* Updated Advertising Banner Styles for Full Width */
.ad-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: transparent; /* Ensure background is transparent */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: none;
    opacity: 0; /* Start invisible */
    transform: translateY(40px); /* Start slightly below final position */
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.ad-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.ad-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.ad-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.ad-banner.visible .ad-content > * {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for children */
.ad-banner.visible .ad-content h3 {
    transition-delay: 0.3s;
}

.ad-banner.visible .ad-content p {
    transition-delay: 0.4s;
}

.ad-banner.visible .ad-content .cta-button {
    transition-delay: 0.1s;
}

.ad-banner h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.ad-banner p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Verdana', sans-serif;
}

.ad-banner .cta-button {
    background: var(--gold);
    color: var(--black);
    border: 3px solid var(--gold);
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    transition: all 0.3s ease, opacity 0.5;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    cursor: pointer;
}

.ad-banner .cta-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.7);
}

/* Mission Section */
.mission-section {
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.mission-content {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-content h1 {
    font-size: 3.5rem;
    color: #9E7C1F;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.mission-content h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
}

.mission-content p {
    font-size: 1.3rem;
    color: #888888;
    line-height: 1.8;
    max-width: 800px;
    margin: 5px auto 0;
    font-weight: 300;
}

.landscape-image-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    animation: zoomIn 1s ease 0.3s forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.landscape-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(158, 124, 31, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.landscape-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.landscape-image-container:hover .landscape-image {
    transform: scale(1.05);
}

/* Decorative elements */
.mission-section::before {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #9E7C1F;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-content h1 {
        font-size: 2.8rem;
    }

    .mission-content p {
        font-size: 1.1rem;
    }

    .landscape-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 40px 15px;
        margin: 40px auto;
    }

    .mission-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .mission-content h1::after {
        width: 60px;
    }

    .mission-content p {
        font-size: 1rem;
        margin-top: 30px;
    }

    .landscape-image {
        height: 300px;
    }

    .landscape-image-container {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .mission-content h1 {
        font-size: 1.8rem;
    }

    .landscape-image {
        height: 250px;
    }
}


/* .container1 {
    display: flex;
    align-items: flex-start; 
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(20, 20, 20, 0.85); 
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.section1);
    border-radius: 8px;
    gap: 40px;
} */

/* .left-panel1 {
flex: 1;
padding-right: 20px;
} */

.right-panel1 {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

/* .section1 {
margin-bottom: 30px;
} */

h1 {
font-size: 28px;
color: #9E7C1F;
margin-bottom: 15px;
font-family: 'Roboto', Arial, sans-serif;
}

h2 {
font-size: 24px;
color: #9E7C1F;
margin-bottom: 15px;
font-family: 'Roboto', Arial, sans-serif;
}

p {
font-size: 16px;
color: #888888;
line-height: 1.6;
font-family: 'Roboto', Arial, sans-serif;
}

ul {
list-style-type: disc;
margin-left: 20px;
padding-left: 10px;
margin-bottom: 15px;
}

li {
margin-bottom: 8px;
font-size: 16px;
color: #888888;
font-family: 'Roboto', Arial, sans-serif;
}

.image-container1 {
    width: 100%;
    max-width: 950px;
    height: 450px;
    border-radius: 8px;
    opacity: 1; /* Adjust between 0 (fully transparent) and 1 (fully opaque) */
}

.image-container1 img {
    width: 100%;
    height: auto;
    object-fit: contain; 
    border-radius: 12px;
    opacity: 0;
    transform: translateY(50px); /* Start slightly lower */
    transition: opacity 0.3s ease-in-out;
}

.image-container1 img.visible {
    opacity: 0.8; /* Full opacity on hover */
    transform: translateY(0); 
}

/* Fade-in Animation */
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);

}
.fitness-banner {
font-family: sans-serif;
color: #fff;
background: transparent;
padding: 20px;
text-align: left;
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 1s ease forwards;
}

.fitness-banner.visible {
opacity: 1;
transform: translateY(0);
}

@keyframes fadeInUp {
to {
    opacity: 1;
    transform: translateY(0);
}
}

.banner-main {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 10px; /* Control space between image and text */
}

.banner-text {
flex: 1;
max-width: 45%;
opacity: 0;
animation: slideInLeft 1s ease 0.5s forwards;
}

@keyframes slideInLeft {
from {
    opacity: 0;
    transform: translateX(-50px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}

.banner-text h1 {
font-size: 2.5rem;
line-height: 1.2;
margin-bottom: 15px;
color: #fff;
}

.banner-text p {
font-size: 1rem;
margin-bottom: 15px;
color: #ddd;
}

.read-more-btn {
background: linear-gradient(to right, #f97316, #facc15);
color: #000;
text-decoration: none;
padding: 10px 20px;
font-weight: bold;
border-radius: 4px;
display: inline-block;
transition: background 0.3s ease, transform 0.3s ease;
}

.read-more-btn:hover {
transform: translateY(-3px);
background: linear-gradient(to right, #facc15, #f97316);
}

.banner-image {
flex: 1;
max-width: 55%; /* Adjust width to fit better */
margin-bottom: 0; /* Remove bottom margin */
overflow: hidden; /* Ensure image fits within container */
}

.banner-image img {
width: 100%;
height: auto; /* Maintain aspect ratio */
object-fit: cover;
border-radius: 10px;
}

.banner-gallery {
display: flex;
justify-content: space-between;
margin-top: 20px;
gap: 5px;
}

.banner-gallery img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
opacity: 0;
animation: fadeIn 0.8s ease forwards;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
to {
    opacity: 1;
}
}

.banner-gallery img:nth-child(1) {
animation-delay: 1.2s;
}
.banner-gallery img:nth-child(2) {
animation-delay: 1.4s;
}
.banner-gallery img:nth-child(3) {
animation-delay: 1.6s;
}

/* Media query for specific screen size */
@media (max-width: 768px) {
.banner-main {
    flex-direction: column;
    text-align: center;
}

.banner-text, .banner-image {
    max-width: 100%;
}

.banner-gallery {
    flex-direction: column;
    align-items: center;
}

.banner-gallery img {
    max-width: 100%;
}
}

/* Styles for larger screens */
@media (min-width: 769px) {
.banner-image img {
    height: 500px; /* Adjust height for larger screens */
}

.banner-gallery img {
    height: 250px;
}
}
@keyframes slide {
from {
  transform: translateX(0);
}
to {
  transform: translateX(-100%);
}
}


.services-portfolio {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.services-intro h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.services-intro p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.service-item {
    background-color: rgba(20, 20, 20, 0.85); /* Slight transparency */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%; /* Ensure the image takes up the full width of its container */
    height: 450px; /* Increase the height for larger images */
    object-fit: cover; /* Maintain aspect ratio and crop excess */
    border-radius: 10px; /* Optional: Add rounded corners */
    transition: transform 0.3s ease; /* Add a smooth hover effect */
}

.service-item h3 {
    margin: 20px 0 10px;
    font-size: 1.5em;
}

.service-item:hover img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}
.service-item p {
    padding: 0 20px 20px;
    color: #666;
}

.plus::after{
    content: "+";
}

.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateX(0); /* Reset default */
    transition: all 0.8s ease;
}

.reveal-left {
    transform: translateX(-100px);
}

.reveal-right {
    transform: translateX(100px);
}

.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}


.featured-work {
    background-color: rgba(20, 20, 20, 0.85); /* Slight transparency */
    color: #ffffff;
    padding: 9rem 2rem;
    font-family: 'Oswald', sans-serif;
}

.featured-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-image img {
   
        width: 600px;
        height: 500px;
        object-fit: cover;
        border-radius: 3rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        display: block;
    
}

.featured-description {
    max-width: 500px;
}

.featured-description .tag {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bc9c4d;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.featured-description h2 {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.featured-description p {
    font-size: 1rem;
    line-height: .1.6;
}
                                                                                                 
.project-link {
    display: inline-block;
    margin-top: 1rem;
    color: #9E7C1F;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #ffffff;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


.stats-banner {
    background-color: rgba(20, 20, 20, 0.85); /* Slight transparency */
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.stats-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.stats-section {
    /*background-color: rgba(20, 20, 20, 0.85); /* Slight transparency */
    padding: 60px 20px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item h2 {
    font-size: 64px;
    margin: 0;
    color: white;
}

.stat-item p {
    font-size: 18px;
    margin: 5px 0 0;
    color: #ccc;
    line-height: 1.4;
}

.divider {
    height: 60px;
    width: 1px;
    background-color: #555;
}

.blog-section {
    background: url('/api/placeholder/1920/1080') center center / cover no-repeat fixed;
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  

  
  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .blog-container.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .blog-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }
  
  .blog-header::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #ffd700;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 1.5s ease;
  }
  
  .blog-header.visible::after {
    width: 80px;
  }
  
  .blog-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    margin-bottom: 15px;
    color: #9E7C1F;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    letter-spacing: 1px;
  }
  
  .blog-header.visible h2 {
    opacity: 1;
    transform: translateY(0);
  }
  
  .blog-header .highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: goldGlow 2s ease-in-out infinite alternate;
    font-weight: 700;
  }
  
  .blog-header p {
    color: #888888;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  }
  
  .blog-header.visible p {
    opacity: 1;
    transform: translateY(0);
  }
  
  .blog-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
  }
  
  .blog-card {
    background-color: rgba(20, 20, 20, 0.85);
    color: white;
    width: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: rotateY(10deg) translateZ(-100px);
  }
  
  .blog-card.visible:nth-child(1) {
    transition-delay: 0.3s;
  }
  
  .blog-card.visible:nth-child(2) {
    transition-delay: 0.5s;
  }
  
  .blog-card.visible:nth-child(3) {
    transition-delay: 0.7s;
  }
  
  .blog-card.visible {
    opacity: 1;
    transform: rotateY(0) translateZ(0);
  }
  
  .blog-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 1.2s ease;
    filter: brightness(0.9);
  }
  
  .blog-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
  }
  
  .blog-date {
    position: absolute;
    background: #ffd700;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Oswald', sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .blog-card:hover .blog-date {
    transform: translateY(0);
  }
  
  .blog-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.85) 0%, rgba(30, 30, 30, 0.95) 100%);
    transform: translateY(0);
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover .blog-content {
    transform: translateY(-10px);
  }
  
  .blog-content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 22px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
    align-items: center;
  }
  
  .blog-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.4s ease;
    align-items: center;
  }
  
  .blog-card:hover .blog-content h3::after {
    width: 60px;
  }
  
  .blog-card:hover .blog-content h3 {
    color: #ffd700;
    align-items: center;
  }
  
  .blog-content p {
    font-size: 15px;
    color: #c5c5c5;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .read-more {
    display: inline-block;
    color: #ffd700;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffd700;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
  }
  
  .blog-card:hover .read-more {
    opacity: 1;
  }
  
  .blog-card:hover .read-more::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  /* Animations */
  @keyframes goldGlow {
    from {
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 5px #ffd700;
    }
    to {
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px #ffd700, 0 0 25px #ffd700;
    }
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .blog-cards {
      gap: 20px;
    }
    
    .blog-header h2 {
      font-size: 32px;
    }
    
    .blog-header p {
      font-size: 16px;
    }
    
    .blog-card {
      width: 100%;
      max-width: 350px;
    }
  }

q
  
  .highlight {
    color: #ffd700; /* Gold color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Black shadow */
    animation: goldGlow 2s ease-in-out infinite alternate;
  }
  
  .btn-learn-more {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInText 0.8s ease forwards 1.6s;
  }
  
  .btn-learn-more:hover {
    background-color: white;
    color: #333;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes zoomIn {
    to {
      transform: scale(1);
    }
  }
  
  @keyframes fadeIn {
    from {
      background-color: rgba(0, 0, 0, 0);
    }
    to {
      background-color: rgba(0, 0, 0, 0.6);
    }
  }
  
  @keyframes slideInText {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes goldGlow {
    from {
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 5px #ffd700;
    }
    to {
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px #ffd700, 0 0 20px #ffd700;
    }
  }
  
  @media (max-width: 768px) {
    .intro-text-overlay h2 {
      font-size: 28px;
    }
    .intro-text-overlay p {
      font-size: 16px;
    }
    .btn-learn-more {
      padding: 10px 20px;
      font-size: 14px;
    }
  }


@media (max-width: 768px) {
    .intro-text-overlay h2 {
        font-size: 28px;
    }
    
    .intro-text-overlay p {
        font-size: 16px;
    }
}

.centered-box {
    width: 90%;
    max-width: 1130px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    margin: 40px auto;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    border-radius: 15px;
}

.slide-in-text {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: slideIn 1s ease-out;

}

.slide-in-subtext {
    font-size: 1.5rem;
    animation: slideIn 1.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.container {
    max-width: 1200px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.header-section {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    height: 45vh;
}

.header-image {
    flex: 1;
    text-align: center;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 1s ease 0.1s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Images */
.header-image img {
    width: 100%;
    max-width: 550px;
    max-height: 40vh;
    object-fit: cover;
    border-radius: 6px;
}

.header-content {
    flex: 1;
    padding-left: 20px;
    transform: translateX(30px);
    opacity: 0;
    transition: all 1s ease 0.2s;
}

.header-content h1 {
    color: #9E7C1F;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.header-content h2 {
    color: #F7DFA4;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-sections {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.feature-box {
    flex: 1 1 300px; /* responsive base width */
    max-width: 380px;
    height: 420px;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    background-color: #1a1a1a;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-box:hover {
    transform: translateY(10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.6);
}

.feature-box:nth-child(1) {
    transition-delay: 0.5s;
}
.feature-box:nth-child(2) {
    transition-delay: 0.7s;
}
.feature-box:nth-child(3) {
    transition-delay: 0.9s;
}

.feature-box img {
    width: 100%;
    height: 65%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.feature-box h2 {
    color: #F7DFA4;
    margin: 8px 0;
    font-size: 1.6rem;
}

.feature-box p {
    margin-top: 6px;
    color: #CCCCCC;
    font-size: 0.9rem;
}

img {
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

img:hover {
    transform: scale(1.03);
}

.show-on-scroll {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

@media (max-width: 768px) {
    body {
        height: auto;
    }
    
    .container {
        height: auto;
        padding: 10px;
    }
    
    .header-section {
        flex-direction: column;
        height: auto;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .header-image img {
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .header-content {
        padding-left: 0;
        text-align: center;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .feature-sections {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    
    .feature-box {
        margin-bottom: 10px;
    }
    
    .feature-box img {
        height: 150px;
    }
}

    .card {
      border: 2px solid #000;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
      transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
      background: #111;
      animation: fadeInCard 1.2s ease-in-out;
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
      border-color: #fff;
    }

    .card img {
      display: block;
      width: 100%;
      height: auto;
      transition: transform 0.6s ease;
    }

    .card:hover img {
      transform: scale(1.08);
    }

    .thumbnail {
      width: 300px;
    }

    @keyframes fadeInText {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInCard {
      0% { opacity: 0; transform: scale(0.9); }
      100% { opacity: 1; transform: scale(1); }
    }

    /* LOGO CAROUSEL*/
.container2 {
    max-width: 1900px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    text-align: center; /* fallback */
}
    
    /* Logo Carousel Styling */
    @keyframes slide {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }

.logos-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 8px;
    padding: 40px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.226);
    align-content: last baseline;
    grid-row: auto;
    shape-outside: -o-repeating-linear-gradient();
    /* position-area: inherit; */
    column-span: inherit;
    text-align: center; /* fallback */
    
}
    
    .logos-title {
        text-align: center;
        color: #bc9c4d;
        margin-bottom: 20px;
        font-size: 2.2rem;
        
    }

    .logos {
        overflow: hidden;
        padding: 20px 0;
        position: relative;
        display: flex;
        justify-content: center; /* center horizontally */
        align-items: center;     /* center vertically */
    }


    /* .logos::before,
    .logos::after {
        position: absolute;
        top: 0;
        width: 150px;
        height: 100%;
        content: "";
        z-index: 2;
    }

    /* .logos::before {
        left: 0;
        background: linear-gradient(to right, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
    }

    .logos::after {
        right: 0;
        background: linear-gradient(to left, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
    } */ */

    .logos-slide {
    display: flex;
    align-items: center;
    animation: 36s slide infinite linear;
    }

    .logos-slide img {
        width: 110px; /* Set a fixed width */
        height: 70px; /* Set a fixed height */
        object-fit: contain; /* Adjust image inside the box without distortion */
        margin: 0 25px;
        vertical-align: middle;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .logos-slide img:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }


    footer {
        background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
        padding: 30px 5%;
        margin-top: 60px;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(128, 128, 128, 0.2);
        
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-logo {
        font-size: 1.5rem;
        color: var(--gold);
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .footer-links a {
        color: var(--light-gray);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--gold);
    }

    .copyright {
        color: var(--light-gray);
        font-size: 0.9rem;
        text-align: center;
        margin-top: 20px;
    }

/* Responsive styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3rem; 
    }
    
    .cube {
        width: 150px;
        height: 150px;
    }
    
    .cube-face {
        width: 150px;
        height: 150px;
    }
    
    .cube-face:nth-child(1) {
        transform: translateZ(75px);
    }
    
    .cube-face:nth-child(2) {
        transform: rotateY(180deg) translateZ(75px);
    }
    
    .cube-face:nth-child(3) {
        transform: rotateY(90deg) translateZ(75px);
    }
    
    .cube-face:nth-child(4) {
        transform: rotateY(-90deg) translateZ(75px);
    }
    
    .cube-face:nth-child(5) {
        transform: rotateX(90deg) translateZ(75px);
    }
    
    .cube-face:nth-child(6) {
        transform: rotateX(-90deg) translateZ(75px);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }
    
    .navigation {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

    /* ABOUT SECTION */
    .about-section {
        height: 100vh;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        margin: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .about-image,
    .about-text {
        flex: 1 1 500px;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.6s ease-out;
    }

    .about-image img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .about-text {
        padding: 0 30px;
    }

    .about-text h2 {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #9E7C1F;
    }

    .about-text p {
        font-size: 1.1em;
        line-height: 1.8;
        color: #888888;
    }

    .visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 768px) {
        .about-section {
        flex-direction: column;
        text-align: center;
        }

        .about-text {
        padding: 30px 0;
        }
    }

    .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin-top: 40px;
    }

    .feature-box {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 15px;
        max-width: 300px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
    }

    .feature-box:hover {
        transform: translateY(-8px);
    }

    .feature-box h3 {
        color: #fdfdfd;
        margin-bottom: 15px;
    }

    .feature-box p {
        color: #ddd;
        font-size: 1em;
        line-height: 1.6;
    }

    /* Culture section with image */
    .culture-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .culture-content {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .culture-image-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .culture-image-wrapper {
        width: 600px;
        max-width: 90%;
        text-align: center;
    }

    .culture-image {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
    }

    .culture-image:hover {
        transform: scale(1.03);
    }

    .culture-caption {
        margin-top: 15px;
        color: #888888;
        font-size: 1.1em;
    }

    /* CONTACT US */
    
    .contact-wrapper {
        display: flex;
        flex-wrap: wrap;
        min-height: 100vh;
        padding: 80px 5%;
        align-items: center;
        justify-content: center;
        gap: 40px;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
      }
      
      .contact-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
      }
      
.map-content {
    position: relative;
    width: 100%;
    max-width: 100%;        /* full width */
    height: 400px;          /* landscape height */
    margin-bottom: 30px;    /* spacing from contact info */
    border-radius: 16px;    /* optional rounded corners */
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease;
}

.map-content iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-content.show,
.map-content.show {
    transform: translateY(0);
    opacity: 1;
}

      
      h2 {
        color: gold;
        font-size: 40px;
        margin-bottom: 20px;
      }
      
      .info {
        font-size: 18px;
        line-height: 1.8;
        border-left: 4px solid gold;
        padding-left: 15px;
        margin-bottom: 20px;
      }
      
      iframe {
        width: 100%;
        height: 400px;
        border: none;
        border-radius: 12px;
      }
      
      @media (max-width: 768px) {
        .contact-wrapper {
          flex-direction: column;
          padding: 60px 20px;
        }
      }

      /* CAREERS SITE */

      .hero-section {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .hero-content-wrapper {
        max-width: 800px;
    }

    .hero-section h1 {
        font-size: 48px;
        margin-bottom: 20px;
        color: #9E7C1F;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-section p {
        font-size: 18px;
        margin-bottom: 30px;
        color: #888888;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .cta-button-class {
        display: inline-block;
        background-color: #9E7C1F;
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .cta-button-class:hover {
        background-color: #ecd02d;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .carousel-section-wrapper {
        padding: 100px 20px;
        background-color: transparent; /* Optional: Set background color */
        position: relative;
        z-index: 2;
    }
    
    .section-heading-wrapper {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-heading-wrapper h2 {
        font-size: 36px;
        color: #9E7C1F;
        margin-bottom: 15px;
    }
    
    .section-heading-wrapper p {
        font-size: 18px;
        color: #888888;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .carousel-container-wrapper {
     max-width: 1200px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-wrapper {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        animation: scroll 40s linear infinite;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-400%); /* Move through all slides */
        }
    }
    
    .carousel-wrapper:hover {
        animation-play-state: paused;
    }
    
    .carousel-item-wrapper {
        min-width: 25%; /* Four items per row */
        height: 520px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 0 10px;
        flex-shrink: 0;
        background-color: #000000;
    }
    
    .carousel-item-content-wrapper {
        background-color: rgba(26, 25, 25, 0.6);
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        height: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .carousel-item-wrapper h3 {
        font-size: 22px;
        margin-bottom: 10px;
        color: #F7DFA4;
    }
    
    .carousel-item-wrapper p {
        font-size: 14px;
        margin-bottom: 15px;
        color: #888888;
    }
    
    .carousel-image-container {
        margin: 5px auto 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-grow: 1;
    }
    
    .carousel-image {
        width: 1250%;
        height: auto;
        max-height: 340px;
        object-fit: contain;
        border-radius: 20px;
        object-fit: cover; /* Fill the box and crop if needed */
    }
    
    /* For smaller screens, adjust to 2 per row */
    @media (max-width: 992px) {
        .carousel-item-wrapper {
            min-width: 50%;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-200%);
            }
        }
    }
    
    /* For mobile screens, adjust to 1 per row */
    @media (max-width: 576px) {
        .carousel-item-wrapper {
            min-width: 100%;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
    
        .carousel-image {
            max-height: 220px;
        }
    }

/* Benefits Section */
.benefits-section-wrapper {
    padding: 100px 20px;
    background-color: transparent; /* Optional: Set background color */
    position: relative;
    z-index: 2;
}

.highlight-icon-small {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-left: 8px;
  fill: #bc9c4d;
  filter: drop-shadow(0 0 5px #bc9c4d);
  animation: pulseIcon 2s infinite alternate;
}

@keyframes pulseIcon {
  0% {
    filter: drop-shadow(0 0 5px #bc9c4d);
  }
  100% {
    filter: drop-shadow(0 0 12px #ffd700);
  }
}

    .benefits-container-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .benefit-card-wrapper {
        background-color: rgba(20, 20, 20, 0.85); /* Slight transparency */
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(30px);
    }

    .benefit-card-wrapper.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .benefit-icon-wrapper {
        font-size: 50px;
        color: #9E7C1F;
        margin-bottom: 20px;
    }

    .benefit-card-wrapper h3 {
        font-size: 30px;
        margin-bottom: 15px;
        color: #9E7C1F;
    }

    .benefit-card-wrapper p {
        color: #888888;
        line-height: 1.6;
    }

    /* Jobs Section */
    .jobs-section-wrapper {
        padding: 100px 20px;
        background-color: transparent; /* Optional: Set background color */
        position: relative;
        z-index: 2;
    }

    .jobs-container-wrapper {
        max-width: 1000px;
        margin: 0 auto;
    }

    .job-card-wrapper {
        background-color: rgba(20, 20, 20, 0.85); /* Slight transparency */
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 20px;
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateX(-30px);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .job-card-wrapper.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .job-info-wrapper h3 {
        font-size: 22px;
        color: #9E7C1F;
        margin-bottom: 10px;
    }

    .job-meta-wrapper {
        display: flex;
        gap: 20px;
        color: #888888;
        margin-bottom: 15px;
    }

    .job-meta-wrapper span {
        display: flex;
        align-items: center;
    }

    .job-meta-wrapper i {
        margin-right: 5px;
    }

    .job-card-wrapper .cta-button-class {
        padding: 10px 20px;
    }

    .section-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }


    /* Components */
    .section-btn {
        display: inline-block;
        background-color: var(--primary-color);
        color: white;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-align: center;
        margin-top: 20px;
    }

    .section-btn:hover {
        background-color: #e55a2b;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .section-hero {
        background-color: var(--secondary-color);
        color: white;
        padding: 100px 0;
        text-align: center;
        background-image: linear-gradient(rgba(46, 64, 87, 0.9), rgba(46, 64, 87, 0.9)), url('/api/placeholder/1200/600');
        background-size: cover;
        background-position: center;
    }

    .section-hero h1 {
        margin-bottom: 20px;
    }

    .section-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 30px;
    }

    /* Services Section */
    .section-services {
        padding: 80px 0;
    }

    .section-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .section-service-card {
        background-color: var(--light-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .section-service-card:hover {
        transform: translateY(-10px);
    }

    .section-service-img {
        height: 200px;
        background-color: #ddd;
        background-image: url('/api/placeholder/400/320');
        background-size: cover;
        background-position: center;
    }

    .section-service-content {
        padding: 20px;
        background-color: rgba(20, 20, 20, 0.85); /* Slight transparency */
    }

    .section-service-content h3 {
        margin-top: 0;
    }

    /* Features List */
    .section-features-list {
        list-style: none;
        margin: 20px 0;
    }

    .section-features-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
    }

    .section-features-list li:before {
        content: "✓";
        color: var(--primary-color);
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    /* Case Studies */
    .section-case-studies {
        padding: 80px 0;
        background-color: var(--light-color);
    }

    .section-case-study {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
    }

    @media (min-width: 768px) {
        .section-case-study {
            flex-direction: row;
        }
    }

    .section-case-study-img {
        flex: 0 0 40%;
        background-image: url('/api/placeholder/400/320');
        background-size: cover;
        background-position: center;
        min-height: 250px;
    }

    .section-case-study-content {
        flex: 1;
        padding: 30px;
    }

    .section-metrics {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .section-metric {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }

    .section-metric h4 {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    /* Process Section */
    .section-process {
        padding: 80px 0;
    }

    .section-process-steps {
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .section-process-step {
        flex: 0 0 100%;
        padding: 30px;
        position: relative;
        padding-left: 70px;
    }

    @media (min-width: 768px) {
        .section-process-step {
            flex: 0 0 50%;
        }
    }

    .section-step-number {
        position: absolute;
        left: 20px;
        top: 30px;
        background-color: var(--primary-color);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    /* Contact Section */
    .section-contact {
        padding: 80px 0;
        background-color: var(--secondary-color);
        color: white;
        text-align: center;
    }

    .section-contact-form {
        max-width: 600px;
        margin: 0 auto;
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        color: var(--dark-color);
        text-align: left;
    }

    .section-form-group {
        margin-bottom: 20px;
    }

    .section-form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .section-form-control {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: inherit;
        font-size: 1rem;
    }

    textarea.section-form-control {
        min-height: 150px;
    }

    /* Image Gallery */
    .section-gallery {
        display: flex;
        flex-wrap: wrap;
        margin: 30px -10px;
    }

    .section-gallery-item {
        flex: 0 0 100%;
        padding: 10px;
    }

    @media (min-width: 576px) {
        .section-gallery-item {
            flex: 0 0 50%;
        }
    }

    @media (min-width: 992px) {
        .section-gallery-item {
            flex: 0 0 33.333%;
        }
    }

    .section-gallery-img {
        height: 250px;
        background-color: #ddd;
        background-image: url('/api/placeholder/400/320');
        background-size: cover;
        background-position: center;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

    .section-gallery-img:hover {
        transform: scale(1.03);
    }

    /* Divider */
    .section-divider {
        height: 2px;
        background-color: #eee;
        margin: 60px 0;
    }