* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000010;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --gold: #d4af37;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #070815;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #070815;
    /* backdrop-filter: blur(10px); */
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.menu-list li {
    /* border-right: 5px solid var(--white); */
    padding-right: 20px;
}

.menu-list li:last-child {
    border-right: none;
    padding-right: 0;
}

.menu-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.menu-link:hover {
    color: var(--gold);
}

.menu-link.active {
    color: #C88033;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: 90px;
    overflow: hidden;
}

.hero-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #070815;
    background-image: url('patrnBg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-content {
    /* max-width: 900px; */
    margin: 0 ;
    text-align: start;

}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Roboto Slab', serif;
}

.about-content p:last-child {
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
    margin-top: 30px;
}

/* Media Section */
.media-section {
    padding: 80px 0;
    background: #121212;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    font-family: 'Roboto Slab', serif;
}

.media-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 10px;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 10px;
}

.carousel-slide {
    min-width: calc(33.333% - 7px);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide .video-wrapper {
    width: 100%;
    max-width: 350px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 aspect ratio (portrait/vertical) */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.media-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-pagination .pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-pagination .pagination-bullet.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Masterpieces Section */
.masterpieces-section {
    padding: 80px 0;
    background: #070815;
}

.masterpieces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.masterpiece-card {
    text-align: center;
    background-color: #181716;
    padding-block: 2rem;
}

.flip-box {
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 30px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.flip-box-front {
    background-color: #181716;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.flip-box-front img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.flip-box-back {
    background-color: #181716;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotateY(180deg);
}

.flip-box-back img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.masterpiece-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    font-family: 'Roboto Slab', serif;
}

.masterpiece-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

.btn-read-more {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.btn-read-more:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quote Section */
.quote-section {
    position: relative;
    min-height: 600px;
    background-image: url('111.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.quote-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 500px;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 50px;
    margin-left: 5%;
}

.quote-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin: 0;
}

/* Footer */
.footer {
    background: #070815;
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    width: auto;
}

.footer-social {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.btn-contact:hover {
    background: var(--white);
    color: #000000;
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    padding-top: 0;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.5px;
    width: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.footer-copyright p {
    margin: 0;
}

.footer-certifications {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.footer-certifications img {
    height: 100px;
    width: auto;
    opacity: 1;
    transition: var(--transition);
}

.footer-certifications img:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-slide {
        min-width: calc(50% - 5px);
    }
    
    .carousel-slide .video-wrapper {
        max-width: 320px;
    }
    
    .masterpieces-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-certifications {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .menu-list li {
        border-right: none;
        padding-right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        margin-top: 75px;
    }
    
    .carousel-slide {
        min-width: 100%;
    }
    
    .carousel-slide .video-wrapper {
        max-width: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content p {
        font-size: 16px;
    }
    
    .quote-section {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .quote-overlay {
        max-width: 90%;
        margin-left: 5%;
        padding: 30px 35px;
        top: 50%;
    }
    
    .quote-text {
        font-size: 18px;
        line-height: 1.7;
    }
    
    .flip-box {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .masterpieces-grid {
        gap: 30px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .quote-section {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .quote-overlay {
        max-width: 95%;
        margin-left: 2.5%;
        padding: 25px 30px;
    }
    
    .quote-text {
        font-size: 16px;
        line-height: 1.6;
    }
}
