/* ===============================
   WHY CHOOSE US SECTION
================================= */
.why-choose {
    padding: 100px 0;
    background: #0f2f4f;
    overflow: hidden;
}

.why-container {
    max-width: 2400px; /* 2400 hata diya for better layout */
    margin: auto;
    padding: 0 20px;
}

/* ===============================
   HEADING
================================= */

.why-choose-one__content {
    text-align: center;
    margin-bottom: 60px;
}

.sec-title__tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sec-title__tagline .line {
    width: 40px;
    height: 2px;
    background: #ff6600;
}

.sec-title__tagline h4 {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 15px;
}

.sec-title__title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 15px;
    line-height: 1.3;
}

.sec-title__title span {
    color: #ff6600;
}

/* ===============================
   GRID
================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
   CARD
================================= */

.why-card {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 18px;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    position: relative;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #ff6600;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* ===============================
   ICON (UPDATED FOR IMAGE ICON)
================================= */

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* 🔥 IMAGE ICON SUPPORT */
.why-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.why-card:hover .why-icon {
    background: #ff6600;
    transform: rotate(6deg) scale(1.08);
}

.why-card:hover .why-icon img {
    filter: brightness(0) invert(1);
}

/* ===============================
   TEXT
================================= */

.why-card h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-card p {
    color: #cfd8dc;
    font-size: 14px;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================= */

/* Tablet */
@media (max-width: 991px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .sec-title__title {
        font-size: 32px;
    }

    .why-card {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .why-choose {
        padding: 70px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        text-align: center;
        padding: 25px;
    }

    .why-icon {
        margin: 0 auto 15px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 13px;
    }
}






/* =========================
   PREMIUM COUNTER SECTION
========================= */

.counter-section {
    background: #0b2d4d;
    padding: 100px 20px;
}

.counter-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.counter-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.counter-card:hover {
    transform: translateY(-10px);
    border-color: #FD5523;
}

/* ICON */
.counter-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 20px;
}

.counter-icon svg {
    width: 100%;
    height: 100%;
}

/* NUMBER */
.count {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

/* TITLE */
.counter-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

/* DESCRIPTION */
.counter-desc {
    font-size: 14px;
    color: #cfd8dc;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counter-wrapper {
        grid-template-columns: 1fr;
    }

    .count {
        font-size: 32px;
    }
}





/* tracking button */
.tracking-wrapper {
    display: flex;
    justify-content: flex-end;
     margin-right: 20px;   /* 🔥 ye add karo */
}

.tracking-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

/* Icon */
.tracking-box .icon {
    padding: 0 10px;
    display: flex;
    align-items: center;
}

/* Input */
.tracking-box input {
    border: none;
    outline: none;
    padding: 10px;
    width: 160px;
    background: transparent;
    color: #fff;
}

/* Button */
.tracking-box button {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(45deg, #ff6600, #ff8533);
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.tracking-box button:hover {
    background: linear-gradient(45deg, #ff8533, #ff6600);
}

/* Responsive */
@media (max-width: 768px) {
    .tracking-wrapper {
        display: none;   /* 🔥 mobile me hide */
    }
}





/* ===============================
   ABOUT SECTION
================================= */

.about-section {
    padding: 100px 0;
    background: #0f2f4f;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */

.about-tag {
    color: #FD5523;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-title {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-title span {
    color: #FD5523;
}

.about-content p {
    color: #cfd8dc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #FD5523;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #ff6f3c;
}

/* RIGHT SIDE BOX */

.about-box {
    display: grid;
    gap: 20px;
}

.about-highlight {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.about-highlight:hover {
    transform: translateY(-8px);
    border-color: #FD5523;
}

.about-highlight h3 {
    font-size: 28px;
    color: #FD5523;
    margin-bottom: 5px;
}

.about-highlight p {
    color: #cfd8dc;
    font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-box {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 600px) {

    .about-section {
        padding: 70px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-box {
        grid-template-columns: 1fr;
    }
}









/* ===============================
   SERVICES SECTION
================================= */

.services-section {
    padding: 100px 0;
    background: #0f2f4f;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TOP CONTENT */

.services-top {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-top h2 {
    color: #FD5523;
    font-size: 32px;
    margin-bottom: 15px;
}

.services-top p {
    color: #cfd8dc;
    font-size: 15px;
    line-height: 1.7;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #FD5523;
}

/* ICON */

.service-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background: #FD5523;
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

/* TEXT */

.service-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    color: #cfd8dc;
    font-size: 13px;
}

/* RESPONSIVE */

@media(max-width: 991px){
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 600px){

    .services-section {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-top h2 {
        font-size: 24px;
    }
}



