/*@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700);*/
@import url(https://fonts.googleapis.com/css?family=Barlow:100,200,300,400,500,600,700,800,900,1000);

html {overflow-x: hidden;scroll-behavior: smooth;}
* {padding:0;margin:0;font-family:'Barlow',sans-serif;position:relative;transition:0.4s;box-sizing: border-box;}
body {background: #ffffff;
    overflow-x: hidden;
}
a {text-decoration:none;color:unset;}
div,h1,h2,h3,h4,p,i,a {position:relative;transition:0.4s;}

:root {
	--color:#ff4800;
	--color2:#021314;
	--color3:#ffffff;
	
}





/* --- Loader Styling --- */
.card_loader_back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #021314; /* Theme Dark */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader2 {
    text-align: center;
    color: #ffffff;
}

.loader2 img {
    width: 60px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loader_box {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #e43737; /* Theme Red */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px auto;
}

.loader2 h2 {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
}

/* --- Hero Section Styling --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background-color: #f8f9fa;
    overflow: hidden;
}

/* Diagonal Background Effect */
.clip_path {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-color: #021314; /* Theme Dark */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.text_area {
    position: relative;
    z-index: 2;
    width: 50%;
    max-width: 600px;
}

.text_area h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #021314;
    font-weight: 700;
    margin-bottom: 15px;
}

.text_area .he_te_h2 {
    color: #e43737; /* Theme Red Focus */
    font-size: 2.2rem;
    display: block;
    margin-top: 5px;
}

.text_area h3 {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Call to Action Button */
.btn1 {
    display: inline-flex;
    align-items: center;
    background-color: #e43737;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(228, 55, 55, 0.3);
}

.btn1 i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn1:hover {
    background-color: #021314;
    box-shadow: 0 6px 20px rgba(2, 19, 20, 0.4);
}

.btn1:hover i {
    transform: translateX(5px);
}

/* Hero Image */
.hero_banner {
    position: relative;
    z-index: 2;
    width: 40%;
    max-width: 500px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

/* --- Animations --- */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .text_area h1 { font-size: 2.8rem; }
    .text_area .he_te_h2 { font-size: 1.8rem; }
    .clip_path { width: 55%; }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 5% 60px 5%;
    }

    .clip_path {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
    }

    .text_area {
        width: 100%;
        margin-bottom: 50px;
    }

    .hero_banner {
        width: 80%;
        max-width: 350px;
        margin-top: 20px;
    }
    
    .btn1 {
        justify-content: center;
    }
}


/* =========================================
   DESKTOP VIEW (Default)
========================================= */

/* Hide mobile header on desktop */
.mobile_head {
    display: none;
}

/* Main Header Styling */
.header {
    background-color: #021314; /* Deep dark theme color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hide close button on desktop */
.header .close_btn {
    display: none;
}

/* Logo Sizing */
.header1 .logo {
    height: 40px;
    width: auto;
}

/* Navigation Links Container */
.header2 {
    display: flex;
    gap: 30px;
}

/* Individual Links */
.header2 a {
    text-decoration: none;
}

.head_cont {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.head_cont i {
    font-size: 18px;
}

/* Hover Effect */
.header2 a:hover .head_cont {
    color: #e43737; /* Theme red accent */
}


/* =========================================
   MOBILE VIEW (Tablets & Phones)
========================================= */
@media (max-width: 768px) {
    
    /* Show mobile header */
    .mobile_head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #021314;
        padding: 15px 20px;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .mobile_head_logo {
        height: 35px;
    }

    .home_btn {
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .home_btn:active {
        color: #e43737;
    }

    /* Transform Main Header into a Modal */
    .header {
        display: none; /* Hidden by default, toggled via JS */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(2, 19, 20, 0.98); /* Semi-transparent dark bg */
        padding-top: 80px;
        z-index: 1001; /* Above everything */
    }

    /* Show and style close button */
    .header .close_btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 25px;
        color: #ffffff;
        font-size: 40px;
        line-height: 1;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .header .close_btn:hover {
        color: #e43737;
    }

    /* Hide desktop logo in mobile modal since it's already on the mobile bar */
    .header1 {
        display: none;
    }

    /* Stack links vertically */
    .header2 {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: center;
    }

    .head_cont {
        font-size: 20px;
        justify-content: center;
    }
}

/* --- Footer Base --- */
.site-footer {
    background-color: #021314; /* Theme Dark */
    color: #d1d5db; /* Light gray text for readability */
    padding: 60px 0 0 0;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid #e43737; /* Thin red line at the top */
}

/* --- Layout Container --- */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 40px;
}

.footer_box {
    flex: 1;
    min-width: 280px;
}

/* --- Company Info Styling --- */
.footer-logo {
    max-width: 140px;
    margin-bottom: 25px;
    
}

.company-info p {
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-info p i {
    color: #e43737; /* Theme Red Focus */
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.company-info a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info a:hover {
    color: #e43737;
}

/* --- Quick Links Styling --- */
.footer-links h3 {
    color: #ffffff;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Small red underline decoration for the heading */
.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #e43737;
    border-radius: 2px;
}

.footer-links a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Hover effect: text turns red and slides slightly to the right */
.footer-links a:hover {
    color: #e43737;
    transform: translateX(8px);
}

/* --- Bottom Copyright Bar --- */
.footer-bottom {
    background-color: #010a0b; /* Slightly darker than main footer for depth */
    text-align: center;
    padding: 20px 5%;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #888;
    letter-spacing: 0.5px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 35px;
    }
    
    .footer-bottom {
        margin-top: 35px;
    }
}

/* --- Stats & Trust Section --- */
.stats_section {
    background-color: #021314; /* Theme Dark */
    padding: 60px 0;
    margin: 0;
    border-top: 4px solid #e43737; /* Red accent line */
}

.stats_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 5%;
    gap: 30px;
}

.stat_box {
    text-align: center;
    flex: 1;
    min-width: 220px;
    padding: 20px;
    transition: transform 0.3s ease;
}

/* Hover effect to make it interactive */
.stat_box:hover {
    transform: translateY(-10px);
}

.stat_box i {
    font-size: 45px;
    color: #e43737; /* Theme Red */
    margin-bottom: 15px;
}

.stat_box h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.stat_box p {
    color: #d1d5db; /* Light gray for contrast */
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .stats_section {
        padding: 40px 0;
    }
    
    .stats_container {
        gap: 20px;
    }
    
    .stat_box {
        min-width: 40%; /* allows 2 per row on smaller screens */
        padding: 10px;
    }
    
    .stat_box h2 {
        font-size: 32px;
    }
    
    .stat_box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stat_box {
        min-width: 100%; /* stacks them 1 per row on very small phones */
    }
}