/*=========================================
        NM GLOBAL TALENT PVT LTD
              PART 1C-1
==========================================*/

/*==============================
        GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
        GLOBAL
==============================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#333;

    overflow-x:hidden;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#0A1F44;

}

.section-subtitle{

    color:#0d6efd;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

/*=========================
        TOP BAR
==========================*/

.top-bar{
    background:#081B45;
    color:#fff;
    padding:10px 0;
    font-size:15px;
}

.top-info{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
}

.top-info a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-info a:hover{
    color:#00d4ff;
}

.top-info i{
    color:#00d4ff;
    margin-right:8px;
}

.top-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:15px;
}

.btn-register{
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-register:hover{
    background:#00bfff;
    color:#fff;
}

.top-social{
    display:flex;
    gap:10px;
}

.top-social a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.top-social a:hover{
    background:#0d6efd;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

    .top-info{
        justify-content:center;
        gap:12px;
        margin-bottom:10px;
    }

    .top-right{
        justify-content:center;
        flex-wrap:wrap;
    }

}

@media(max-width:576px){

    .top-info{
        flex-direction:column;
        text-align:center;
    }

    .btn-register{
        width:100%;
        text-align:center;
    }

}
.top-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:12px;
}

.dark-mode-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.dark-mode-btn:hover{
    background:#0d6efd;
    color:#fff;
    transform:rotate(20deg);
}

.btn-register{
    background:#0d6efd;
    color:#fff;
    padding:9px 18px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-register:hover{
    background:#084298;
    color:#fff;
}
/*==============================
        NAVBAR
==============================*/

.navbar{

    background:#ffffff;

    padding:15px 0;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    z-index:999;

}

.logo{

    height:90px;
    width:200px;

}

.navbar-nav{

    align-items:center;

}

.navbar-nav .nav-link{

    color:#222;

    font-weight:600;

    margin:0 8px;

    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:#0d6efd;

}

.navbar-nav .active{

    color:#0d6efd !important;

}

/*==============================
      DROPDOWN
==============================*/

.dropdown-menu{

    border:none;

    border-radius:15px;

    padding:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.dropdown-item{

    border-radius:8px;

    padding:10px 18px;

    transition:.3s;

}

.dropdown-item:hover{

    background:#0d6efd;

    color:#fff;

}

/*==============================
      REGISTER BUTTON
==============================*/

.btn-register{

    background:linear-gradient(135deg,#0052D4,#4364F7,#6FB1FC);

    color:#fff;

    border:none;

    border-radius:40px;

    padding:12px 30px;

    font-weight:600;

    transition:.3s;

}

.btn-register:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,82,212,.35);

}

/*==============================
      HERO SLIDER
==============================*/

.slider-img{

    height:88vh;

    object-fit:cover;

    filter:brightness(45%);

}

.carousel-item{

    position:relative;

}

.carousel-caption{

    left:8%;

    right:auto;

    bottom:20%;

    text-align:left;

    max-width:700px;

}

.hero-badge{

    display:inline-block;

    background:#0d6efd;

    color:#fff;

    padding:10px 22px;

    border-radius:30px;

    font-size:15px;

    font-weight:600;

    margin-bottom:20px;

}

.carousel-caption h1{

    font-size:60px;

    font-weight:800;

    line-height:1.2;

}

.carousel-caption h1 span{

    color:#00C6FF;

}

.carousel-caption p{

    font-size:20px;

    line-height:1.8;

    margin:25px 0;

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    border-radius:40px;

    padding:14px 35px;

    font-weight:600;

}

/*==============================
      HERO ANIMATION
==============================*/

.carousel-item.active .carousel-caption{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

    from{

        transform:translateY(40px);

        opacity:0;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}

/*==============================
      SLIDER CONTROLS
==============================*/

.carousel-control-prev-icon,

.carousel-control-next-icon{

    width:55px;

    height:55px;

    background-color:rgba(255,255,255,.3);

    border-radius:50%;

    background-size:50%;

}

/*==============================
      INDICATORS
==============================*/

.carousel-indicators button{

    width:12px;

    height:12px;

    border-radius:50%;

    margin:0 6px;

}

/*==============================
      MOBILE
==============================*/

@media(max-width:991px){

.logo{

    height:60px;

}

.top-bar{

    text-align:center;

}

.social-icons{

    justify-content:center;

    margin-top:12px;

}

.carousel-caption{

    left:8%;

    right:8%;

    bottom:12%;

    text-align:center;

    max-width:100%;

}

.carousel-caption h1{

    font-size:38px;

}

.carousel-caption p{

    font-size:16px;

}

.hero-buttons{

    justify-content:center;

}

.slider-img{

    height:60vh;

}

}

@media(max-width:576px){

.slider-img{

    height:50vh;

}

.carousel-caption h1{

    font-size:28px;

}

.carousel-caption p{

    display:none;

}

.hero-badge{

    font-size:12px;

}

.hero-buttons .btn{

    padding:10px 22px;

    font-size:14px;

}

.top-info{

    justify-content:center;

    gap:10px;

}

.top-info a{

    font-size:12px;

}

}

/*====================================================
            COMPANY HIGHLIGHTS
====================================================*/

.company-highlights{

    padding:80px 0;

    background:#f8fbff;

}

.highlight-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

}

.highlight-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(13,110,253,.18);

}

.highlight-card i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    font-size:34px;

    margin-bottom:20px;

}

.highlight-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.highlight-card p{

    color:#666;

    line-height:1.8;

}


/*====================================================
                COUNTER
====================================================*/

.counter-section{

    background:linear-gradient(135deg,#0d6efd,#081b4b);

    color:#fff;

    padding:70px 0;

}

.counter-box{

    padding:25px;

}

.counter-box h2{

    font-size:48px;

    font-weight:700;

}

.counter-box p{

    margin-top:10px;

    font-size:18px;

}


/*====================================================
                REGISTER MODAL
====================================================*/

.modal-content{

    border-radius:25px;

    border:none;

}

.modal-header{

    background:#0d6efd;

    color:#fff;

    border-radius:25px 25px 0 0;

}

.modal-header .btn-close{

    filter:invert(1);

}

.modal-body{

    padding:35px;

}

.form-control,

.form-select{

    height:55px;

    border-radius:12px;

    border:1px solid #ddd;

}

textarea.form-control{

    height:auto;

}

.form-control:focus,

.form-select:focus{

    border-color:#0d6efd;

    box-shadow:0 0 8px rgba(13,110,253,.25);

}


/*====================================================
                FOOTER
====================================================*/

footer{

    background:#071739;

    color:#fff;

    padding:70px 0 20px;

}

.footer-title{

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#ddd;

    transition:.3s;

}

.footer-links a:hover{

    color:#0dcaf0;

    padding-left:8px;

}

.footer-contact p{

    margin-bottom:12px;

}

.footer-contact i{

    color:#0dcaf0;

    margin-right:10px;

}

.footer-social{

    margin-top:20px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:#fff;

    margin-right:10px;

    transition:.3s;

}

.footer-social a:hover{

    background:#0d6efd;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.12);

    margin-top:40px;

    padding-top:20px;

    text-align:center;

    color:#ccc;

}


/*====================================================
            FLOATING WHATSAPP
====================================================*/

.whatsapp{

    position:fixed;

    bottom:95px;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:30px;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

    color:#fff;

}


/*====================================================
            BACK TO TOP
====================================================*/

#topBtn{

    position:fixed;

    bottom:25px;

    right:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    font-size:22px;

    display:none;

    cursor:pointer;

    z-index:999;

    transition:.3s;

}

#topBtn:hover{

    background:#081b4b;

}


/*====================================================
            DARK MODE
====================================================*/

.dark-mode{

    background:#111827;

    color:#f1f1f1;

}

.dark-mode .navbar{

    background:#1f2937;

}

.dark-mode .highlight-card{

    background:#1f2937;

    color:#fff;

}

.dark-mode .highlight-card p{

    color:#ddd;

}

.dark-mode footer{

    background:#000;

}


/*====================================================
            MOBILE
====================================================*/

@media(max-width:991px){

.highlight-card{

margin-bottom:20px;

}

.counter-box h2{

font-size:34px;

}

.counter-box p{

font-size:15px;

}

.footer-title{

margin-top:30px;

}

}


@media(max-width:576px){

.company-highlights{

padding:50px 0;

}

.highlight-card{

padding:25px;

}

.highlight-card i{

width:65px;

height:65px;

line-height:65px;

font-size:28px;

}

.counter-section{

padding:50px 0;

}

.whatsapp{

width:50px;

height:50px;

font-size:24px;

bottom:80px;

right:15px;

}

#topBtn{

width:45px;

height:45px;

font-size:18px;

right:15px;

bottom:15px;

}

}


/*====================================
            ABOUT SECTION
====================================*/

.about-section{

    background:#ffffff;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:20px;

}

.experience-box{

    position:absolute;

    right:-20px;

    bottom:20px;

    background:#0d6efd;

    color:#fff;

    padding:25px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.experience-box h2{

    font-size:40px;

    font-weight:700;

}

.about-feature{

    background:#f8fbff;

    padding:15px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.about-feature:hover{

    background:#0d6efd;

    color:#fff;

}

.about-feature i{

    color:#0d6efd;

    margin-right:10px;

}

.about-feature:hover i{

    color:#fff;

}


/*====================================
            WHY CHOOSE US
====================================*/

.why-section{

    background:#f8fbff;

}

.why-card{

    background:#fff;

    text-align:center;

    padding:35px 25px;

    border-radius:18px;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    background:#0d6efd;

    color:#fff;

}

.why-card i{

    font-size:45px;

    color:#0d6efd;

    margin-bottom:20px;

}

.why-card:hover i{

    color:#fff;

}

.why-card h4{

    font-weight:700;

    margin-bottom:15px;

}


/*==============================
        MOBILE
==============================*/

@media(max-width:768px){

.experience-box{

position:static;

margin-top:20px;

}

}

/*====================================
            OUR SERVICES
====================================*/

.services-section{

    background:#f8fbff;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(13,110,253,.18);

}

.service-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#0d6efd,#00c6ff);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

}

.service-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

.service-card a{

    color:#0d6efd;

    font-weight:600;

    text-decoration:none;

}

.service-card a i{

    margin-left:8px;

    transition:.3s;

}

.service-card:hover a i{

    margin-left:14px;

}


/*====================================
        LATEST TECHNOLOGIES
====================================*/

.technology-section{

    background:#ffffff;

}

.technology-card{

    background:#fff;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:100%;

    border-top:4px solid transparent;

}

.technology-card:hover{

    transform:translateY(-10px);

    border-top:4px solid #0d6efd;

    box-shadow:0 20px 40px rgba(13,110,253,.18);

}

.technology-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#0d6efd,#00c6ff);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    margin-bottom:25px;

}

.technology-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.technology-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.technology-card{

margin-bottom:20px;

}

}


/*====================================
            OUR PROCESS
====================================*/

.process-section{

    background:#f7fbff;

}

.process-card{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.4s;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(13,110,253,.18);

}

.step-number{

    position:absolute;

    top:15px;

    right:20px;

    font-size:50px;

    font-weight:800;

    color:rgba(13,110,253,.08);

}

.process-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#0d6efd,#00b4ff);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:36px;

    margin-bottom:25px;

}

.process-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

.process-card:hover .process-icon{

    transform:rotateY(360deg);

    transition:1s;

}

@media(max-width:768px){

.process-card{

margin-bottom:20px;

}

.step-number{

font-size:40px;

}

}
/*====================================
      WHY CHOOSE NM GLOBAL TALENT
====================================*/

.choose-section{

    background:#ffffff;

}

.choose-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.4s;

    height:100%;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    border-top:5px solid transparent;

}

.choose-card:hover{

    transform:translateY(-12px);

    border-top:5px solid #0d6efd;

    box-shadow:0 20px 40px rgba(13,110,253,.18);

}

.choose-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#0d6efd,#00c6ff);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

    transition:.5s;

}

.choose-card:hover .choose-icon{

    transform:rotateY(360deg);

}

.choose-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.choose-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.choose-card{

margin-bottom:20px;

}

}


/*====================================
        OUR ACHIEVEMENTS
====================================*/

.achievement-section{

    background:linear-gradient(135deg,#0A1F44,#0d6efd);

    color:#fff;

}

.achievement-section .section-title{

    color:#fff;

}

.achievement-section .section-subtitle{

    color:#8fd3ff;

}

.achievement-section .section-description{

    color:#e8f1ff;

}

.achievement-card{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.4s;

    height:100%;

}

.achievement-card:hover{

    transform:translateY(-10px);

    background:#ffffff;

    color:#0d6efd;

}

.achievement-card i{

    font-size:50px;

    margin-bottom:20px;

}

.achievement-card h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}

.achievement-card h5{

    font-weight:600;

}

@media(max-width:768px){

.achievement-card{

margin-bottom:20px;

}

.achievement-card h2{

font-size:32px;

}

}



/*====================================
        TESTIMONIALS
====================================*/

.testimonial-section{

    background:#f8fbff;

}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.4s;

    height:100%;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(13,110,253,.18);

}

.testimonial-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    font-style:italic;

}

.testimonial-card h5{

    font-weight:700;

    margin-bottom:5px;

}

.testimonial-card span{

    color:#0d6efd;

    font-weight:600;

}

@media(max-width:768px){

.testimonial-card{

margin-bottom:20px;

}

}

/*====================================
        CTA SECTION
====================================*/

.cta-section{

    background:linear-gradient(135deg,#0A1F44,#0d6efd);

    color:#fff;

}

.cta-title{

    font-size:42px;

    font-weight:700;

    margin:20px 0;

}

.cta-title span{

    color:#00d4ff;

}

.cta-text{

    font-size:18px;

    line-height:1.8;

    color:#eef5ff;

}

.cta-section .btn{

    border-radius:50px;

    padding:15px 35px;

    font-weight:600;

}

/*====================================
            FOOTER
====================================*/

.footer-section{

    background:#071739;

    color:#fff;

    padding:70px 0 20px;

}

.footer-logo{

    height:80px;

}

.footer-section h5{

    font-weight:700;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#ddd;

    transition:.3s;

}

.footer-links a:hover{

    color:#00c6ff;

    padding-left:8px;

}

.footer-social{

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    color:#fff;

    margin-right:10px;

    transition:.3s;

}

.footer-social a:hover{

    background:#0d6efd;

}

.footer-section p{

    color:#ddd;

}

.footer-section i{

    color:#00c6ff;

    margin-right:10px;

}

.footer-section hr{

    border-color:rgba(255,255,255,.15);

    margin:40px 0 20px;

}

@media(max-width:768px){

.cta-title{

font-size:30px;

text-align:center;

}

.cta-text{

text-align:center;

}

.footer-section{

text-align:center;

}

.footer-logo{

height:65px;

}

}

/*====================================
        FLOATING SOCIAL MEDIA
====================================*/

.floating-social{

    position:fixed;

    right:20px;

    bottom:20px;

    display:flex;

    gap:12px;

    z-index:9999;

}

.floating-social a{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:26px;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    transition:.35s;

}

.floating-social a:hover{

    transform:translateY(-8px) scale(1.1);

}

.instagram{

    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);

}

.facebook{

    background:#1877F2;

}

.linkedin{

    background:#0A66C2;

}

.twitter{

    background:#1DA1F2;

}

.whatsapp{

    background:#25D366;

}

@media(max-width:768px){

.floating-social{

right:12px;

bottom:15px;

gap:8px;

}

.floating-social a{

width:48px;

height:48px;

font-size:20px;

}

}


/*====================================
        PAGE BANNER
====================================*/

.page-banner{

    background:linear-gradient(rgba(10,31,68,.85),
    rgba(13,110,253,.75)),
    url("../images/banner.jpg") center/cover;

    padding:120px 0;

    color:#fff;

    text-align:center;

}

.page-banner h1{

    font-size:52px;

    font-weight:700;

}

.page-banner p{

    font-size:18px;

    margin-top:15px;

}

.page-banner i{

    color:#00c6ff;

}

/*====================================
        ABOUT COMPANY
====================================*/

.about-company{

    background:#ffffff;

}

.about-company img{

    border-radius:20px;

}

.about-company p{

    color:#666;

    line-height:1.9;

}

.about-list{

    background:#f8fbff;

    padding:15px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.about-list:hover{

    background:#0d6efd;

    color:#fff;

}

.about-list i{

    color:#0d6efd;

    margin-right:10px;

}

.about-list:hover i{

    color:#fff;

}

@media(max-width:768px){

.page-banner{

padding:80px 0;

}

.page-banner h1{

font-size:36px;

}

.about-company img{

margin-bottom:30px;

}

}

/*====================================
        VISION & MISSION
====================================*/

.vision-section{

    background:#f8fbff;

}

.vision-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    height:100%;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.vision-card:hover{

    transform:translateY(-10px);

}

.vision-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:25px;

}

.vision-icon.mission{

    background:#00b894;

}

/*====================================
            CORE VALUES
====================================*/

.values-section{

    background:#fff;

}

.value-card{

    background:#f8fbff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.4s;

    height:100%;

}

.value-card:hover{

    background:#0d6efd;

    color:#fff;

    transform:translateY(-10px);

}

.value-card i{

    font-size:42px;

    color:#0d6efd;

    margin-bottom:20px;

}

.value-card:hover i{

    color:#fff;

}

/*====================================
            OBJECTIVES
====================================*/

.objective-section{

    background:#f8fbff;

}

.objective-list{

    list-style:none;

    padding:0;

    margin-top:30px;

}

.objective-list li{

    margin-bottom:18px;

    font-size:17px;

}

.objective-list i{

    color:#0d6efd;

    margin-right:10px;

}

@media(max-width:768px){

.vision-card,

.value-card{

margin-bottom:20px;

}

}

/*==================================
DIRECTOR
==================================*/

.director-section{

background:#fff;

}

.director-section img{

border-radius:20px;

}

.director-section p{

line-height:1.9;

color:#666;

}

/*==================================
TIMELINE
==================================*/

.timeline{

border-left:4px solid #0d6efd;

padding-left:35px;

}

.timeline-item{

position:relative;

margin-bottom:40px;

}

.timeline-year{

position:absolute;

left:-92px;

top:0;

background:#0d6efd;

color:#fff;

padding:10px 18px;

border-radius:30px;

font-weight:700;

}

.timeline-content{

background:#f8fbff;

padding:25px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

/*==================================
ACHIEVEMENTS
==================================*/

.about-achievement{

background:#f8fbff;

}

.achievement-box{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

transition:.4s;

height:100%;

}

.achievement-box:hover{

background:#0d6efd;

color:#fff;

transform:translateY(-10px);

}

.achievement-box i{

font-size:45px;

color:#0d6efd;

margin-bottom:20px;

}

.achievement-box:hover i{

color:#fff;

}

.achievement-box h2{

font-size:42px;

font-weight:700;

}

@media(max-width:768px){

.timeline{

border-left:none;

padding-left:0;

}

.timeline-year{

position:relative;

left:0;

margin-bottom:15px;

display:inline-block;

}

}

/*=============================
TEAM
=============================*/

.team-section{

background:#fff;

}

.team-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.4s;

}

.team-card:hover{

transform:translateY(-10px);

}

.team-card img{

height:350px;

width:100%;

object-fit:cover;

}

.team-content{

padding:25px;

text-align:center;

}

.team-social a{

margin:0 8px;

color:#0d6efd;

font-size:20px;

}

/*=============================
CERTIFICATE
=============================*/

.certificate-section{

background:#f8fbff;

}

.certificate-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

transition:.4s;

}

.certificate-card:hover{

background:#0d6efd;

color:#fff;

}

.certificate-card i{

font-size:45px;

margin-bottom:20px;

color:#0d6efd;

}

.certificate-card:hover i{

color:#fff;

}

/*=============================
PARTNER
=============================*/

.partner-section img{

max-height:80px;

filter:grayscale(100%);

transition:.4s;

}

.partner-section img:hover{

filter:none;

transform:scale(1.1);

}

/*=============================
CTA
=============================*/

.about-cta{

background:linear-gradient(135deg,#0d6efd,#081b4b);

padding:80px 0;

color:#fff;

}

.about-cta h2{

font-size:42px;

font-weight:700;

}

.about-cta p{

font-size:18px;

margin-top:15px;

}

.about-cta .btn{

border-radius:50px;

padding:15px 35px;

font-weight:600;

}

/*====================================
        SERVICE INTRO
====================================*/

.service-intro{

background:#ffffff;

}

.service-intro p{

color:#666;

line-height:1.9;

}

/*====================================
        SERVICE CATEGORY
====================================*/

.service-category{

background:#f8fbff;

}

.category-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

height:100%;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.category-card:hover{

transform:translateY(-10px);

background:#0d6efd;

color:#fff;

}

.category-card i{

font-size:48px;

color:#0d6efd;

margin-bottom:20px;

}

.category-card:hover i{

color:#fff;

}

.category-card h4{

font-weight:700;

margin-bottom:15px;

}

.category-card p{

line-height:1.8;

}

@media(max-width:768px){

.category-card{

margin-bottom:20px;

}

}


/*==================================
        DETAILED SERVICES
==================================*/

.service-details{

    background:#ffffff;

}

.service-details img{

    border-radius:20px;

    transition:.4s;

}

.service-details img:hover{

    transform:scale(1.03);

}

.service-tag{

    display:inline-block;

    background:#0d6efd;

    color:#fff;

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.service-details h2{

    font-size:36px;

    font-weight:700;

    margin-bottom:20px;

}

.service-details p{

    color:#666;

    line-height:1.9;

}

.service-list{

    list-style:none;

    padding:0;

    margin:25px 0;

}

.service-list li{

    margin-bottom:15px;

    font-size:17px;

}

.service-list i{

    color:#0d6efd;

    margin-right:10px;

}

.service-details .btn{

    padding:14px 35px;

    border-radius:50px;

}

@media(max-width:991px){

.service-details img{

margin-bottom:30px;

}

.service-details h2{

font-size:30px;

}

}
/*====================================
        ADDITIONAL SERVICES
====================================*/

.additional-services{

    background:#f8fbff;

}

.professional-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    height:100%;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.professional-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.professional-card .service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:linear-gradient(135deg,#0d6efd,#00c6ff);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.professional-card h3{

    font-weight:700;

    margin-bottom:20px;

}

.professional-card p{

    color:#666;

    line-height:1.8;

}

.professional-card ul{

    list-style:none;

    padding:0;

    margin:25px 0;

}

.professional-card ul li{

    margin-bottom:12px;

}

.professional-card ul i{

    color:#0d6efd;

    margin-right:10px;

}

.professional-card .btn{

    border-radius:40px;

    padding:12px 30px;

}

@media(max-width:768px){

.professional-card{

margin-bottom:20px;

}

}
/*==================================
WHY SERVICE
==================================*/

.why-service{

background:#f8fbff;

}

.why-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

transition:.4s;

height:100%;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.why-card:hover{

background:#0d6efd;

color:#fff;

transform:translateY(-10px);

}

.why-card i{

font-size:46px;

color:#0d6efd;

margin-bottom:20px;

}

.why-card:hover i{

color:#fff;

}

/*==================================
PROCESS
==================================*/

.service-process{

background:#fff;

}

.process-box{

position:relative;

background:#f8fbff;

padding:35px;

border-radius:20px;

text-align:center;

transition:.4s;

height:100%;

}

.process-box:hover{

background:#0d6efd;

color:#fff;

}

.process-number{

position:absolute;

top:15px;

right:20px;

font-size:40px;

font-weight:700;

color:rgba(13,110,253,.15);

}

.process-box:hover .process-number{

color:rgba(255,255,255,.25);

}

.process-box i{

font-size:45px;

margin-bottom:20px;

color:#0d6efd;

}

.process-box:hover i{

color:#fff;

}

/*==================================
FAQ
==================================*/

.faq-section{

background:#f8fbff;

}

.accordion-button{

font-weight:600;

}

.accordion-button:not(.collapsed){

background:#0d6efd;

color:#fff;

}

.accordion-item{

border-radius:12px;

overflow:hidden;

margin-bottom:15px;

border:none;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

/*==================================
CTA
==================================*/

.services-cta{

background:linear-gradient(135deg,#0A1F44,#0d6efd);

color:#fff;

}

.cta-title{

font-size:42px;

font-weight:700;

margin:20px 0;

}

.cta-description{

font-size:18px;

line-height:1.8;

color:#eef5ff;

}

/*==================================
CONTACT BANNER
==================================*/

.contact-banner{

background:#f8fbff;

}

.contact-box{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

transition:.4s;

height:100%;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-box:hover{

background:#0d6efd;

color:#fff;

transform:translateY(-10px);

}

.contact-box i{

font-size:42px;

margin-bottom:20px;

color:#0d6efd;

}

.contact-box:hover i{

color:#fff;

}

.contact-box p{

margin:5px 0;

}

/*==================================
FOOTER
==================================*/

.footer-section{

background:#071739;

color:#fff;

padding:70px 0 20px;

}

.footer-logo{

height:80px;

}

.footer-section h5{

font-weight:700;

margin-bottom:20px;

}

.footer-links{

list-style:none;

padding:0;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#00c6ff;

padding-left:8px;

}

.footer-social{

margin-top:25px;

}

.footer-social a{

width:42px;

height:42px;

display:inline-flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:rgba(255,255,255,.1);

color:#fff;

margin-right:10px;

transition:.3s;

}

.footer-social a:hover{

background:#0d6efd;

}

.footer-section hr{

border-color:rgba(255,255,255,.15);

margin:40px 0 20px;

}

.footer-section i{

margin-right:10px;

color:#00c6ff;

}

@media(max-width:768px){

.cta-title{

font-size:30px;

text-align:center;

}

.cta-description{

text-align:center;

}

.footer-section{

text-align:center;

}

}



/*==================================
CONTACT INFO
==================================*/

.contact-info{

background:#f8fbff;

}

.info-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

height:100%;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.info-card:hover{

background:#0d6efd;

color:#fff;

transform:translateY(-10px);

}

.info-card i{

font-size:48px;

color:#0d6efd;

margin-bottom:20px;

}

.info-card:hover i{

color:#fff;

}

.info-card h4{

font-weight:700;

margin-bottom:15px;

}

.info-card p{

margin:6px 0;

line-height:1.7;

}

@media(max-width:768px){

.info-card{

margin-bottom:20px;

}

}

/*==================================
CONTACT FORM
==================================*/

.contact-form-section{

background:#ffffff;

}

.contact-form-box{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form-box .form-control,

.contact-form-box .form-select{

height:55px;

border-radius:10px;

}

.contact-form-box textarea{

height:auto !important;

}

.contact-form-box .btn{

border-radius:50px;

padding:14px;

font-weight:600;

}

/*==================================
OFFICE CARD
==================================*/

.office-card{

background:#f8fbff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

height:100%;

}

.office-card h3{

margin-bottom:20px;

font-weight:700;

}

.office-card p{

line-height:1.8;

margin-bottom:10px;

}

/*==================================
MAP
==================================*/

.map-section iframe{

display:block;

width:100%;

height:450px;

}

@media(max-width:768px){

.contact-form-box,

.office-card{

padding:25px;

}

}


