* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    overflow-x: hidden;
    cursor: none;
}

@font-face {
    font-family: 'clash';
    src: url('ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Regular.otf');
}

@font-face {
    font-family: 'norman';
    src: url('fonnts.com-Norman-.otf');
}

@font-face {
    font-family: 'variable';
    src: url('ClashDisplay_Complete/Fonts/TTF/ClashDisplay-Variable.ttf');
}

* {}


body {
    /* font-family: Arial, sans-serif; */
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-color: #ffffff; */
    overflow-x: hidden;
    cursor: none;

}

/* Custom Cursor Styles */
.cursor {
    width: 20px;
    height: 20px;
    /* border: 2px solid #b44414; */
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    background-color: #b44414;
    z-index: 9999;
    transition: transform 0.2s ease;
    margin: -10px;
}


.cursor::after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    z-index: 9999;
}


/* Navbar Styles */
.navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    gap: 60px;
    top: 0;
    z-index: 100;
    color: white;
    transition: transform 0.4s ease, background-color 0.3s ease;
    background-color: #b44414;
}

.nav-links {
    display: flex;
    gap: 60px;
}

/* Add a class for hiding navbar */
.navbar--hidden {
    transform: translateY(-100%);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'variable';
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}


.nav-logo {
    height: 40px;
    width: auto;
}

/* Hide hamburger and mobile menu by default */
.hamburger,
.mobile-menu-overlay {
    display: none;
}

/* Mobile Navigation Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.hamburger div {
    width: 30px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.4s;
}

/* Hamburger animation when menu is active */
.hamburger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .line2 {
    opacity: 0;
}

.hamburger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #b44414;
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    display: flex;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 1002;
}

.close-icon:hover {
    opacity: 0.8;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mobile-menu-links li {
    margin: 30px 0;
}

.mobile-menu-links a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'variable', serif;
    transition: opacity 0.3s ease;
    display: block;
    padding: 10px 0;
}

.mobile-menu-links a:hover {
    opacity: 0.8;
}


/* Responsive: Show hamburger on mobile, hide nav links */
@media (max-width: 900px) {
    body {
        width: 100%;
        height: auto;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        cursor: auto;
    }

    .cursor {
        display: none;
    }

    * {
        overflow-x: hidden;
        /* cursor: none; */

    }


    /* Mobile Responsive Styles */
    @media screen and (max-width: 768px) {
        .navbar {
            width: 100vw;
            padding: 20px 20px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        .hamburger {
            display: flex;
        }

        .nav-links {
            display: none !important;
        }

        .nav-links.active {
            width: 100%;
            height: 50vh;
            display: flex;
            justify-content: center;
            align-items: center;
            /* margin: 15px 0; */
        }

        .nav-link {
            display: flex;
            justify-content: center;
            align-items: center;
            /* margin: 15px 0; */
            font-size: 1rem;
        }

        .nav-logo {
            height: 40px;
        }

        .hamburger div {
            width: 30px;
            height: 2px;
            background-color: white;
            margin: 3px 0PX;
            transition: all 0.3s ease;
        }

        .hamburger {
            display: flex;
            position: absolute;
            right: 30px;
            /* top: 30px; */
        }

    }
}



/* Animation Keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced animations for corporate section */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Enhanced main section styles */
main {
    width: 100vw;
    height: 120vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10rem;
    position: relative;
    overflow: hidden;
}

#main-title {
    width: 50%;
    font-size: 8rem;
    font-family: 'clash';
    font-weight: 500;
    color: #B44414;
    text-align: center;
    margin-bottom: 40px;
    opacity: 1;
    transform: translateY(0);
    z-index: 999;
    position: absolute;
    top: 15%;
}

#main-title.visible {
    opacity: 1;
    transform: translateY(0);
}

#main-title span {
    display: inline-block;
}

.image-row {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
}

.image-container-1 {
    width: 600px;
    height: 700px;
    overflow: hidden;
    background: #f5f5f5;
    position: absolute;
    right: 34%;
    top: 15%;
    z-index: 1;
    opacity: 1;
    will-change: transform;
    transform: translateZ(0);
}

.image-container-2 {
    width: 500px;
    height: 700px;
    overflow: hidden;
    background: #f5f5f5;
    position: absolute;
    right: 0;
    top: 40%;
    z-index: 2;
    opacity: 1;
    will-change: transform;
    transform: translateZ(0);
}

.image-container-3 {
    width: 500px;
    height: 700px;
    overflow: hidden;
    background: #f5f5f5;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 3;
    opacity: 1;
    will-change: transform;
    transform: translateZ(0);
}

.image-container-1 img,
.image-container-2 img,
.image-container-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive styles */
@media only screen and (max-width: 480px) {
    main {
        width: 100vw;
        height: 140vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 10rem;
        position: relative;
        overflow: hidden;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }

    #main-title {
        width: 100%;
        font-size: 2.2rem;
        font-family: 'clash';
        font-weight: 600;
        color: #B44414;
        text-align: center;
        top: 10%;
    }

    #main-title.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .image-row {
        width: 100%;
        height: 110vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* gap: 20px; */
        /* margin-top: 2rem; */
    }

    .image-container-1 {
        width: fit-content;
        height: fit-content;
        position: relative;
        right: 0;
        will-change: transform;
        transform: translateZ(0);
        top: 10%;
    }

    .image-container-2 {
        width: fit-content;
        height: fit-content;
        position: relative;
        will-change: transform;
        transform: translateZ(0);
        top: 17%;
    }

    .image-container-3 {
        width: fit-content;
        height: fit-content;
        position: relative;
        will-change: transform;
        transform: translateZ(0);
        top: 23%;
    }

    .image-container-1 img,
    .image-container-2 img,
    .image-container-3 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/* CORPORATE */
.corporate-video-section {
    padding-top: 1rem;
    /* background: #fff; */
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.corporate-video-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.corporate-title {
    text-align: center;
    font-size: 5rem;
    color: #B44414;
    font-family: 'clash';
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    transition-delay: 0.2s;
}

.corporate-video-section.animate .corporate-title {
    opacity: 1;
    transform: translateY(0);
}

.corporate-content {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    /* max-width: 1200px; */
    margin: 0 auto;
    gap: 60px;
}

.corporate-image {
    opacity: 0;
    transform: translateX(-50px) scale(0.9);
    transition: all 0.8s ease-out;
    transition-delay: 0.4s;
}

.corporate-video-section.animate .corporate-image {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.corporate-image img {
    width: 600px;
    height: 700px;
    object-fit: cover;
    /* border-radius: 10px; */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); */
    transition: transform 0.3s ease;
}

.corporate-image img:hover {
    transform: scale(1.02);
}

.corporate-text {
    max-width: 700px;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    color: #000000;
    font-family: 'variable';
    line-height: 1.6;
    /* background: #fff; */
    padding: 30px 20px;
    border-radius: 8px;
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); */
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
    transition-delay: 0.6s;
}

.corporate-video-section.animate .corporate-text {
    opacity: 1;
    transform: translateX(0);
}


/* Responsive styles for corporate section */
@media only screen and (max-width: 768px) {
    .corporate-video-section {
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 10px;
        padding-top: 0rem;
    }

    .corporate-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .corporate-content {
        width: 100vw;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 40px;
        margin: 0;
    }

    .corporate-text {
        font-size: 1rem;
        padding: 20px 15px;
        letter-spacing: 1px;
    }
}

@media only screen and (max-width: 480px) {
    .corporate-title {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .corporate-image img {
        width: 90vw;
        height: 300px;
    }

    .corporate-text {
        width: 90%;
        text-align: start;
        font-size: 1rem;
        padding: 0px;
    }
}



/* HISTORY SECTION */


/* Enhanced History Section Styles */
.history-section {
    padding: 120px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    /* background-color: #ffffff; */
    position: relative;
    overflow: hidden;
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.history-title,
.history-subtitle {
    opacity: 0;
    transform: translateX(-50px);
    /* Remove old transition */
    transition: none;
    /* Add slide in animation */
    animation: slideInLeft 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.history-subtitle {
    animation-delay: 0.3s;
}

.animate.history-title,
.animate.history-subtitle {
    opacity: 1;
    transform: translateX(0);
    /* Animation will handle this, but keep for safety */
}

.history-title {
    font-size: 4rem;
    font-family: 'clash';
    color: #B44414;
    text-align: center;
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
    font-weight: 500;
}

.history-subtitle {
    font-size: 1.2rem;
    color: #000;
    opacity: 0.9;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 80px;
    font-family: 'variable';
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Styles */
.history-timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #B44414 0%, #ff6b35 50%, #B44414 100%);
    transform: translateX(-50%);
    z-index: 1;
    transform-origin: top;
}

.history-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 1;
    transform: translateY(0);
}

.history-item:nth-child(odd) .history-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.history-item:nth-child(even) .history-content {
    margin-left: 55%;
    margin-right: 0;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #B44414;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(180, 68, 20, 0.2);
    transition: all 0.3s ease;
}

.timeline-dot:hover {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 0 8px rgba(180, 68, 20, 0.3);
}

.history-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.history-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #B44414, #ff6b35);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'variable';
    position: relative;
    overflow: hidden;
}

.year-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.year-badge:hover::before {
    left: 100%;
}

.history-item-title {
    font-size: 1.8rem;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 15px;
    font-family: 'clash';
    font-weight: 600;
}

.history-item-text {
    font-size: 1rem;
    letter-spacing: 1.5px;
    line-height: 1.6;
    color: #000000;
    opacity: 0.9;
    margin-bottom: 20px;
    font-family: 'variable';
}

.history-milestone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(180, 68, 20, 0.1);
    border-radius: 10px;
    border-left: 4px solid #B44414;
    position: relative;
    overflow: hidden;
}

.history-milestone::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(180, 68, 20, 0.1), transparent);
    transition: left 0.5s ease;
}

.history-milestone:hover::after {
    left: 100%;
}

.milestone-icon {
    font-size: 1.2rem;
}

.milestone-text {
    font-size: 0.9rem;
    color: #B44414;
    font-weight: 600;
    font-family: 'variable';
}

/* Stats Section */
.history-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(180, 68, 20, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.stat-item:hover::before {
    transform: scale(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #B44414;
    font-family: 'clash';
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-family: 'variable';
    font-weight: 500;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .history-section {
        padding: 60px 0;
    }

    .history-container {
        padding: 0 15px;
    }

    .history-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .history-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
        line-height: 1.4;
    }

    .history-timeline {
        padding: 30px 0;
    }

    .timeline-line {
        left: 25px;
        transform: none;
        width: 3px;
    }

    .timeline-dot {
        left: 25px;
        transform: none;
        width: 18px;
        height: 18px;
        border-width: 3px;
    }

    .timeline-dot::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
    }

    .history-item {
        margin-bottom: 60px;
    }

    .history-item:nth-child(odd) .history-content,
    .history-item:nth-child(even) .history-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
    }

    .history-content {
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .history-content:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .year-badge {
        padding: 6px 14px;
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .history-item-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .history-item-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 18px;
        letter-spacing: 1px;
    }

    .history-milestone {
        padding: 8px 12px;
        gap: 8px;
    }

    .milestone-icon {
        font-size: 1.1rem;
    }

    .milestone-text {
        font-size: 0.85rem;
    }

    .history-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
        padding: 30px 0;
    }

    .stat-item {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

@media screen and (max-width: 480px) {
    .history-section {
        padding: 50px 0;
    }

    .history-container {
        padding: 0 10px;
    }

    .history-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .history-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .history-timeline {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 25px 10px;
    }

    .timeline-line {
        display: none;
        left: 20px;
        width: 2px;
    }

    .timeline-dot {
        display: none;
        left: 20px;
        width: 16px;
        height: 16px;
        border-width: 2px;
    }

    .timeline-dot::before {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }

    .history-item {
        margin-bottom: 50px;
    }

    .history-item:nth-child(odd) .history-content,
    .history-item:nth-child(even) .history-content {
        margin-left: 0px;
        margin-right: 0;
    }

    .history-content {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .year-badge {
        padding: 5px 12px;
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .history-item-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .history-item-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
        letter-spacing: 0.8px;
    }

    .history-milestone {
        padding: 6px 10px;
        gap: 6px;
    }

    .milestone-icon {
        font-size: 1rem;
    }

    .milestone-text {
        font-size: 0.8rem;
    }

    .history-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 0px;
        padding: 25px 10px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .cursor {
        display: none;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        cursor: auto;
    }
}

/* Extra small devices */
@media screen and (max-width: 360px) {
    .history-title {
        font-size: 1.8rem;
    }

    .history-subtitle {
        font-size: 0.9rem;
    }

    .timeline-line {
        left: 15px;
    }

    .timeline-dot {
        left: 15px;
        width: 14px;
        height: 14px;
    }

    .history-item:nth-child(odd) .history-content,
    .history-item:nth-child(even) .history-content {
        margin-left: 35px;
    }

    .history-content {
        padding: 15px 12px;
    }

    .history-item-title {
        font-size: 1.2rem;
    }

    .history-item-text {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Timeline Animation */
.history-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.77, 0, .18, 1), transform 0.7s cubic-bezier(.77, 0, .18, 1);
}

.history-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    scale: 0.5;
    opacity: 0.5;
    transition: scale 0.5s, opacity 0.5s;
}

.history-item.visible .timeline-dot {
    scale: 1;
    opacity: 1;
}

/* Stat Counter Animation */
.stat-number {
    font-size: 2em;
    font-weight: bold;
    transition: color 0.3s;
}

.stat-number.animated {
    color: #b44414;
}


/* TECHNOLOGY SECTION */

.technology-section {
    width: 100vw;
    background: #b44414;
    color: #fff;
    padding: 80px 0px;
    min-height: 100vh;
    position: relative;
}

.technology-title {
    text-align: center;
    font-size: 6rem;
    color: #fff;
    margin-bottom: 40px;
    font-family: 'clash';
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.technology-content {
    width: 90vw;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    /* max-width: 1600px; */
    margin: 0 auto;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.technology-image img {
    width: 600px;
    height: 800px;
    object-fit: cover;
    /* border-radius: 8px; */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); */
    opacity: 0;
    animation: scaleIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

.technology-text {
    max-width: 900px;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    margin-top: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.technology-text p {
    font-family: variable;
    font-size: 1.3rem;
    letter-spacing: 2px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
}

.technology-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 50px;
}

.technology-list li {
    font-family: variable;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1.5px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.technology-list li:not(:last-child) {
    /* border-bottom: 1px solid #444; */
    padding-bottom: 10px;
}

.technology-list li:nth-child(1) {
    animation-delay: 0.6s;
}

.technology-list li:nth-child(2) {
    animation-delay: 0.7s;
}

.technology-list li:nth-child(3) {
    animation-delay: 0.8s;
}

.technology-list li:nth-child(4) {
    animation-delay: 0.9s;
}

.technology-list li:nth-child(5) {
    animation-delay: 1s;
}

.technology-list li:nth-child(6) {
    animation-delay: 1.1s;
}

.technology-list li:nth-child(7) {
    animation-delay: 1.2s;
}

.technology-list li:nth-child(8) {
    animation-delay: 1.3s;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


.icd-main {
    width: 100vw;
    height: 220vh;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    position: relative;
    padding: 2rem 0;
}

.title-section {
    width: 90vw;
    margin-top: 5rem;
    left: 100px;
    position: relative;
}

.title-section h1 {
    font-size: 6rem;
    color: #B44414;
    font-weight: 500;
    font-family: clash;
    letter-spacing: 2px;
}

.title-section h4 {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 500;
    font-family: variable;
    letter-spacing: 2px;
}

.image-section-1 {
    position: absolute;
    left: 200px;
    top: 28rem;
    width: 450px;
    height: 800px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.image-section-1 img {
    width: 100%;
    height: 70%;
}

.image-section-1 p {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: variable;
    color: #000000;
    line-height: 1.3rem;
    letter-spacing: 2px;
    padding: 1rem 0px;
}

.image-section-2 {
    position: absolute;
    right: 200px;
    top: 10rem;
    width: 450px;
    height: 800px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.image-section-2 img {
    width: 100%;
    height: 80%;
}

.image-section-2 p {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: variable;
    color: #000000;
    line-height: 1.3rem;
    letter-spacing: 2px;
    padding: 1rem 0px;
    overflow: hidden;
}


.image-section-3 {
    position: absolute;
    right: 200px;
    top: 70rem;
    width: 550px;
    height: 800px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.image-section-3 img {
    width: 100%;
    height: 80%;
}

.image-section-3 p {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: variable;
    color: #000000;
    line-height: 1.3rem;
    letter-spacing: 2px;
    padding: 1rem 0px;
}

@media only screen and (max-width: 768px) {
    .technology-section {
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background: #b44414;
        color: #fff;
        padding: 40px 0px;
        padding-left: 10px;
        padding-right: 10px;
        min-height: 100vh;
        position: relative;
    }

    .technology-title {
        text-align: center;
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 40px;
        font-family: 'clash';
        font-weight: 500;
        opacity: 0;
        animation: fadeInUp 1s ease-out forwards;
    }

    .technology-content {
        padding: 10px;
        width: 100vw;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 0px;
    }

    .technology-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* border-radius: 8px; */
        /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); */
        opacity: 0;
        animation: scaleIn 1s ease-out forwards;
        animation-delay: 0.3s;
    }

    .technology-text {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
        gap: 40px;
        margin-top: 0px;
        opacity: 0;
        animation: fadeInUp 1s ease-out forwards;
        animation-delay: 0.5s;
    }

    .technology-text p {
        font-family: variable;
        font-size: 1rem;
        letter-spacing: 2px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: #fff;
    }

    .technology-list {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 50px;
    }

    .technology-list li {
        font-family: variable;
        font-size: 1rem;
        margin-bottom: 10px;
        color: #fff;
        font-weight: 400;
        letter-spacing: 1.5px;
        opacity: 0;
        animation: fadeInUp 0.5s ease-out forwards;
    }

    .technology-list li:not(:last-child) {
        /* border-bottom: 1px solid #444; */
        padding-bottom: 10px;
    }

    .technology-list li:nth-child(1) {
        animation-delay: 0.6s;
    }

    .technology-list li:nth-child(2) {
        animation-delay: 0.7s;
    }

    .technology-list li:nth-child(3) {
        animation-delay: 0.8s;
    }

    .technology-list li:nth-child(4) {
        animation-delay: 0.9s;
    }

    .technology-list li:nth-child(5) {
        animation-delay: 1s;
    }

    .technology-list li:nth-child(6) {
        animation-delay: 1.1s;
    }

    .technology-list li:nth-child(7) {
        animation-delay: 1.2s;
    }

    .technology-list li:nth-child(8) {
        animation-delay: 1.3s;
    }

}

@media only screen and (max-width: 480px) {
    .icd-main {
        width: 100vw;
        height: 200vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: relative;
        padding: 10px;
    }

    .title-section {
        width: 100vw;
        height: 10%;
        display: flex;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 1rem;
        margin-bottom: 1rem;
        left: 0px;
        position: relative;
        overflow: hidden;
    }

    .title-section h1 {
        font-size: 2.5rem;
        color: #B44414;
        font-weight: 500;
        font-family: clash;
        letter-spacing: 2px;
        overflow: hidden;
    }

    .title-section h4 {
        font-size: 1rem;
        color: #000000;
        font-weight: 500;
        font-family: variable;
        letter-spacing: 2px;
    }

    .image-section-1 {
        position: relative;
        width: 100%;
        height: 600px;
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
    }

    .image-section-1 img {
        width: 100%;
        height: 50%;
    }

    .image-section-1 p {
        font-size: 1rem;
        font-weight: 500;
        font-family: variable;
        color: #000000;
        line-height: 1.2rem;
        letter-spacing: 1.5px;
        padding: 10px 0px;
    }

    .image-section-2 {
        position: relative;
        width: 100%;
        height: 700px;
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
    }

    .image-section-2 img {
        width: 100%;
        height: 50%;
    }

    .image-section-2 p {
        font-size: 1rem;
        font-weight: 500;
        font-family: variable;
        color: #000000;
        line-height: 1.2rem;
        letter-spacing: 1.5px;
        padding: 10px 0px;
    }

    .image-section-3 {
        position: relative;
        width: 100%;
        height: 700px;
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
    }

    .image-section-3 img {
        width: 100%;
        height: 50%;
    }

    .image-section-3 p {
        font-size: 1rem;
        font-weight: 500;
        font-family: variable;
        color: #000000;
        line-height: 1.2rem;
        letter-spacing: 1.5px;
        padding: 10px 0px;
    }

}


/* Footer Styles */
.footer-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: #B44414;
    color: #ffffff;
    padding: 60px 80px;
    width: 100%;
    font-family: 'variable', sans-serif;
}

.footer-container {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    width: 90vw;
}

.footer-logo-section {
    flex: 100%;
    margin-bottom: 40px;
    max-width: 550px;
    /* margin-right: 50px; */
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-family: 'variable';
    /* width: 80%; */
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-social {
    width: 90vw;
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #B44414;
}

.footer-links-section {
    display: flex;
    /* gap: 20px; */
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links-column {
    /* flex: 0 0 calc(33.333% - 50px); */
    width: 550px;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 20px;
    padding-top: 0px;
}

.footer-column-title {
    font-family: 'clash';
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #B44414;
}

.footerlink {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.footer-links {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact-info li {
    max-width: 100%;
    letter-spacing: 2px;
    margin-bottom: 0.875rem;
    cursor: none;
}

.footer-links a {
    width: 100%;
    white-space: nowrap;
    font-family: 'variable';
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: none;
}

.footer-links a:hover {
    opacity: 1;
    color: #000000;
    /* padding-left: 5px; */
}

.footer-contact-info li {
    font-family: 'variable';
    font-size: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact-info i {
    color: #B44414;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100vw;
    /* margin: 0 auto; */
}

.copyright {
    align-items: start;
    font-family: 'variable';
    font-size: 1rem;
    letter-spacing: 2px;
    margin-left: 100px;
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 1rem;
    font-family: variable;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    margin-right: 200px;
}

.footer-bottom-links a:hover {
    opacity: 1;
}



/* Responsive Footer */
@media only screen and (max-width: 992px) {


    .footer-column-title {
        overflow: hidden;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-logo-section {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .footer-links-section {
        width: 100%;

    }

    .footer-links-column {
        flex: 0 0 calc(50% - 15px);
    }
}

@media only screen and (max-width: 768px) {
    .footer-contact-info li {
        font-size: 1rem;
    }

    .footer-links-column {
        flex: 0 0 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: start;
        padding: 20px;
    }


    /* Footer Styles */
    .footer-container {
        /* padding: 40px 20px; */
    }

    .footer-logo-section {
        /* text-align: center; */
        margin-bottom: 30px;
    }

    .footer-description {
        font-size: 1rem;
    }

    .footer-links {
        padding-bottom: 10px;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-links-section {
        flex-direction: column;
        /* gap: 30px; */
    }

    .footer-links-column {
        /* width: 100%; */
        /* text-align: center; */
        padding: 0%;
    }

    .footer-bottom-links a {
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .copyright {
        align-items: start;
        text-align: start;
        padding: 0;
        margin: 0;
        padding-left: 20px;
    }
}