  @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', sans-serif;
        }

        body {
            background: #ffffff;
            color: #d3af37;
            overflow-x: hidden;
            background-size: cover;
            background-attachment: fixed;
            background-blend-mode: overlay;
            background-color: rgba(255, 255, 255, 0.9);
        }

        header {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            padding: 20px 9%;
            background: #6c0115;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 99;
            border-bottom: 1px solid #d3af37;
        }

        .logo {
            height: 50px;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 140px;
            width: auto;
            object-fit: contain;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav a {
            font-size: 18px;
            color: #d3af37;
            text-decoration: none;
            font-weight: 500;
            margin-right: 40px;
            margin-left: 0;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: #d3af37;
        }

        /* Enhanced Hero Section with Animations */
        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('../assets/images/hh2.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
            opacity: 1;
        }

        /* Hero bottom image that rises up - adjusted position */
        .hero-bottom-image {
            position: absolute;
            bottom: -90%;
            right: 0;
            width: 100%;
            height: 60%;
            z-index: 2;
            overflow: hidden;
            animation: riseUp 2s ease-out forwards;
            animation-delay: 1.3s;
            margin-bottom: -90px;
        }

        @keyframes riseUp {
            from {
                bottom: -20%;
                opacity: 0;
            }
            to {
                bottom: -20%;
                opacity: 1;
            }
        }

        .hero-bottom-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            margin-top: 90px;
        }

        @keyframes riseUp {
            from {
                bottom: -15%;
                opacity: 0;
            }
            to {
                bottom: 5%;
                opacity: 1;
            }
        }

        /* Rest of your hero styles remain the same */
        .hero-content {
            max-width: 1000px;
            padding: 0 20px;
            z-index: 1;
            position: relative;
            margin-bottom: 100px;
            transform: translateY(-50px);
        }

        .hero-content h1 {
            font-size: 4rem;
            color: #d3af37;
            margin-bottom: 20px;
            text-shadow: 
                none;
            transform-style: preserve-3d;
            perspective: 500px;
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
            animation-delay: 1.5s;
            margin-top: -100px;
        }

        /* Typing animation styles */
        .typing-text {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            border-right: 3px solid #d3af37;
            animation: typing 3.5s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
            max-width: 100%;
            margin-top: -50px;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #d3af37; }
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #d3af37;
            margin-bottom: 30px;
            text-shadow: none;
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
            animation-delay: 4s;
            margin-top: -20px;
        }

        .hero-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #d3af37;
            color: #bf2026;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
            animation-delay: 4.5s;
            margin-top: -10px;
        }

        .hero-btn:hover {
            background-color: #d3af37;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

       .hero-img-left {
            position: absolute;
            left: -5%;
            bottom: -8%;
            width: 1400px;
            height: auto;
            z-index: 1;
            opacity: 0;
            animation: slideInLeft 1s ease-out forwards;
            animation-delay: 0.5s;
        }

        .hero-img-right {
            position: absolute;
            right: -5%;
            top: 30%;
            width: 750px;
            height: auto;
            z-index: 1;
            opacity: 0;
            animation: slideInRight 1s ease-out forwards;
            animation-delay: 1s;
        }

        /* Animation Keyframes */
        @keyframes float3d {
            0%, 100% {
                transform: translateY(0) rotateX(10deg) rotateY(10deg);
            }
            50% {
                transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Why Choose Us Section */
        .why-choose-us {
            justify-content: flex-start;
            padding: 100px 9%;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .why-choose-us::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('../assets/images/img665.jpg');
            background-size: cover;
            background-position: center;
            z-index: -1;
            opacity: 1;
        }

        .why-choose-us .choose-content {
            width: 50%;
            padding: 40px;
            margin-right: auto;
            margin-right: 0;
        }

        .choose-content h2 {
            font-size: 40px;
            line-height: 1;
            margin-bottom: 30px;
            color: #d3af37;
            text-align: center;
        }

        .reason {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            background-color: rgba(254, 239, 157, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .reason:hover {
            background-color: rgba(254, 239, 157, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .reason-icon {
            margin-left: 20px;
            margin-right: 0;
            padding: 12px;
            background-color: rgba(254, 239, 157, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 50px;
            min-height: 50px;
            transition: all 0.3s ease;
        }

        .reason:hover .reason-icon {
            background-color: rgba(191, 140, 33, 0.3);
            transform: scale(1.1);
        }

        .reason-text h3 {
            color: #d3af37;
            margin-bottom: 8px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .reason-text p {
            color: #ffffff;
            font-size: 1rem;
            line-height: 1.5;
            opacity: 0.9;
        }

        /* Rest of your existing CSS remains the same */
        section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 9% 0;
        }

        .about h1 {
            font-size: 150px;
            color: transparent;
            text-shadow: 0 0 10px #bf2026;
            -webkit-text-stroke: none;
            text-align: center;
        }

         .gallery {
    background-color: rgba(126, 83, 84, 0.8); /* Fallback color with opacity */
    background-image: url('../assets/images/yemen2.jpg'); /* Add your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(108, 1, 21, 0.6); ; /* Your red color with opacity */
    z-index: -1;
}



        .gallery-content .outer {
            width: 300px;
            height: 260px;
            padding: 0;
            border-radius: 0;
            border: none;
            background-color: transparent;
        }

        .gallery-content .inner {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 0;
            border: none;
            overflow: hidden;
            box-shadow: none;
        }

        .gallery-content .inner img {
            position: absolute;
            right: 50%;
            top: 50%;
            transform: translate(50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: none;
        }

        #bee-model {
            position: fixed;
            width: 83%;
            height: 90%;
            pointer-events: none;
            z-index: 100;
            transition: transform 1s ease-out, opacity 0.5s ease;
            opacity: 0;
            transform: translateX(-100%);
        }
        
        .gallery-content .inner {
            position: relative;
            width: 150%;
            height: 185%;
            border-radius: 0px;
            background-image: url('../assets/images/hat.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
            margin-top: -10px;
            margin-right: -55px;
        }
        
        .about {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 9%;
            gap: 50px;
            position: relative;
            min-height: 100vh;
            background-image: url('../assets/images/imgar.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            z-index: 1;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .about-content {
            flex: 1;
            max-width: 600px;
            color: #ffffff;
            position: relative;
            z-index: 2;
            text-align: right;
        }

        .about h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            color: #bf2026;
            line-height: 1.2;
            text-shadow: none;
        }

        .about h3 {
            font-size: 1.5rem;
            color: #d3af37;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .about p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #000000;
            line-height: 1.6;
        }

        .about-stats {
            display: flex;
            gap: 30px;
            margin: 40px 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #bf2026;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #d3af37;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: flex-end;
        }

        .primary-btn, .secondary-btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .primary-btn {
            background: #d3af37;
            color: #bf2026;
        }

        .secondary-btn {
            border: 2px solid #d3af37;
            color: #d3af37;
            background: transparent;
        }

        .primary-btn:hover {
            background: #a87a1d;
            box-shadow: 0 0 15px rgba(191, 140, 33, 0.5);
        }

        .secondary-btn:hover {
            background: rgba(191, 140, 33, 0.1);
        }

        .about-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .image-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 400px;
        }

        .stacked-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .image-stack {
                max-width: 300px;
            }
        }

        .image-placeholder {
            width: 400px;
            height: 500px;
        }
        
        .gallery-content {
            position: relative;
            height: 500px;
        }

        .decorative-line {
            position: absolute;
            height: 2px;
            width: 120px;
            background: #d3af37;
        }

        .decorative-line.left {
            right: -130px;
            left: auto;
            top: 40%;
        }

        .decorative-line.right {
            left: -130px;
            right: auto;
            top: 30%;
            background: #d3af37;
        }

        .line-text {
            position: absolute;
            color: #ffffff;
            font-size: 0.9em;
            max-width: 100px;
        }

        .left-text {
            right: -150px;
            left: auto;
            top: 20%;
            text-align: right;
        }

        .right-text {
            left: -150px;
            right: auto;
            top: 32%;
            text-align: left;
        }

        .line-text h3 {
            font-size: 2.3em;
            margin-bottom: 0.5em;
            color: #d3af37;
        }

        .line-text p {
            opacity: 0.8;
        }

        
        /* Updated Footer Styles */
.footer {
    background-color: #670819;
    color: #d3af37;
    padding: 50px 9% 20px;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo + p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(191, 140, 33, 0.2);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(191, 140, 33, 0.5);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #d3af37;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 320px;
    width: 50px;
    height: 2px;
    background-color: #d3af37;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-column ul li a {
    color: #d3af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d3af37;
    padding-left: 5px;
}

.footer-column.contact-info ul li {
    align-items: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(191, 140, 33, 0.3);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
    .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 290px;
    width: 50px;
    height: 2px;
    background-color: #d3af37;
}
}

        
        


        /* Burger Menu Styles */
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            z-index: 101;
        }

        .burger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #d3af37;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: auto;
            width: 70%;
            height: 100vh;
            background-color: #6c0115;
            padding: 80px 30px;
            z-index: 100;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav a {
            display: block;
            color: #d3af37;
            font-size: 18px;
            margin: 20px 0;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover {
            color: #d3af37;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            left: 20px;
            right: auto;
            color: #d3af37;
            font-size: 24px;
            cursor: pointer;
        }

        /* Overlay for mobile menu */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            z-index: 99;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay.active {
            display: block;
            opacity: 1;
        }

        .our-services {
            position: relative;
            padding: 100px 9%;
            color: #ffffff;
            overflow: hidden;
            text-align: right;
        }

        .services-background {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('../assets/images/ye.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -1;
            opacity: 0.8;
        }

        .our-services::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: none;
            z-index: -1;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #bf2026;
            margin-bottom: 120px;
            text-shadow: none;
            position: relative;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .services-grid {
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }

        .service-card {
    background-color: rgba(108, 1, 21, 0.9);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    margin-top: 40px;
    text-align: center;
    flex: 1;
    min-width: 0;
    border: 2px solid #d3af37;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background-color: rgba(108, 1, 21, 1);
}
        .service-icon {
            position: absolute;
            top: -70px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: none;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            border: none;
        }

        .service-icon img {
            width: 200px;
            height:150px;
            object-fit: contain;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #d3af37;
            margin-top: 20px;
        }

        .service-card p {
            font-size: 1rem;
            color: #ffffff;
            line-height: 1.6;
            opacity: 0.9;
        }

        @media (max-width: 992px) {
            .services-grid {
                flex-wrap: wrap;
            }
            
            .service-card {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .our-services {
                padding: 80px 5%;
            }

            .services-background {
                background-attachment: scroll;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom:15px;
            }

            .services-grid {
                flex-direction: column;
                gap: 10px;
            }

            .service-card {
                flex: 1 1 100%;
                padding: 30px 20px;
                margin-top: 30px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                top: -30px;
            }

            .service-icon img {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .our-services {
                padding: 60px 5%;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .burger-menu {
                display: flex;
            }
            
            nav {
                display: none;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-img-left {
                width: 100px;
            }
            
            .hero-img-left {
                bottom: -30%;
                right: -80%;
            }
            
            .hero-img-right {
                top: 100%;
                left: -0px;
            }

            .why-choose-us {
                padding: 80px 5%;
                height: auto;
            }

            .why-choose-us .choose-content {
                width: 100%;
                padding: 30px;
            }

            .reason {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .reason-icon {
                margin-left: 0;
                margin-bottom: 15px;
            }
            
            .gallery-content .inner {
                position: relative;
                width: 100%;
                height: 110%;
                border-radius: 0px;
                background-image: url('../assets/images/hat.png');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                overflow: hidden;
                margin-top: 0px;
                margin-right: -10px;
            }
            
            #bee-model {
                position: fixed;
                width: 30%;
                height: 90%;
                pointer-events: none;
                z-index: 100;
                transition: transform , opacity 0.5s ease;
                opacity: 0;
                transform: translateX(100%);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 5%;
                flex-direction: row;
                text-align: center;
            }
            
            nav {
                margin-top: 0;
            }
            
            nav a {
                margin: 0 10px;
                font-size: 16px;
            }
            
            .about {
                flex-direction: column;
                height: auto;
                padding: 100px 5% 50px;
                text-align: center;
            }
            
            .about h1 {
                font-size: 2.5rem;
                -webkit-text-stroke: none;
            }
            
            .about-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .about-image {
                margin-top: 40px;
            }
            
            .image-placeholder {
                width: 100%;
                max-width: 300px;
                height: 350px;
            }
            
            .gallery {
                height: auto;
                padding: 80px 5%;
            }
            
            .gallery-content {
                flex-direction: column;
                height: auto;
                gap: 50px;
            }
            
            .outer {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .decorative-line.left,
            .decorative-line.right {
                display: none;
            }
            
            .line-text h3 {
                font-size: 1.5em;
                margin-bottom: 0.5em;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .hero-img-left {
                width: 500px;
            }
            
            .hero-img-right {
                width: 200px;
            }
            
            .about h1 {
                font-size: 2rem;
            }
            
            .about h3 {
                font-size: 1.2rem;
            }
            
            .choose-content h2 {
                font-size: 1.8rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .primary-btn, 
            .secondary-btn {
                width: 100%;
                text-align: center;
            }

            .reason {
                padding: 15px;
            }

            .reason-icon {
                min-width: 40px;
                min-height: 40px;
                padding: 8px;
            }
            
            .line-text h3 {
                font-size: 1.5em;
                margin-bottom: 0.5em;
            }
        }
        
        @media (max-width: 768px) {
            .left-text {
                right: -40px;
                left: auto;
                top: 5px;
                text-align: right;
                font-size: 0.8em;
                max-width: 80px;
                padding: 5px 8px;
            }
        }
        
        @media (max-width: 768px) {
            .right-text {
                left: -10px;
                right: auto;
                top: 25%;
                text-align: left;
                font-size: 0.8em;
                max-width: 90px;
                padding: 6px 10px;
                z-index: 2;
            }
        }
        
        @media (max-width: 600px) {
            nav a {
                margin-left: 20px;
                margin-right: 0;
                font-size: 10px;
            }
        }

        /* Projects Section */
        .our-projects {
            position: relative;
            padding: 100px 9%;
            color: #ffffff;
            overflow: hidden;
            background-color: #6c0115;
            text-align: right;
        }

        .projects-background {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('../assets/images/projects-bg.jpg');
            background-size: cover;
            background-position: center;
            z-index: 0;
            opacity: 0.2;
        }

        .projects-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-title1 {
            text-align: center;
            font-size: 2.8rem;
            color: #d3af37;
            margin-bottom: 20px;
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #d3af37;
            margin-bottom: 60px;
            position: relative;
            font-weight: 400;
            opacity: 0.9;
        }

        .projects-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 50px;
        }

        .project-row {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .project-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 300px;
            max-width: 450px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid #d3af37;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .project-image {
            height: 300px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image {
            transform: scale(1.02);
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .view-all-btn {
            text-align: center;
            margin-top: 30px;
        }

        .primary-btn {
            padding: 12px 30px;
            background: #d3af37;
            color: #6c0115;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .primary-btn:hover {
            background: #d3af37;
            box-shadow: 0 0 15px rgba(254, 239, 157, 0.5);
            transform: translateY(-3px);
        }

        /* Full-screen image modal */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            overflow: auto;
        }

        .modal-content {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 20px;
        }

        .modal-content img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            left: 30px;
            right: auto;
            color: #d3af37;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .close-modal:hover {
            color: #d3af37;
        }

        /* Navigation arrows */
        .modal-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
        }

        .modal-nav span {
            color: #d3af37;
            font-size: 50px;
            font-weight: bold;
            cursor: pointer;
            padding: 10px 20px;
            transition: 0.3s;
        }

        .modal-nav span:hover {
            color: #d3af37;
        }

        @media (max-width: 992px) {
            .project-row {
                flex-direction: column;
                align-items: center;
            }
            
            .project-card {
                max-width: 500px;
                width: 100%;
            }
            .hero-img-left {
            position: absolute;
            left: -25%;
            bottom: 0%;
            width: 800px;
            height: auto;
            z-index: 1;
            opacity: 0;
            animation: slideInLeft 1s ease-out forwards;
            animation-delay: 0.5s;
            display: none;
        }

        .hero-img-right {
            position: absolute;
            right:4%;
            top: -10%;
            width: 850px;
            height: auto;
            z-index: 1;
            opacity: 0;
            animation: slideInRight 1s ease-out forwards;
            animation-delay: 1s;
            display: none;
        }
        }

        @media (max-width: 768px) {
            .our-projects {
                padding: 80px 5%;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
            }
            
            .primary-btn {
                padding: 10px 25px;
            }
        }

        @media (max-width: 480px) {
            .our-projects {
                padding: 60px 5%;
            }
            
            .section-title1 {
                font-size: 1.8rem;
            }
            
            .project-image {
                height: 180px;
            }
            
            .primary-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            .hero-img-left {
            position: absolute;
            left: -25%;
            bottom: 0%;
            width: 800px;
            height: auto;
            z-index: 1;
            opacity: 0;
            animation: slideInLeft 1s ease-out forwards;
            animation-delay: 0.5s;
            display: none;
        }

        .hero-img-right {
            position: absolute;
            right:4%;
            top: -15%;
            width: 850px;
            height: auto;
            z-index: 1;
            opacity: 0;
            animation: slideInRight 1s ease-out forwards;
            animation-delay: 1s;
            display: none;
        }
        }

        /* Partners Section */
       /* Partners Section */
.our-partners {
    padding: 80px 9%;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title3 {
    font-size: 2.8rem;
    color: #bf2026;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 0;
}

.partner-logo {
    flex: 0 0 calc(20% - 32px);
    max-width: 180px;
    height: 180px; /* Make height equal to width for perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 50%; /* This makes it circular */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden; /* Ensure content stays within circle */
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.partner-logo img {
    max-width: 150px; /* Slightly smaller to fit well in circle */
    max-height: auto;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive Styles for Partners */
@media (max-width: 992px) {
    .partner-logo {
        flex: 0 0 calc(33.33% - 30px);
        max-width: 160px;
        height: 160px; /* Maintain circle shape */
    }
}

@media (max-width: 768px) {
    .our-partners {
        padding: 60px 5%;
    }
    
    .section-title3 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partner-logo {
        flex: 0 0 calc(50% - 20px);
        max-width: 140px;
        height: 140px; /* Maintain circle shape */
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .section-title3 {
        font-size: 1.8rem;
    }
    
    .partner-logo {
        flex: 0 0 calc(50% - 15px);
        max-width: 120px;
        height: 120px; /* Maintain circle shape */
    }
}
       
        /* Contact Section Styles */
        .contact {
            padding: 100px 9%;
            background-color:#6c0115 ;
            color: #d3af37;
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('../assets/images/contact-bg.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .contact-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            flex: 1;
            max-width: 600px;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #d3af37;
            position: relative;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 80px;
            height: 3px;
            background-color: #d3af37;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-item svg {
            margin-left: 15px;
            margin-right: 0;
            min-width: 24px;
        }

        .contact-item span {
            font-size: 1.1rem;
        }

        .company-info h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #d3af37;
        }

        .company-info p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .contact-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .contact-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 3px solid #d3af37;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
                gap: 40px;
            }

            .contact-info {
                max-width: 100%;
            }

            .contact-image {
                width: 100%;
            }
             .hero-img-left {
            position: absolute;
            left: -25%;
            bottom: 0%;
            width: 800px;
            height: auto;
            z-index: 1;
            opacity: 0;
            animation: slideInLeft 1s ease-out forwards;
            animation-delay: 0.5s;
            display: none;
        }

        .hero-img-right {
            position: absolute;
            right:4%;
            top: -10%;
            width: 850px;
            height: auto;
            z-index: 1;
            opacity: 0;
            animation: slideInRight 1s ease-out forwards;
            animation-delay: 1s;
            display: none;
        }
      #bee-model {
            position: fixed;
            width: 83%;
            height: 90%;
            pointer-events: none;
            z-index: 100;
            transition: transform 1s ease-out, opacity 0.5s ease;
            opacity: 0;
            transform: translateX(-100%);
            display: none;
        
             
        }
        }

        @media (max-width: 768px) {
            .contact {
                padding: 80px 5%;
            }

            .contact-info h2 {
                font-size: 2rem;
            }

            .company-info h3 {
                font-size: 1.5rem;
            }
            
        }

        @media (max-width: 480px) {
            .contact-item span {
                font-size: 1rem;
            }
        }
        /* Mobile styles */
@media (max-width: 600px) {
    .partner-logo img {
        max-width: 80%;  /* Scale down for mobile */
        height: auto;     /* Maintain aspect ratio */
    }

.hero-content h1 {
    font-size: 2rem;
    color: #d3af37;
    margin-bottom: 20px;
    text-shadow: 
        none;
    transform-style: preserve-3d;
    perspective: 500px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.5s;
    margin-top: -100px; /* Adjust this to move just the heading */
}
.logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
    margin-right: -50px;
}

}