
/* ===============================
   WHY CHOOSE US SECTION
================================= */

.why-choose {
    padding: 100px 0;
    background: #1C1F5A;
    width: 100%;
    position: relative;
}

.why-container {
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   HEADING
================================= */

.why-choose-one__content {
    text-align: center;
    margin-bottom: 70px;
}

.sec-title__tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sec-title__tagline .line {
    width: 40px;
    height: 2px;
    background: #ff5a1f;
}

.sec-title__tagline h4 {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
}

.sec-title__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 20px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.sec-title__title span {
    color: #ff5a1f;
}

/* ===============================
   GRID
================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ===============================
   CARD
================================= */

.why-card {
    background: rgba(255,255,255,0.05);
    padding: 45px 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #ff5a1f;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* ===============================
   ICON
================================= */

.why-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.why-card:hover .why-icon {
    transform: rotate(8deg) scale(1.1);
}

/* IMAGE ICON */
.why-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* ===============================
   TEXT
================================= */

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #cfd8dc;
}

/* ===============================
   RESPONSIVE
================================= */

/* Tablet */
@media (max-width: 991px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sec-title__title {
        font-size: 36px;
    }

    .why-card {
        padding: 35px 25px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .why-choose {
        padding: 80px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sec-title__title {
        font-size: 28px;
    }

    .why-card {
        text-align: center;
        padding: 30px 20px;
    }

    .why-icon {
        margin: 0 auto 20px auto;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }
}
/* ===============================
 companyoverview
================================= */


.ate-modern {
  background: #1C1F5A;
    padding: 100px 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Header */
.modern-header {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 80px;
}

.badge {
    background: rgba(253,85,35,0.15);
    color: #FD5523;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.modern-header h2 {
    font-size: 42px;
    margin: 20px 0;
}

.modern-header p {
    color: #d0d0ff;
}

/* Timeline */
.modern-timeline {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.timeline-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}

.timeline-card:hover {
    transform: translateY(-10px);
    border-color: #FD5523;
}

.timeline-card .year {
    color: #FD5523;
    font-weight: 700;
    margin-bottom: 10px;
}


/* Founder */
.modern-founder {
    text-align: center;
}

.founder-box {
    max-width: 700px;
    margin: auto;
    padding: 50px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
}

.founder-box h3 {
    color: #FD5523;
    margin-bottom: 20px;
}

.founder-box p {
    font-style: italic;
    color: #ddd;
}

.founder-name {
    margin-top: 25px;
    font-weight: 600;
}






/* =========================
   PREMIUM COUNTER SECTION
========================= */
/* =========================
   Stats Section
========================= */
.stats-section {
    background: #1C1F5A;
    padding: 60px 0;
}

/* Grid */
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Card */
.stat-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 35px 25px;
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    border-radius: 15px;
    position: relative;
}

/* Remove last border */
.stat-box:last-child {
    border-right: none;
}

/* Icon */
.stat-icon {
    color: #FD5523;
    font-size: 36px;
    transition: 0.3s;
}

/* Content */
.stat-content {
    display: flex;
    flex-direction: column;
}

/* Number */
.stat-number {
    color: #6a1b9a;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    transition: 0.3s;
}

/* Text */
.stat-text {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    transition: 0.3s;
}

/* =========================
   HOVER EFFECT 🔥
========================= */
.stat-box:hover {
    background: rgba(255,255,255,0.05);
    border: 1px solid #FD5523;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Icon hover */
.stat-box:hover .stat-icon {
    transform: scale(1.15);
}

/* Text color change */
.stat-box:hover .stat-number,
.stat-box:hover .stat-text {
    color: #fff;
}

/* =========================
   Responsive
========================= */

/* Tablet */
@media (max-width: 992px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stat-box {
        justify-content: flex-start;
    }
}



/* =========================
  core value
========================= */
.core-values-final {
    padding: 100px 0;
    background: #1C1F5A;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.values-header {
    text-align: center;
    margin-bottom: 70px;
}

.badge {
    background: rgba(253,85,35,0.15);
    color: #FD5523;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.values-header h2 {
    font-size: 40px;
    margin-top: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.value-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #FD5523;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(253,85,35,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px;

    /* FIX */
    font-size: 0; /* ❌ font icon hide */
}

.icon-box svg {
    width: 26px;
    height: 26px;
}

.value-card h4 {
    margin-bottom: 12px;
}

.value-card p {
    color: #dcdcff;
    font-size: 14px;
}

/* Animation Default Visible */
.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* When not visible */
.animate.hidden {
    opacity: 0;
    transform: translateY(50px);
}









/* ===== Vision Mission Dark Cards ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #252a6a;
}

/* Wrapper */
.vm-wrapper {
    display: flex;
    gap: 20px;
    padding: 40px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

/* Card */
.vm-card {
    flex: 1;
    min-width: 280px;
    background: #1a1f4d;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Header */
.vm-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
}

/* Icon */
.vm-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #FF5A1F, #ff7a3c);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
}

/* Title */
.vm-header h3 {
    color: #fff;
    margin: 0;
}

/* Content hidden */
.vm-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.4s ease;
}

/* Active card */
.vm-card.active {
    border-color: #FF5A1F;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Expand */
.vm-card.active .vm-content {
    max-height: 500px;
    padding-bottom: 20px;
}

/* Text */
.vm-content p,
.vm-content li {
    color: #d1d5db;
    font-size: 14px;
}

.vm-content ul {
    padding-left: 18px;
}

/* Hover subtle */
.vm-card:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media(max-width: 768px) {
    .vm-wrapper {
        flex-direction: column;
        padding: 20px;
    }
}


/* ===============================
   GLOBAL
================================ */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#1C1F5A;
    color:#ffffff;
}

/* ===============================
   SECTION
================================ */

.services-section{
    padding:120px 40px;
}

.services-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:50px;
}

/* ===============================
   CARD STYLE (Screenshot Look)
================================ */

.service-card{
    background:#252a6a;
    padding:45px 35px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
    transition:0.4s ease;
    position:relative;
}

/* Hover Effect */
.service-card:hover{
    transform:translateY(-10px);
    border:1px solid rgba(255,90,31,0.4);
    box-shadow:0 30px 60px rgba(0,0,0,0.45);
}

/* ===============================
   ICON
================================ */

.service-icon{
    width:60px;
    height:60px;
    background:rgba(255,90,31,0.15);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:0.4s ease;
}

/* SVG */
.service-icon svg{
    width:30px;
    height:30px;
    stroke:#FF5A1F;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition:0.4s ease;
}

/* Icon hover */
.service-card:hover .service-icon{
    background:#FF5A1F;
}

.service-card:hover .service-icon svg{
    stroke:#ffffff;
}

/* ===============================
   TEXT
================================ */

.service-card h3{
    font-size:20px;
    margin-bottom:15px;
    font-weight:600;
    color:#ffffff;
}

.service-card p{
    font-size:14px;
    line-height:1.8;
    color:#d6d6e6;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px){
    .services-section{
        padding:80px 20px;
    }
}





/* ===============================
   ABOUT DESCRIPTION SECTION
================================ */
/*  */






/* ===============================
   SECTION
================================ */

.about-description{
    background:#1C1F5A;
    padding:120px 40px;
}

.about-desc-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    gap:40px;
}

/* ===============================
   BOX STYLE
================================ */

.about-box{
    background:#252a6a;
    padding:45px 40px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
    transition:0.4s ease;
    position:relative;
}

/* Hover Effect */
.about-box:hover{
    transform:translateY(-8px);
    border:1px solid rgba(255,90,31,0.4);
    box-shadow:0 30px 60px rgba(0,0,0,0.45);
}

/* Left Orange Accent Line */
.about-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:6px;
    background:#FF5A1F;
    border-top-left-radius:25px;
    border-bottom-left-radius:25px;
}

/* Text */
.about-box p{
    font-size:18px;
    line-height:1.9;
    color:#e4e4f0;
}

/* Responsive */
@media(max-width:768px){

    .about-description{
        padding:80px 20px;
    }

    .about-box{
        padding:30px 25px;
    }

    .about-box p{
        font-size:16px;
    }

}





/* =========================
   TRACK BOX - FINAL UI
========================= */
.track-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 14px;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    /* Border Setup */
    border: 2px solid transparent;
    background-clip: padding-box;

    position: relative;
    transition: all 0.3s ease;
}

/* 🔥 Gradient Border Layer */
.track-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;

    background: linear-gradient(135deg, #FD5523, #1C1F5A);

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none; /* ✅ FIX CLICK ISSUE */
}

/* Hover Effect */
.track-box:hover {
    box-shadow: 0 0 20px rgba(253, 85, 35, 0.35);
}

/* Focus Effect */
.track-box:focus-within {
    box-shadow: 0 0 0 2px rgba(253, 85, 35, 0.3);
}

/* =========================
   ICON
========================= */
.track-icon {
    display: flex;
    align-items: center;
}

/* =========================
   INPUT
========================= */
.track-box input {
    border: none;
    outline: none;
    background: transparent;

    color: #ffffff;
    font-size: 15px;
    width: 180px;
}

/* Placeholder */
.track-box input::placeholder {
    color: white;
}

/* =========================
   BUTTON
========================= */
.track-box button {
    display: flex;
    align-items: center;
    gap: 6px;

    background:  #FD5523;
    color: #ffffff;

    border: none;
    padding: 7px 16px;
    border-radius: 10px;

    cursor: pointer;
    font-size: 13px;
    font-weight: 500;

    transition: all 0.3s ease;
}

/* Button Hover */
.track-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(188, 64, 64, 0.3);
}

/* Button Click */
.track-box button:active {
    transform: scale(0.95);
}

/* =========================
   SAFETY (CLICK FIX)
========================= */
.main-header-one__bottom-right {
    position: relative;
    z-index: 10;
}

.track-box {
    z-index: 10;
}

.track-box button {
    z-index: 11;
    pointer-events: auto;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .track-box input {
        width: 140px;
    }
}

/* Mobile Hide */
@media (max-width: 768px) {
    .track-box {
        display: none;
    }
}