/* Root CSS Variables */
:root {
    --deep-red: #970000;
    --dark-red: #b80000;
    --light-red: #ff0235;
    --white: #e2e2e2;
    --dark-gray: #1F1F1F;
    --light-gray: #c5c5c5;
    --medium-black: #000000;
    --overlay-brown: rgba(0, 0, 0, 0.1);
    --overlay-brown2: rgba(54, 54, 54, 0.822);
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: #1F1F1F;
}

/* About Us Page Specific Styles */
.about-black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.welcome-content {
    position: relative;
    z-index: 2;
}

.about-story-section {
    background: #151515;
    padding: 60px 20px;
}

.about-story-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-story-title {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.about-story-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-story-icon i {
    font-size: 36px;
    color: var(--deep-red);
    border: 2px solid var(--deep-red);
    border-radius: 50%;
    padding: 12px;
    background: transparent;
}

.about-story-table {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-collapse: separate;
    border-spacing: 30px 0;
    margin: 40px auto 0 auto;
    display: table;
    table-layout: fixed;
}

.about-story-table td {
    background: #232323;
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.8;
    padding: 30px 24px;
    border-radius: 10px;
    vertical-align: top;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    min-width: 220px;
    width: 1%;
    transition: transform 0.3s ease;
}

.about-story-table td p {
    text-align: left;
    width: 100%;
    margin: 0;
}

.about-story-icon-table {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-story-icon-table i {
    font-size: 22px;
    color: var(--deep-red);
    border: 2px solid var(--deep-red);
    border-radius: 50%;
    padding: 8px;
    background: transparent;
    transition: transform 0.25s cubic-bezier(.25,.8,.25,1);
}

.about-story-table-heading {
    color: var(--dark-red);
    font-size: 16px;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.25s cubic-bezier(.25,.8,.25,1);
}

.about-story-table td {
    position: relative;
}

.about-story-table td::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--deep-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-story-table td::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--deep-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-story-table td:hover .about-story-icon-table i {
    /* removed transform */
}

.about-story-table td:hover .about-story-table-heading {
    /* removed transform */
}

.about-story-table td:hover {
    transform: scale(1.05);
}

.about-story-table td:hover::before {
    opacity: 1;
}

.about-story-table td:hover::after {
    opacity: 1;
}

@media (max-width: 700px) {
    .about-story-table {
        border-spacing: 0 30px;
        table-layout: auto;
    }
    .about-story-table tr {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .about-story-table td {
        min-width: 0;
        width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
}

/* About Us Big Tabs Section */
.about-tabs-section {
    background: #181818;
    padding: 60px 20px 80px 20px;
}
.about-tabs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.about-tab {
    background: #232323;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
    text-align: center;
    cursor: default;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
}
.about-tab:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.about-tab-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--deep-red);
}
.about-tab-label {
    color: var(--light-gray);
    font-size: 22px;
    font-weight: 600;
    padding: 30px 0 30px 0;
    letter-spacing: 1px;
}

.about-portfolio-btn {
    background-color: var(--deep-red);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 16px;
    color: var(--deep-red);
    border: 1px solid var(--deep-red);
    border-radius: 50%;
    padding: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(151, 0, 0, 0.18);
    width: auto;
    max-width: 180px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.about-portfolio-btn:hover {
    background-color: var(--light-red);
    color: var(--deep-red);
    transform: scale(1.07);
}
.about-portfolio-btn {
    background-color: var(--deep-red);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    border: none;
    margin-top: 32px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(151, 0, 0, 0.18);
    width: auto;
    max-width: 180px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.about-portfolio-btn:hover {
    background-color: var(--light-red);
    color: var(--deep-red);
    transform: scale(1.07);
}

/* Header Styles */
.header {
    background-color: var(--dark-gray);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease, height 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    width: 250px;
    transition: transform 0.3s ease;
}

.social-media {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.social-media a {
    color: var(--white);
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease, font-size 0.3s ease;
    text-decoration: none;
}

.social-media a:hover {
    color: var(--dark-red);
    transform: scale(1.2);
}

.nav {
    display: flex;
    gap: 5px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease, font-size 0.3s ease, transform 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: var(--dark-red);
    border-bottom: 2px solid transparent;
    transform: scale(1.1);
}

.nav-link.active {
    border-bottom: 1px solid var(--light-red);
}

.order-link {
    color: var(--light-red);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.order-link i {
    color: var(--light-red);
    margin-right: 5px;
}

.order-link:hover {
    color: #ac9c43;
    border-bottom: 2px solid transparent;
    transform: scale(1.1);
}

.order-link:hover i {
    color: #ac9c43;
}

.order-button {
    background-color: var(--deep-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin-left: auto;
}

.order-button:hover {
    background-color: var(--light-red);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(151, 0, 0, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-menu {
    display: contents;
}

.header-menu .social-media {
    display: flex;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.header-menu .nav {
    display: flex;
    gap: 20px;
}

/* Welcome Section */
.welcome-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.welcome-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.welcome-overlay {
    background: var(--overlay-brown);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.welcome-content {
    text-align: center;
    color: var(--white);
    animation: fadeIn 0.8s ease-in;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.welcome-message {
    font-size: 48px;
    margin-bottom: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(99, 99, 99, 0.5);
    animation: slideUp 0.8s ease-out;
}

.welcome-description {
    font-size: 18px;
    margin: 0;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.welcome-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--deep-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--deep-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: var(--deep-red);
    color: var(--white);
    border: 2px solid var(--deep-red);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--deep-red);
    border: 2px solid var(--deep-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    outline: none;
}

/* Vision, Mission, Theme Section */
.vision-mission-section {
    background-color: var(--dark-gray);
    padding: 80px 20px;
    position: relative;
}

.vision-mission-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card,
.mission-card,
.theme-card {
    background-color: var(--dark-gray);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    position: relative;
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--deep-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 36px;
    color: var(--deep-red);
    transition: all 0.3s ease;
}

.vision-card:hover .icon-circle,
.mission-card:hover .icon-circle,
.theme-card:hover .icon-circle {
    background-color: var(--deep-red);
    color: white;
}

.vision-card::after,
.mission-card::after,
.theme-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background-color: var(--deep-red);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 2px;
}

.vision-card:hover,
.mission-card:hover,
.theme-card:hover {
    transform: translateY(-10px);
}

.vision-card:hover::after,
.mission-card:hover::after,
.theme-card:hover::after {
    opacity: 1;
}

.vision-card h3,
.mission-card h3,
.theme-card h3 {
    color: var(--deep-red);
    margin-bottom: 20px;
    font-size: 24px;
}

.vision-card p,
.mission-card p,
.theme-card p {
    color: #666;
    line-height: 1.8;
}

/* Tabs Section */
.tabs-section {
    padding: 80px 20px;
    background-color: transparent;
    position: relative;
}

.tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-brown2);
    pointer-events: none;
    z-index: 0;
}

.tabs-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tab {
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.tab:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.tab-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    position: relative;
}

.tab-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 5;
}

.tab-overlay i {
    font-size: 45px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes iconScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.tab:hover .tab-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.tab:hover .tab-overlay i {
    opacity: 1;
    animation: iconScale 0.6s ease-in-out infinite;
}

.tab:hover .tab-image {
    transform: scale(1.05);
}

.tab h3 {
    color: var(--light-gray);
    padding: 30px 20px 20px;
    font-size: 22px;
}

.tab .btn-explore {
    background-color: var(--deep-red);
    color: var(--white);
    padding: 12px 30px;
    margin: auto;
    font-size: 14px;
    width: fit-content;
}

.tab .btn-explore:hover {
    background-color: var(--white);
    color: var(--deep-red);
    outline: none;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-logo h3 {
    color: var(--dark-red);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-logo p,
.footer-contact p {
    color: #c5c5c5;
    line-height: 1.8;
}

.footer-contact h4 {
    color: var(--dark-red);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #999;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
/* Tablet Breakpoint - switches to mobile view */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .logo img {
        width: 180px;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 0;
    }

    .header-menu {
        display: none !important;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.1);
        order: 3;
    }

    .header-menu.active {
        display: flex !important;
    }

    .header-menu .social-media {
        order: 1;
        flex-direction: row;
        gap: 15px;
    }

    .header-menu .nav {
        order: 2;
        flex-direction: column;
        gap: 15px;
    }

    .social-media {
        order: 2;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
        order: 3;
    }

    .nav-link:hover {
        transform: scale(0.95);
    }

    .welcome-message {
        font-size: 36px;
    }

    .welcome-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .welcome-buttons .btn {
        width: 40%;
        min-width: 120px;
    }

    .btn {
        width: 100%;
    }

    .tabs-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
    .logo img {
        width: 150px;
    }

    .nav-link {
        font-size: 14px;
    }

    .social-media {
        gap: 15px;
    }

    .social-media a {
        font-size: 16px;
    }

    .welcome-message {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Background Video Styles - Reusable for all pages */
.page-background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.tabs-background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.btn {
    padding: 12px 25px;
    font-size: 14px;
}

/* Scroll Down Button */
.scroll-down-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--deep-red);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.85);
    }
}

.scroll-down-btn:hover {
    background: rgba(151, 0, 0, 0.1);
    transform: scale(1.1);
}

.triangle-down {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid var(--deep-red);
}

/* Services Tabs Styling */
.services-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.service-tab-btn {
    background: var(--dark-gray);
    color: var(--light-gray);
    border: 2px solid var(--deep-red);
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.service-tab-btn:hover {
    background: var(--deep-red);
    color: var(--white);
    transform: scale(1.05);
}

.service-tab-btn.active {
    background: var(--deep-red);
    color: var(--white);
}

.services-tab-content {
    position: relative;
}

.service-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.service-tab-pane.active {
    display: block;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #232323;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.service-list {
    color: var(--light-gray);
}

.service-list h3 {
    color: var(--deep-red);
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.service-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--light-gray);
    position: relative;
    padding-left: 25px;
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: '▶';
    color: var(--deep-red);
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 13px;
}

.service-list li:hover {
    color: #ac9c43;
    transform: scale(1.08);
    cursor: pointer;
}

.service-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
}

.gallery-btn {
    background: var(--deep-red);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(151, 0, 0, 0.3);
}

.gallery-btn:hover {
    background: var(--light-red);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(151, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .welcome-section {
        min-height: 400px;
    }

    .welcome-overlay {
        padding: 0;
    }

    .welcome-content {
        width: 100%;
        max-width: 100%;
        padding: 0 30px;
        box-sizing: border-box;
    }

    .welcome-message {
        font-size: 32px;
    }

    .welcome-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .scroll-down-btn {
        width: 50px;
        height: 50px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-tabs {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        justify-content: center;
        min-height: 80px;
        padding: 15px 0;
    }

    .service-tab-btn {
        width: auto;
        min-width: 85px;
        font-size: 0;
        padding: 18px 12px;
    }

    .service-tab-btn i {
        font-size: 24px;
        margin-right: 0;
    }
}


