* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

/* ================= HEADER ================= */
/* ================= HEADER ================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 99999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.logo img {
    height: 100px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar a {
    text-decoration: none;
    color: #1599ff;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.navbar a:hover {
    color: #f3a42c;
}

.contact-btn {
    padding: 14px 28px;
    background: #041a52;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #f3a42c;
    color: #000;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #041a52;
}

/* ===== Tablet ===== */

@media (max-width:992px) {

    .menu-btn {
        display: block;
    }

    .contact-btn {
        display: none;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        width: 100%;
        padding: 16px 25px;
        border-bottom: 1px solid #eee;
    }

}

/* ===== Mobile ===== */

@media(max-width:768px) {

    header {
        height: 80px;
        padding: 0 20px;
    }

    .logo img {
        height: 60px;
    }

    .menu-btn {
        display: block;
        z-index: 100001;
    }

    .contact-btn {
        display: none;
    }

    .navbar {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        width: 100%;
        padding: 18px 20px;
        border-bottom: 1px solid #eee;
    }

}

/* ===== Small Mobile ===== */

@media(max-width:480px) {

    header {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    .navbar {
        top: 70px;
    }

}

/* ================= HERO ================= */
/* ================= HERO ================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 100px;
    overflow: hidden;
}

/* Slider */

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: url("image/4.png");
}

.slide:nth-child(2) {
    background-image: url("image/14.jpeg");
}

.slide:nth-child(3) {
    background-image: url("image/4.png");
}

/* Overlay */

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    z-index: 2;
}

/* Content */

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    z-index: 5;
}

.hero-content span {
    color: #1599ff;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 75px;
    color: #06245e;
    line-height: 1.1;
    margin: 15px 0;
}

.hero-content h1 em {
    display: block;
    font-style: normal;
    font-family: 'Great Vibes', cursive;
    color: #f3a42c;
    font-size: 90px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #f3a42c;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.hero-btn:hover {
    transform: translateY(-4px);
}

/* Arrows */

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Dots */

.dots {
    position: absolute;
    bottom: 165px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.dot.active {
    background: #1599ff;
}

/* Service Bar */

.service-bar {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: 88%;
    background: #041a52;
    border-radius: 20px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    z-index: 25;
}

.service {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.service:last-child {
    border: none;
}

.service i {
    font-size: 30px;
}

/* ================= Tablet ================= */

@media(max-width:992px) {

    .hero {
        height: 950px;
    }

    .hero-content {
        left: 6%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 55px;
    }

    .hero-content h1 em {
        font-size: 70px;
    }

    .service-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    .dots {
        bottom: 260px;
    }

}

/* ================= Mobile ================= */

@media(max-width:768px) {

    .hero {
        height: 1100px;
        margin-top: 80px;
    }

    .hero-content {
        top: 130px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h1 em {
        font-size: 55px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .arrow {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .service-bar {
        width: 92%;
        grid-template-columns: repeat(2, 1fr);
        bottom: 30px;
        padding: 20px;
    }

    .service {
        border: none;
        flex-direction: column;
        text-align: center;
    }

    .dots {
        bottom: 310px;
    }

}

/* ================= Small Mobile ================= */

@media(max-width:480px) {

    .hero {
        height: 1300px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h1 em {
        font-size: 42px;
    }

    .hero-content span {
        font-size: 12px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .service-bar {
        grid-template-columns: 1fr;
    }

    .dots {
        bottom: 560px;
    }

}

/* about */

/*================ ABOUT =================*/
/*==============================
        ABOUT SECTION
==============================*/

.about {
    width: 100%;
    padding: 100px 8%;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    overflow: hidden;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    transition: .4s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content {
    width: 100%;
}

.about-content span {
    display: inline-block;
    color: #1698ff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 48px;
    color: #06245e;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 35px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #f8fbff;
    border: 1px solid #e8eef7;
    border-radius: 16px;
    transition: .35s;
    cursor: pointer;
}

.feature:hover {
    background: #f3a42c;
    transform: translateY(-8px);
}

.feature i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f3a42c;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: .35s;
    flex-shrink: 0;
}

.feature h4 {
    color: #06245e;
    font-size: 17px;
    transition: .35s;
}

.feature:hover h4 {
    color: #fff;
}

.feature:hover i {
    background: #fff;
    color: #f3a42c;
    transform: rotateY(180deg);
}

.about-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    background: #041a52;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.about-btn:hover {
    background: #f3a42c;
    color: #000;
    transform: translateY(-5px);
}


/*==============================
        Scroll Animation
==============================*/

.about-image,
.about-content,
.feature {
    opacity: 0;
    transition: .8s ease;
}

.about-image {
    transform: translateX(-70px);
}

.about-content {
    transform: translateX(70px);
}

.feature {
    transform: translateY(40px);
}

.show {
    opacity: 1 !important;
    transform: translate(0) !important;
}


/*==============================
        1200px
==============================*/

@media(max-width:1200px) {

    .about {
        gap: 50px;
    }

    .about-content h2 {
        font-size: 42px;
    }

}


/*==============================
        992px
==============================*/

@media(max-width:992px) {

    .about {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 40px;
        gap: 45px;
    }

    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .about-features {
        max-width: 700px;
        margin: 35px auto;
    }

    .feature {
        justify-content: flex-start;
    }

}


/*==============================
        768px
==============================*/

@media(max-width:768px) {

    .about {
        padding: 70px 20px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature {
        padding: 16px;
    }

    .about-btn {
        width: 100%;
        text-align: center;
    }

}


/*==============================
        576px
==============================*/

@media(max-width:576px) {

    .about {
        padding: 60px 15px;
        gap: 35px;
    }

    .about-content span {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .feature {
        gap: 12px;
        padding: 15px;
    }

    .feature i {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .feature h4 {
        font-size: 15px;
    }

}


/*==============================
        380px
==============================*/

@media(max-width:380px) {

    .about {
        padding: 50px 12px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .feature h4 {
        margin-top: 8px;
    }

}

/* service */


.services {
    padding: 100px 8%;
    background: #ffff;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.section-heading span {
    color: #1698ff;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-heading h2 {
    font-size: 48px;
    color: #06245e;
    margin: 15px 0;
}

.section-heading p {
    color: #666;
    line-height: 1.8;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    color: #06245e;
    margin-bottom: 12px;
    font-size: 22px;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;

    height: 150px;
    /* Ya 120px, 140px apni requirement ke hisaab se */
    overflow-y: auto;
}

.service-content a {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    background-color: #f3a42c;
    /* background: linear-gradient(90deg, #1698ff, #f3a42c); */
}


.service-content p::-webkit-scrollbar {
    width: 4px;
}

.service-content p::-webkit-scrollbar-thumb {
    background: #f3a42c;
    border-radius: 10px;
}

.service-content p::-webkit-scrollbar-track {
    background: #eee;
}


@media(max-width:768px) {

    .services {
        padding: 70px 20px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

}



/* networking */
/*==============================
        NETWORKING SECTION
==============================*/

.networking {
    padding: 100px 8%;
    background: #ffffff;
}

/*==============================
        SECTION TITLE
==============================*/

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: inline-block;
    color: #1698ff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 42px;
    color: #06245e;
    margin: 15px 0;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 28px;
}

/*==============================
          GRID
==============================*/

.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/*==============================
          CARD
==============================*/

.country-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e9eef6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22, 152, 255, .18);
}

/*==============================
          HEADER
==============================*/

.country-top {
    padding: 22px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1698ff, #06245e);
}

.country-img {
    width: 110px;
    height: 110px;
    margin: auto;
    padding: 4px;
    border: 5px solid rgb(255, 255, 255);
    /* border: 5px solid #f3a42c; */
    ;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
}

.country-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: .35s ease;
}

.country-card:hover .country-img img {
    transform: scale(1.1) rotate(8deg);
}

.country-head {
    margin-top: 15px;

}

.country-head h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.country-head span {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 12px;
}

/*==============================
            BODY
==============================*/

.country-body {
    padding: 20px;
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f3a42c);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 14px;
}

.info-row p {
    color: #666;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

/*==============================
            BUTTON
==============================*/

.country-btn {
    padding: 0 20px 20px;
}

.country-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 46px;
    border-radius: 50px;
    text-decoration: none;
    background: #041a52;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: .35s;
}

.country-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 152, 255, .25);
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:1200px) {

    .network-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:992px) {

    .network-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .networking {
        padding: 70px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .network-grid {
        grid-template-columns: 1fr;
    }

}

/* why choose us  */
.why-us {
    padding: 100px 8%;
    background:
        linear-gradient(135deg, #041a52, #0b4db5);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -180px;
    left: -150px;
}

.why-us::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(243, 164, 44, .10);
    border-radius: 50%;
    bottom: -220px;
    right: -180px;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-title span {
    color: #f3a42c;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-title h2 {
    color: #06245e;
    font-size: 48px;
    margin: 15px 0;
}

.section-title p {
    color: #666;
    line-height: 28px;
}

.why-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;

}

.why-card {

    position: relative;

    overflow: hidden;

    padding: 40px 30px;

    border-radius: 25px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, .15);

    transition: .45s;

    color: #fff;

}

.why-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,
            rgba(255, 255, 255, .10),
            transparent 50%);

}

.why-card:hover {

    transform: translateY(-15px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .25);

    border-color: #f3a42c;

}

.why-card i {

    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;

    border-radius: 22px;

    font-size: 34px;

    color: #fff;

    background: linear-gradient(135deg, #f3a42c);

    box-shadow: 0 15px 35px rgba(22, 152, 255, .35);

    transition: .5s;

}

.why-card:hover i {

    transform: rotate(12deg) scale(1.12);

}

.why-card h3 {

    margin: 25px 0 15px;

    color: #fff;

    font-size: 24px;

}

.why-card p {

    color: #dce8ff;

    line-height: 28px;

}

@media(max-width:992px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .why-us {
        padding: 80px 20px;
    }

}

/* contact  */
/*==========================
        CONTACT
===========================*/

.contact {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 60px;
    align-items: center;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

/* Background Shapes */

.contact::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #f3a32cce;
    /* background: rgba(22, 152, 255, .08); */
    top: -180px;
    left: -150px;
}

.contact::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #159affd3;
    /* background: rgba(243, 164, 44, .08); */
    bottom: -150px;
    right: -120px;
}

/*==========================
        LEFT
===========================*/

.contact-left {
    position: relative;
    z-index: 2;
}

.contact-left span {
    display: inline-block;
    color: #1698ff;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.contact-left h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #06245e;
    margin-bottom: 20px;
}

.contact-left p {
    color: #666;
    line-height: 30px;
    margin-bottom: 35px;
}

/*==========================
      CONTACT INFO
===========================*/

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7edf5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.info-box:hover {
    transform: translateX(8px);
    border-color: #1698ff;
    box-shadow: 0 20px 40px rgba(22, 152, 255, .15);
}

.info-box i {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3a42c);
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.info-box h4 {
    color: #06245e;
    font-size: 18px;
    margin-bottom: 6px;
}

.info-box p {
    color: #666;
    line-height: 24px;
    margin: 0;
}

/*==========================
          FORM
===========================*/

.contact-right {
    position: relative;
    z-index: 2;
}

.contact-right form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #e7edf5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.input-group {
    margin-bottom: 20px;
}

.contact-right input,
.contact-right select,
.contact-right textarea {

    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #dfe8f2;
    background: #fff;
    outline: none;
    font-size: 15px;
    color: #333;
    transition: .35s;

}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
    color: #999;
}

.contact-right textarea {
    resize: none;
}

.contact-right input:focus,
.contact-right textarea:focus,
.contact-right select:focus {

    border-color: #1698ff;
    box-shadow: 0 0 0 4px rgba(22, 152, 255, .12);

}

.contact-right button {

    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 50px;
    background: #041a52;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;

}

.contact-right button:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(22, 152, 255, .25);

}

/*==========================
      RESPONSIVE
===========================*/

@media(max-width:991px) {

    .contact {

        grid-template-columns: 1fr;
        padding: 80px 30px;

    }

    .contact-left {

        text-align: center;

    }

    .contact-left h2 {

        font-size: 38px;

    }

    .info-box {

        text-align: left;

    }

}

@media(max-width:768px) {

    .contact {

        padding: 70px 20px;

    }

    .contact-left h2 {

        font-size: 32px;

    }

    .contact-right form {

        padding: 25px;

    }

    .info-box {

        flex-direction: column;
        text-align: center;

    }

    .info-box i {

        margin-bottom: 10px;

    }

}

/* footer  */

.footer {
    background: #041a52;
    color: #fff;
}

.footer-container {
    padding: 80px 8% 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    height: 120px;
    width: 120px;
    margin-bottom: 10px;
}

.footer-box p {
    color: #d7d7d7;
    line-height: 1.8;
}

.footer-box h3 {
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.footer-box h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #f3a42c;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    color: #d7d7d7;
    text-decoration: none;
    transition: .3s;
}

.footer-box ul li a:hover {
    color: #f3a42c;
    padding-left: 5px;
}

.footer-box i {
    color: #f3a42c;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.social-links a:hover {
    background: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    padding: 20px;
    color: #d7d7d7;
}



.footer-map {
    width: 100%;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
    transition: .4s;
}

.footer-map iframe:hover {
    filter: grayscale(0%);
}


.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: #f3a42c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    transition: all .35s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #041a52;
    transform: translateY(-5px) scale(1.08);
}

html {
    scroll-behavior: smooth;
}

@media (max-width:768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
        font-size: 18px;
    }
}

/* Tablet */
@media(max-width:991px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */
@media(max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-box h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

}

#map {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
}


/*================ ABOUT COMPANY =================*/

.about-company-main-page {

    padding: 120px 8%;
    background: #f8fbff;

}

.about-container-main-page {

    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;

    align-items: center;

}

.about-image-main-page {

    position: relative;

}

.image-box-main-page {

    overflow: hidden;
    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

.image-box-main-page img {

    width: 100%;
    display: block;
    transition: .5s;

}

.image-box-main-page:hover img {

    transform: scale(1.08);

}

.experience-card-main-page {

    position: absolute;

    left: -30px;
    bottom: 40px;

    background: #041a52;
    color: #fff;

    padding: 30px;

    border-radius: 20px;

    width: 190px;

    text-align: center;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

}

.experience-card-main-page h2 {

    font-size: 55px;
    color: #f3a42c;
    margin-bottom: 10px;

}

.experience-card-main-page span {

    font-size: 15px;
    line-height: 24px;

}

.travel-card-main-page {

    position: absolute;

    top: 40px;
    right: -30px;

    background: #fff;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    gap: 15px;

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);

}

.travel-card-main-page i {

    width: 60px;
    height: 60px;

    background: #1599ff;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 24px;

}

.travel-card-main-page h4 {

    color: #041a52;
    margin-bottom: 5px;

}

.travel-card-main-page p {

    color: #777;
    font-size: 14px;

}

.sub-title-main-page {

    color: #1599ff;

    font-weight: 700;

    letter-spacing: 3px;

}

.about-content-main-page h2 {

    font-size: 52px;

    color: #041a52;

    line-height: 1.2;

    margin: 20px 0;

}

.about-content-main-page p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 35px;

}

.feature-grid-main-page {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-bottom: 40px;

}

.feature-box-main-page {

    background: #fff;

    padding: 20px;

    border-radius: 18px;

    display: flex;

    gap: 18px;

    transition: .35s;

    border: 1px solid #edf2f7;

}

.feature-box-main-page:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.feature-box-main-page i {

    width: 60px;

    height: 60px;

    background: #041a52;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    flex-shrink: 0;

}

.feature-box-main-page h4 {

    color: #041a52;

    margin-bottom: 6px;

}

.feature-box-main-page p {

    margin: 0;

    color: #777;

    line-height: 24px;

    font-size: 15px;

}

.about-btn-main-page {

    display: inline-block;

    padding: 16px 38px;

    background: #041a52;

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    transition: .35s;

    font-weight: 600;

}

.about-btn-main-page:hover {

    background: #f3a42c;

    color: #041a52;

}

/*=========== Responsive ===========*/

@media(max-width:991px) {

    .about-container-main-page {

        grid-template-columns: 1fr;

    }

    .about-content-main-page {

        margin-top: 50px;

    }

    .travel-card-main-page {

        right: 10px;

    }

}

@media(max-width:768px) {

    .feature-grid-main-page {

        grid-template-columns: 1fr;

    }

    .about-content-main-page h2 {

        font-size: 38px;

    }

    .experience-card-main-page {

        position: relative;

        left: 0;

        bottom: 0;

        margin-top: 20px;

        width: 100%;

    }

    .travel-card-main-page {

        position: relative;

        top: 0;

        right: 0;

        margin-top: 20px;

    }

}


/*================ PROMISE =================*/

.promise-main-page {

    padding: 120px 8%;
    background: #3a4358;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}

.promise-left-main-page span {

    color: #f3a42c;
    letter-spacing: 3px;
    font-weight: 700;

}

.promise-left-main-page h2 {

    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    margin: 20px 0;

}

.promise-left-main-page p {

    color: #d8d8d8;
    line-height: 1.9;
    margin-bottom: 35px;

}

.promise-btn-main-page {

    display: inline-block;
    padding: 16px 38px;
    background: #f3a42c;
    color: #041a52;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;

}

.promise-btn-main-page:hover {

    background: #fff;

}

.promise-right-main-page {

    display: grid;
    gap: 25px;

}

.promise-box-main-page {

    background: #ffffff10;
    backdrop-filter: blur(10px);

    border: 1px solid #ffffff20;

    border-radius: 20px;

    padding: 28px;

    display: flex;
    gap: 20px;

    transition: .35s;

}

.promise-box-main-page:hover {

    transform: translateX(10px);
    background: #ffffff18;

}

.number-main-page {

    width: 65px;
    height: 65px;

    background: #f3a42c;

    color: #041a52;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 22px;
    font-weight: 700;

    flex-shrink: 0;

}

.promise-box-main-page h3 {

    color: #fff;
    margin-bottom: 8px;

}

.promise-box-main-page p {

    color: #d9d9d9;
    line-height: 1.8;

}

@media(max-width:991px) {

    .promise-main-page {

        grid-template-columns: 1fr;

    }

    .promise-left-main-page h2 {

        font-size: 38px;

    }

}


/*================ VALUES =================*/

.values-main-page {

    padding: 120px 8%;
    background: #ffffff;

}

.values-heading-main-page {

    max-width: 700px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;

}

.values-heading-main-page span {

    color: #1599ff;
    font-weight: 700;
    letter-spacing: 3px;

}

.values-heading-main-page h2 {

    font-size: 48px;
    color: #041a52;
    margin: 15px 0;

}

.values-heading-main-page p {

    color: #666;
    line-height: 1.9;

}

.values-grid-main-page {

    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.value-card-main-page {

    background: #fff;
    padding: 40px 30px;
    text-align: center;

    border-radius: 30px;

    border: 1px solid #ececec;

    transition: .4s;

}

.value-card-main-page::after {

    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    top: -90px;
    right: -90px;
    transform: scale(0);
    transition: .5s;

}

.value-card-main-page:hover::after {

    transform: scale(1);

}

.value-card-main-page:hover {

    transform: translateY(-12px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.active-main-page {

    background: #fff;

}

.active-main-page h3,

.active-main-page p {

    color: #fff;

}

.active-main-page .value-icon-main-page {

    background: #041a52;
    color: #f3a42c;

}

.value-icon-main-page {

    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #041a52;

    color: #f3a42c;

    font-size: 34px;

    margin-bottom: 30px;

}

.value-card-main-page h3 {

    color: #041a52;
    margin-bottom: 15px;

}

.value-card-main-page p {

    color: #777;
    line-height: 28px;

}

@media(max-width:991px) {

    .values-grid-main-page {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .values-grid-main-page {

        grid-template-columns: 1fr;

    }

    .values-heading-main-page h2 {

        font-size: 36px;

    }

}

/*================ ABOUT BANNER =================*/

.about-banner-main-page {

    position: relative;
    min-height: 450px;
    margin-top: 100px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(rgba(4, 26, 82, .75), rgba(4, 26, 82, .75)),
        url("image/14.jpeg") center center/cover no-repeat;

    overflow: hidden;

}

.about-banner-main-page::before {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    background: #1599ff20;

    border-radius: 50%;

    right: -180px;
    top: -180px;

}

.about-banner-main-page::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: #f3a42c15;

    border-radius: 50%;

    left: -100px;
    bottom: -120px;

}

.about-overlay-main-page {

    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(4, 26, 82, .55),
            rgba(4, 26, 82, .15));

}

.about-banner-container-main-page {

    width: 90%;
    max-width: 1400px;

    margin: auto;

    position: relative;

    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 50px;

}

.about-banner-content-main-page {

    max-width: 650px;

}

.about-banner-content-main-page span {

    color: #f3a42c;

    font-weight: 700;

    letter-spacing: 3px;

}

.about-banner-content-main-page h1 {

    color: #fff;

    font-size: 70px;

    margin: 20px 0;

    line-height: 1.1;

}

.about-banner-content-main-page p {

    color: #f2f2f2;

    line-height: 1.9;

    font-size: 18px;

    margin-bottom: 35px;

}

.breadcrumb-main-page {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

}

.breadcrumb-main-page a {

    color: #fff;

    text-decoration: none;

}

.breadcrumb-main-page span {

    color: #f3a42c;

    letter-spacing: 0;

}

.banner-card-main-page {

    width: 230px;

    background: #ffffff15;

    backdrop-filter: blur(18px);

    padding: 35px;

    border-radius: 30px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, .2);

}

.banner-card-main-page i {

    width: 80px;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: auto;

    background: #f3a42c;

    color: #041a52;

    border-radius: 50%;

    font-size: 34px;

    margin-bottom: 20px;

}

.banner-card-main-page h3 {

    color: #fff;

    font-size: 42px;

    margin-bottom: 10px;

}

.banner-card-main-page p {

    color: #ddd;

}

/*============== Responsive ==============*/

@media(max-width:991px) {

    .about-banner-container-main-page {

        flex-direction: column;
        text-align: center;

    }

    .banner-card-main-page {

        display: none;

    }

    .about-banner-content-main-page h1 {

        font-size: 50px;

    }

}

@media(max-width:768px) {

    .about-banner-main-page {

        min-height: 420px;
        margin-top: 70px;

    }

    .about-banner-content-main-page h1 {

        font-size: 36px;

    }

    .about-banner-content-main-page p {

        font-size: 16px;

    }

}



/*=============== TRUST SECTION ===============*/

.trust-main-page {

    padding: 120px 8%;
    background: #f8fbff;

}

.trust-heading-main-page {

    max-width: 700px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;

}

.trust-heading-main-page span {

    color: #1599ff;
    font-weight: 700;
    letter-spacing: 3px;

}

.trust-heading-main-page h2 {

    font-size: 48px;
    color: #041a52;
    margin: 15px 0;

}

.trust-heading-main-page p {

    color: #666;
    line-height: 30px;

}

.trust-grid-main-page {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.trust-card-main-page {

    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: .4s;
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;

}

.trust-card-main-page:hover {

    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.trust-card-main-page::before {

    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #041a52);
    transition: .45s;
    z-index: 0;

}

.trust-card-main-page:hover::before {

    bottom: 0;

}

.trust-card-main-page>* {

    position: relative;
    z-index: 1;

}

.trust-icon-main-page {

    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 20px;
    background: #041a52;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: .4s;
    margin-bottom: 25px;

}

.trust-card-main-page h3 {

    color: #041a52;
    margin-bottom: 15px;

}

.trust-card-main-page p {

    color: #666;
    line-height: 28px;

}

.trust-card-main-page:hover h3,
.trust-card-main-page:hover p {

    color: #fff;

}

.trust-card-main-page:hover .trust-icon-main-page {

    background: #f3a42c;
    color: #041a52;
    transform: rotate(10deg);

}

.active-main-page {

    background: #fff;

}

.active-main-page h3,
.active-main-page p {

    color: #000;

}

.active-main-page .trust-icon-main-page {

    background: #f3a42c;
    color: #041a52;

}

@media(max-width:991px) {

    .trust-grid-main-page {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .trust-grid-main-page {

        grid-template-columns: 1fr;

    }

    .trust-heading-main-page h2 {

        font-size: 36px;

    }

}


.why-intro-main-page {
    padding: 100px 8%;
    background: #fff;
}

.why-intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.why-intro-content span {
    color: #041a52;
    font-weight: 700;
    letter-spacing: 2px;
}

.why-intro-content h2 {
    color: #041a52;
    font-size: 42px;
    margin: 18px 0;
    line-height: 1.3;
}

.why-intro-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #041a52;
}

.feature-item i {
    color: #f3a42c;
}

.why-btn-main-page {
    display: inline-block;
    padding: 14px 35px;
    background: #041a52;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: .3s;
}

.why-btn-main-page:hover {
    background: #f3a42c;
    color: #041a52;
}

@media(max-width:992px) {

    .why-intro-container {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .why-intro-content h2 {
        font-size: 32px;
    }

}

/*================ ABOUT BANNER ================*/

/* same class  */