/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Declarations */
@font-face {
    font-family: 'Garet';
    src: url('fonts/Garet-Heavy.woff2') format('woff2'),
         url('fonts/Garet-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Garet';
    src: url('../fonts/Garet-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CopperplateCC-Regular';
    src: url('../fonts/Copperplate-Regular.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CopperplateCC-Bold';
    src: url('../fonts/CopperplateCC-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CopperplateCC-Heavy';
    src: url('../fonts/CopperplateCC-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Horizon';
    src: url('../fonts/horizon.otf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Body & Background */
body {
    position: relative;
    min-height: 110vh;
    font-family: 'Garet', Arial, sans-serif;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 2;
}

body::before {
    content: "";
    background-image: url('../IMG/pattern.png');
    background-size: 100% auto;
    background-attachment: scroll;
    background-repeat: repeat;
    background-position: top center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Layout Components */
.first-page {
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Video Section */
.video-section {
    margin-top: -175px;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

/* Clients & Stats Section */
.clients-stats-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    padding: 60px 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.clients-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
    min-width: 260px;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    height: 100px;
    width: auto;
    max-width: 220px;
    margin-bottom: 10px;
    object-fit: contain;
}

.client-number {
    font-family: 'League Spartan', sans-serif;
    color: #63629B;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 5px;
    text-align: center;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    flex: 1;
}

.stat-card {
    background: #3D3D85;
background: linear-gradient(90deg, rgba(61, 61, 133, 1) 0%, rgba(149, 148, 207, 1) 100%);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(108, 99, 181, 0.2);
    padding: 36px 32px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 95%;
    position: relative;
    z-index: 2;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(108, 99, 181, 0.3);
}

.stat-number {
  font-family: 'Horizon', sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.30)
}
.stat-desc {
    font-size: 1.15rem;
    line-height: 1.5;
}

/* Mobile Menu */
.menu-btn {
    display: none;
    cursor: pointer;
    padding: 15px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: transparent;
    border: none;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.clients-logos-mob {
    display: none;
}

/* Tablet Styles (1200px and below) */
@media (max-width: 1200px) {

    .video-section {
        margin-top: -185px;
        }

    .clients-stats-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 50px;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 600px;
        gap: 30px;
    }

    .stat-card {
        width: 100%;
        max-width: 100%;
    }

    .clients-logos {
        flex-direction: row;
        gap: 40px;
        min-width: auto;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .client-logo {
        min-width: 200px;
    }

    .clients-logos-mob {
        display: none;
    }
}

/* Small Tablet Styles (900px and below) */
@media (max-width: 900px) {
    .video-section {
    margin-top: -100px;
    }
    .clients-stats-section {
        padding: 30px 15px;
    }

    .clients-logos {
        flex-direction: column;
        gap: 60px;
    }

    .client-logo img {
        height: 80px;
    }

    .stat-card {
        padding: 30px 25px;
        min-height: 250px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-desc {
        font-size: 1.1rem;
    }

    .menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 101;
        background: #3D3D85;
        border-radius: 8px;
        padding: 10px;
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    
    .video-section {
        margin-top: -90px;
        }
    
    .clients-stats-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 10px 0 10px;
        gap: 0;
    }

    .stats-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        width: 100%;
        max-width: 100%;
        margin: 40px 0;
    }

    .stat-card {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
        text-align: left;
        padding: 24px 15px 20px 15px;
        min-height: 180px;
        background: #3D3D85;
background: linear-gradient(90deg, rgba(61, 61, 133, 1) 0%, rgba(149, 148, 207, 1) 100%);
        color: #fff;
    }

    .stat-number {
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 10px;
        letter-spacing: 1px;
        color: #fff;
    }

    .stat-desc {
        font-size: 0.95rem;
        line-height: 1.4;
        font-weight: 400;
        color: #fff;
    }

    .clients-logos {
        display: none;
    }
    
    .clients-logos-mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }
    
    .clients-logos-mob-top {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 20px;
        flex-wrap: nowrap;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .clients-logos-mob-bottom {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .clients-logos-mob .client-logo {
        flex: 1;
        min-width: 0;
        padding: 10px;
    }

    .clients-logos-mob .client-logo img {
        height: 60px;
        max-width: 100%;
    }

    .clients-logos-mob .client-number {
        font-size: 1.1rem;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {

    .video-section {
        margin-top: -30px;
        }
    

    .clients-stats-section {
        padding: 20px 8px;
    }

    .stats-cards {
        gap: 18px;
        margin: 30px 0;
    }

    .stat-card {
        padding: 20px 12px 16px 12px;
        min-height: 160px;
    }

    .stat-number {
        font-size: 1.9rem;
        margin-bottom: 8px;
    }

    .stat-desc {
        font-size: 0.6rem;
        line-height: 1.3;
    }

    .clients-logos-mob .client-logo {
        padding: 8px;
    }

    .clients-logos-mob .client-logo img {
        height: 50px;
    }

    .clients-logos-mob .client-number {
        font-size: 1rem;
    }

    .clients-logos-mob-top {
        gap: 15px;
        margin-bottom: 15px;
    }
}

/* Extra Small Mobile Styles (300px and below) */
@media (max-width: 300px) {
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 18px;
        min-height: 140px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-desc {
        font-size: 0.85rem;
    }

    .clients-logos-mob-top {
        flex-direction: column;
        gap: 15px;
    }

    .clients-logos-mob .client-logo {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
   

    .clients-stats-section {
        padding: 20px 10px;
    }

    .stats-cards {
        margin: 20px 0;
    }
}

