/*=========================================
  NEXMENTOR GLOBAL
  PROFESSIONAL CSS
  PART - 1
==========================================*/

/*=========================
 GOOGLE FONT
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================
 RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#222;

    overflow-x:hidden;

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:inherit;

}

.container{

    width:92%;

    max-width:1280px;

    margin:auto;

}

/*=========================
 COLORS
=========================*/

:root{

--primary:#1b66ff;

--secondary:#0d1328;

--white:#ffffff;

--light:#f7f9fc;

--text:#555555;

--heading:#111111;

--border:#ececec;

--shadow:0 12px 35px rgba(0,0,0,.08);

--transition:.35s ease;

}

/*=========================
 TOP HEADER
=========================*/

.topbar{

    background:#0b1125;

    color:#fff;

    height:42px;

    display:flex;

    align-items:center;

    font-size:14px;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left{

    display:flex;

    align-items:center;

    gap:18px;

}

.top-left a{

    color:#fff;

    transition:.3s;

}

.top-left a:hover{

    color:var(--primary);

}

.top-right{

    display:flex;

    align-items:center;

    gap:35px;

}

.top-right div{

    display:flex;

    align-items:center;

    gap:10px;

}

.top-right i{

    color:var(--primary);

}

/*=========================
 HEADER
=========================*/

header{

    position:absolute;

    left:0;

    top:42px;

    width:100%;

    z-index:999;

    transition:.4s;

}

header.sticky{

    position:fixed;

    top:0;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

header.sticky .nav-menu a{

    color:#222;

}

header.sticky .search-btn{

    color:#222;

}

header.sticky .menu-toggle{

    color:#222;

}

/*=========================
 NAVBAR
=========================*/
header .container{

    width:100%;
    max-width:100%;
    padding:0 60px;

}

.navbar{

    height:88px;
    
    display:flex;

    justify-content:space-between;

    align-items:center;
    background:rgba(0, 0, 0, 0.597);

}

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:58px;

}

/*=========================
 NAV MENU
=========================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:34px;

}

.nav-menu li{

    position:relative;

}

.nav-menu li a{

    color:#fff;

    font-size:16px;

    font-weight:500;

    display:flex;

    align-items:center;

    gap:6px;

    transition:var(--transition);

}

.nav-menu li a:hover{

    color:var(--primary);

}

.nav-menu li i{

    font-size:12px;

}

/*=========================
 NAV RIGHT
=========================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:20px;

}

.search-btn{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    color:#fff;

    backdrop-filter:blur(6px);

    transition:.35s;

}

.search-btn:hover{

    background:var(--primary);

}

.quote-btn{

    background:var(--primary);

    color:#fff;

    padding:15px 28px;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.quote-btn:hover{

    background:#fff;

    color:var(--primary);

}

.menu-toggle{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/*=========================
 DROPDOWN
=========================*/

.dropdown{

    position:relative;

}

.dropdown-menu{

    position:absolute;

    top:120%;

    left:0;

    width:230px;

    background:#fff;

    border-radius:8px;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    overflow:hidden;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu li a{

    display:block;

    color:#222;

    padding:14px 20px;

    border-bottom:1px solid #eee;

    font-size:15px;

}

.dropdown-menu li a:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================
 COMMON BUTTON
=========================*/

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.primary-btn:hover{

    background:#fff;

    color:var(--primary);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid #fff;

    color:#fff;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.secondary-btn:hover{

    background:#fff;

    color:var(--primary);

}

/*=========================================
        HERO SECTION
==========================================*/

.hero{
   
    position:relative;

    min-height:760px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/hero-bg.jpg") center center/cover no-repeat;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,17,43,.90) 0%,
        rgba(8,17,43,.82) 35%,
        rgba(8,17,43,.55) 70%,
        rgba(8,17,43,.20) 100%
    );

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:url("../images/pattern.png");

    opacity:.08;

}

.hero-wrapper{
margin-top:50px;
    position:relative;

    z-index:5;

    display:grid;

    grid-template-columns:1fr 560px;

    gap:40px;

    align-items:center;

}

/*=========================
 LEFT
=========================*/

.hero-left{

    color:#fff;

    padding-top:90px;

}

.sub-title{

    display:inline-flex;

    align-items:center;

    gap:12px;

    font-size:15px;

    font-weight:600;

    color:#66a3ff;

    margin-bottom:22px;

}

.sub-title::before{

    content:"";

    width:55px;

    height:2px;

    background:#1b66ff;

}

.hero-left h1{

    font-size:65px;

    line-height:1.08;

    font-weight:800;

    max-width:700px;

    margin-bottom:25px;

}

.hero-left p{

    font-size:18px;

    line-height:32px;

    color:#d8d8d8;

    max-width:620px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:55px;

}

.hero-info{

    display:flex;

    gap:28px;

}

.info-box{

    min-width:150px;

}

.info-box h3{

    color:#fff;

    font-size:34px;

    font-weight:700;

}

.info-box span{

    color:#cfcfcf;

    font-size:14px;

}

/*=========================
 RIGHT
=========================*/

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    height:760px;

}

/* Blue Frame */

.shape-one{

    position:absolute;

    width:430px;

    height:520px;

    border:12px solid #1b66ff;

    top:110px;

    right:40px;

    z-index:1;

}

.shape-two{

    position:absolute;

    width:140px;

    height:140px;

    background:#1b66ff;

    bottom:100px;

    left:0;

    transform:rotate(45deg);

    opacity:.15;

}

/* Person */

.hero-image{

    position:relative;

    z-index:2;

}

.hero-image img{

    width:470px;

    display:block;

}

/* Experience */

.experience-card{

    position:absolute;

    bottom:80px;

    left:20px;

    width:150px;

    height:150px;

    border-radius:50%;

    background:#111;

    border:6px solid #1b66ff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:5;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.experience-card h2{

    color:#fff;

    font-size:40px;

    font-weight:700;

    line-height:1;

}

.experience-card p{

    color:#d5d5d5;

    font-size:12px;

    text-align:center;

    margin-top:8px;

}

/* Floating Card */

.floating-card{

    position:absolute;

    top:180px;

    right:-15px;

    background:#fff;

    padding:18px 24px;

    border-radius:12px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    z-index:6;

    animation:floatCard 3s ease-in-out infinite;

}

.floating-card i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#1b66ff;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.floating-card strong{

    display:block;

    color:#111;

    font-size:16px;

}

.floating-card span{

    font-size:13px;

    color:#666;

}

/* Scroll */

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    z-index:20;

}

.scroll-down span{

    width:28px;

    height:48px;

    border:2px solid #fff;

    border-radius:30px;

    display:block;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:5px;

    height:10px;

    background:#fff;

    left:50%;

    top:8px;

    transform:translateX(-50%);

    border-radius:5px;

    animation:scrollDown 1.5s infinite;

}

/*=========================
ANIMATION
=========================*/

@keyframes floatCard{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

@keyframes scrollDown{

0%{

opacity:1;

top:8px;

}

100%{

opacity:0;

top:24px;

}

}

/*======================================
FEATURED SERVICES
=======================================*/

.services{

position:relative;

padding:120px 0;

background:#f8fbff;

overflow:hidden;

}

/*=========================
  LEFT GEOMETRIC PATTERN
=========================*/

.service-pattern{

    position:absolute;

    left:-90px;

    top:45px;

    display:grid;

    grid-template-columns:repeat(2,95px);

    gap:18px;

    transform:rotate(45deg);

    z-index:1;

}

.service-pattern span{

    width:90px;

    height:90px;

    border-radius:8px;

    opacity:1;

    box-shadow:0 15px 35px rgba(27,102,255,.20);

}

/* Dark Blue */

.service-pattern span:nth-child(1){

    background:#0057ff;

}

/* Sky Blue */

.service-pattern span:nth-child(2){

    background:#31c8ff;

}

/* Purple */

.service-pattern span:nth-child(3){

    background:#6558ff;

}

/* Royal Blue */

.service-pattern span:nth-child(4){

    background:#2b7cff;

}

/* Heading */

.section-heading{

max-width:720px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.subtitle{

color:#1b66ff;

font-weight:600;

letter-spacing:2px;

font-size:14px;

}

.section-heading h2{

font-size:46px;

margin:15px 0;

color:#111;

font-weight:700;

}

.section-heading p{

font-size:17px;

color:#666;

line-height:30px;

}

/* Grid */

.service-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

/* Card */

.service-card{

background:#fff;

padding:45px 35px;

border-radius:12px;

box-shadow:0 18px 40px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:4px;

background:#1b66ff;

transform:scaleX(0);

transition:.4s;

transform-origin:left;

}

.service-card:hover::before,

.service-card.active::before{

transform:scaleX(1);

}

.service-card:hover{

transform:translateY(-12px);

}

.service-icon{

width:80px;

height:80px;

border-radius:50%;

background:#eef5ff;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:#1b66ff;

margin-bottom:28px;

transition:.4s;

}

.service-card:hover .service-icon,

.service-card.active .service-icon{

background:#1b66ff;

color:#fff;

}

.service-card h3{

font-size:24px;

margin-bottom:18px;

font-weight:600;

}

.service-card p{

font-size:15px;

line-height:30px;

color:#666;

margin-bottom:25px;

}

.service-card a{

display:inline-flex;

align-items:center;

gap:10px;

font-weight:600;

color:#1b66ff;

transition:.3s;

}

.service-card:hover a{

gap:16px;

}

/*=========================================
 WHY CHOOSE US
==========================================*/

.why-section{

    padding:120px 0 80px;
    background:#ffffff;
    position:relative;

}

.why-wrapper{

    display:grid;
    grid-template-columns:65% 35%;
    align-items:stretch;
    position:relative;

}

/*==============================
LEFT IMAGE
==============================*/

.why-left{

    position:relative;
    overflow:hidden;
    min-height:520px;

}

.why-left img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

.image-overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.28);

}

/*==============================
PLAY BUTTON
==============================*/

.video-btn{

    position:absolute;
    right:-35px;
    top:50%;
    transform:translateY(-50%);
    z-index:20;

}

.video-btn a{

    width:88px;
    height:88px;

    border-radius:50%;

    background:#2b63ff;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:26px;

    text-decoration:none;

    box-shadow:0 0 0 18px rgba(43,99,255,.18);

    transition:.4s;

}

.video-btn a:hover{

    transform:scale(1.08);

}

/*==============================
RIGHT PANEL
==============================*/

.why-right{

    background:#08112b;

    color:#fff;

    padding:70px 55px;

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.section-tag{

    display:flex;

    align-items:center;

    color:#1ec8ff;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.section-tag::before{

    content:"";

    width:45px;

    height:3px;

    background:#1ec8ff;

    margin-right:12px;

}

.why-right h2{

    font-size:35px;

    line-height:1.25;

    font-weight:700;

    margin-bottom:50px;

}

/*==============================
COUNTER
==============================*/

.why-counter{

    display:flex;

    flex-direction:column;

    gap:38px;

}

.counter-item{

    display:flex;

    align-items:center;

    gap:22px;

}

.counter-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#1ec8ff;

    font-size:22px;

}

.counter-text h3{

    color:#fff;

    font-size:30px;

    line-height:1;

    margin-bottom:8px;

}

.counter-text span{

    color:#c6cfe5;

    font-size:15px;

}

/*==============================
BOTTOM STRIP
==============================*/

.why-bottom{

    width:65%;

    background:#fff;

    display:flex;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.bottom-box{

    flex:1;

    padding:28px 35px;

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

    border-right:1px solid #ececec;

}

.bottom-box:last-child{

    border-right:none;

}

.bottom-box i{

    color:#2b63ff;

    font-size:18px;

}

.bottom-box:hover{

    background:#f8fbff;

}

/*=========================
 WHY ANIMATION
=========================*/

.video-btn a{

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(43,99,255,.5);

}

70%{

box-shadow:0 0 0 22px rgba(43,99,255,0);

}

100%{

box-shadow:0 0 0 0 rgba(43,99,255,0);

}

}

.why-left img{

transition:.6s;

}

.why-left:hover img{

transform:scale(1.06);

}

.counter-item{

transition:.35s;

}

.counter-item:hover{

transform:translateX(8px);

}

.bottom-box{

transition:.35s;

}

.bottom-box:hover{

background:#f7f9ff;

}

/*=========================
ABOUT
=========================*/

.about{

    padding:80px 0;
    background:#fff;

}

.about-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

/* LEFT */

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:18px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.03);

}

/* Experience Card */

.experience{

    position:absolute;
    right:-25px;
    bottom:35px;

    background:#1b66ff;

    color:#fff;

    width:170px;
    height:170px;

    border-radius:20px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 15px 40px rgba(27,102,255,.35);

}

.experience h2{

    font-size:46px;

    font-weight:700;

}

.experience span{

    text-align:center;
    font-size:15px;

}

/* RIGHT */

.section-subtitle{

    color:#1b66ff;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.about-content h2{

    font-size:48px;

    margin:18px 0;

    line-height:1.2;

    color:#08112b;

}

.about-content p{

    color:#666;

    line-height:30px;

    margin-bottom:35px;

}

/* Features */

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.feature-box{

    display:flex;

    align-items:center;

    gap:14px;

    background:#f8fbff;

    padding:16px 20px;

    border-radius:10px;

    transition:.3s;

}

.feature-box:hover{

    background:#1b66ff;

    color:#fff;

}

.feature-box:hover i{

    background:#fff;

    color:#1b66ff;

}

.feature-box i{

    width:38px;
    height:38px;

    border-radius:50%;

    background:#1b66ff;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.3s;

}

/*=========================
OUR SERVICES
=========================*/

.services-section{

    padding:80px 0;
    background:#fff;

}

.section-title{
    text-align:center;
    margin-bottom:55px;

}

.section-title span{

    color:#1d14c5;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;

}

.section-title h2{

    margin-top:12px;
    font-size:54px;
    color:#16233d;
    font-weight:700;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.service-box{

    background:#f5f7fb;

    border-radius:16px;

    padding:35px;

    min-height:185px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.service-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.service-icon{

    width:62px;

    height:62px;

    border-radius:50%;

    background:#132243;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    margin-bottom:28px;

    transition:.35s;

}

.service-box:hover .service-icon{

    background:#1b66ff;

    transform:rotate(10deg);

}

.service-box h3{

    font-size:24px;

    color:#16233d;

    margin-bottom:18px;

    line-height:1.4;

}

.service-box p{

    color:#6b7280;

    font-size:15px;

    line-height:28px;

}

/*=========================
FOOTER
=========================*/

.footer{

background:#08112b;

color:#dbe4ff;

margin-top:120px;

}

/* CTA */

.footer-cta{

background:linear-gradient(rgba(15, 52, 163, 0.92),rgba(8, 31, 101, 0.92)),url("../images/footer-cta.jpg") center center/cover no-repeat;

padding:45px 0;

}

.cta-flex{

display:flex;

justify-content:space-between;

align-items:center;

gap:30px;

}

.footer-cta h2{

font-size:42px;

color:#fff;

margin-bottom:10px;

}

.footer-cta p{

color:#eef5ff;

}

.cta-btn{

background:#fff;

color:#1b66ff;

padding:18px 38px;

border-radius:40px;

font-weight:600;

transition:.35s;

}

.cta-btn:hover{

background:#08112b;

color:#fff;

}

/* Main */

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.3fr;

gap:60px;

padding:90px 0;

}

.footer-logo{

height:60px;

margin-bottom:25px;

}

.footer-col p{

line-height:30px;

margin-bottom:25px;

}

.footer-col h3{

color:#fff;

margin-bottom:25px;

font-size:22px;

}

.footer-col ul{

list-style:none;

}

.footer-col li{

margin-bottom:16px;

color:#b8c7ea;

}

.footer-col a{

color:#b8c7ea;

transition:.3s;

}

.footer-col a:hover{

color:#fff;

padding-left:6px;

}

.contact-info i{

color:#1b66ff;

margin-right:12px;

}

.social{

display:flex;

gap:12px;

}

.social a{

width:44px;

height:44px;

border-radius:50%;

background:rgba(255,255,255,.08);

display:flex;

justify-content:center;

align-items:center;

color:#fff;

transition:.3s;

}

.social a:hover{

background:#1b66ff;

transform:translateY(-5px);

}

/* Bottom */

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

padding:22px 0;

}

.bottom-flex{

display:flex;

justify-content:space-between;

align-items:center;

}

.footer-bottom a{

color:#b8c7ea;

margin-left:12px;

}

.footer-bottom a:hover{

color:#fff;

}

/*=================================
VISION & MISSION
=================================*/

.vision-mission{

    padding:80px 0;
    background:#fff;
    position:relative;

}

.section-heading{

    margin-bottom:60px;

}

.section-heading span{

    color:#1B66FF;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;

}

.section-heading h2{

    margin-top:10px;
    font-size:54px;
    color:#17233d;
    font-weight:700;

}

/* Grid */

.vm-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

}

/* Cards */

.vision-card{

    background:#142447;

    color:#fff;

    padding:50px;

    border-radius:18px;

    min-height:470px;

    position:relative;

    overflow:hidden;

}

.mission-card{

    background:#f5f7fb;

    padding:50px;

    border-radius:18px;

    min-height:470px;

}

/* Circle */

.vision-card::after{

    content:"";

    position:absolute;

    right:-80px;

    bottom:-80px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

/* Icon */

.vm-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    background:#fff;

    color:#142447;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:30px;

}

.vm-icon.blue{

    background:#1B66FF;

    color:#fff;

}

/* Heading */

.vision-card h3,
.mission-card h3{

    font-size:28px;

    margin-bottom:30px;

    letter-spacing:2px;

}

.vision-card h3{

    color:#4fa3ff;

}

.mission-card h3{

    color:#142447;

}

/* Text */

.vision-card p{

    font-size:20px;

    line-height:42px;

    color:#d9e2ff;

}

/* Mission */

.mission-card ul{

    list-style:none;

}

.mission-card li{

    position:relative;

    padding-left:28px;

    margin-bottom:28px;

    color:#555;

    line-height:28px;

}

.mission-card li::before{

    content:"";

    position:absolute;

    left:0;

    top:10px;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#1B66FF;

}

/* Hover */

.vision-card,
.mission-card{

    transition:.4s;

}

.vision-card:hover,
.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*====================================
LEADERSHIP
====================================*/

.leadership{

    padding:80px 0;
    background:#fff;
    position:relative;

}

.center{

    text-align:center;
    margin-bottom:60px;

}

.founder-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.founder-card{

    border-radius:20px;
    padding:45px;
    overflow:hidden;
    position:relative;
    transition:.4s;

}

.founder-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

/* Left */

.founder-primary{

    background:linear-gradient(135deg,#0f1f45,#1b66ff);
    color:#fff;

}

/* Right */

.founder-secondary{

    background:#16233d;
    color:#fff;

}

/* Decorative Circle */

.founder-card::after{

    content:"";

    position:absolute;

    right:-90px;
    top:-90px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

}

/* Header */

.founder-head{

    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;

}

.founder-icon{

    width:78px;
    height:78px;

    border-radius:50%;

    background:#1B66FF;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:28px;

    flex-shrink:0;

}

.founder-head h3{

    font-size:30px;
    margin-bottom:8px;

}

.founder-head span{

    color:#7fb7ff;
    font-weight:600;

}

.founder-card h5{

    margin-bottom:20px;

    color:#dbe8ff;

    font-weight:500;
    font-style:italic;

}

.founder-card p{

    line-height:32px;
    color:#edf2ff;

    margin-bottom:35px;

}

/* Quote */

blockquote{

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:25px;

    color:#7fb7ff;

    font-style:italic;

    line-height:30px;

}

/*=========================================
ABOUT PAGE
Breadcrumb + Company + Story
==========================================*/

/*=========================================
BREADCRUMB
==========================================*/

.breadcrumb{

    position:relative;
    background:url("../images/about-banner.jpg") center center/cover no-repeat;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;

}

.breadcrumb-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(rgba(8,17,43,.82),rgba(8,17,43,.82));

}

.breadcrumb-content{

    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    padding-top:80px;

}

.breadcrumb-content span{

    color:#7ab6ff;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;

}

.breadcrumb-content h1{

    font-size:58px;
    margin:18px 0;
    font-weight:700;

}

.breadcrumb-nav{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    font-size:16px;

}

.breadcrumb-nav a{

    color:#fff;
    transition:.3s;

}

.breadcrumb-nav a:hover{

    color:#1b66ff;

}

.breadcrumb-nav strong{

    color:#1b66ff;

}

/*=========================================
COMPANY INTRODUCTION
==========================================*/

.about-company{

    padding:100px 0;
    background:#fff;

}

.about-company-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

/* Left */

.about-company-image{

    position:relative;

}

.about-company-image img{

    width:100%;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.experience-box{

    position:absolute;
    right:-25px;
    bottom:35px;
    width:170px;
    height:170px;
    border-radius:18px;
    background:#1b66ff;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 20px 45px rgba(27,102,255,.35);

}

.experience-box h2{

    font-size:48px;

}

.experience-box span{

    text-align:center;
    font-size:15px;

}

/* Right */

.about-company-content h2{

    font-size:48px;
    color:#08112b;
    line-height:1.2;
    margin:18px 0 25px;

}

.about-company-content p{

    color:#666;
    line-height:30px;
    margin-bottom:22px;

}

.about-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;

}

.about-list div{

    background:#f7f9fc;
    padding:16px 20px;
    border-radius:10px;
    display:flex;
    align-items:center;
    gap:12px;
    transition:.35s;

}

.about-list div:hover{

    background:#1b66ff;
    color:#fff;

}

.about-list i{

    color:#1b66ff;
    font-size:18px;

}

.about-list div:hover i{

    color:#fff;

}

/*=========================================
OUR STORY
==========================================*/

.our-story{

    padding:100px 0;
    background:#f8fbff;

}

.story-wrapper{

    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;
    align-items:center;

}

.story-left h3{

    font-size:34px;
    color:#08112b;
    margin-bottom:25px;

}

.story-left p{

    color:#666;
    line-height:32px;
    margin-bottom:25px;

}

.story-right{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.story-card{

    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:14px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.story-card:hover{

    transform:translateY(-8px);

}

.story-card h2{

    font-size:42px;
    color:#1b66ff;
    margin-bottom:12px;

}

.story-card span{

    color:#555;
    font-weight:500;

}

/*=========================================
VISION & MISSION EXTRA
==========================================*/

.vision-card p{

    line-height:34px;

}

.mission-card li{

    font-size:16px;

}

/*=========================================
ACTIVE MENU
==========================================*/

.nav-menu li a.active{

    color:#1b66ff;

}


/*=========================================
SERVICES PAGE CSS
==========================================*/

/*===============
Banner
================*/

.services-banner{

    background:url("../images/services-banner.jpg") center center/cover no-repeat;

}

.services-banner .breadcrumb-content p{

    max-width:720px;
    margin:20px auto 0;
    color:#e8eefc;
    line-height:30px;

}

/*=========================
Services Intro
==========================*/

.services-intro{

    padding:100px 0;
    background:#fff;

}

.services-intro-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.services-intro-image{

    position:relative;

}

.services-intro-image img{

    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.service-exp{

    position:absolute;
    left:-20px;
    bottom:30px;

    width:170px;
    height:170px;

    border-radius:18px;

    background:#1b66ff;

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 45px rgba(27,102,255,.35);

}

.service-exp h2{

    font-size:48px;

}

.service-exp span{

    font-size:15px;
    text-align:center;

}

.services-intro-content h2{

    font-size:46px;
    color:#08112b;
    line-height:1.2;
    margin:18px 0 25px;

}

.services-intro-content p{

    color:#666;
    line-height:30px;
    margin-bottom:20px;

}

/*=========================
All Services
==========================*/

.all-services{

    padding:100px 0;
    background:#f7faff;

}

.service-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;

}

.service-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:6px;

    height:0;

    background:#1b66ff;

    transition:.4s;

}

.service-card:hover::before{

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.service-card.active{

    background:#1b66ff;
    color:#fff;

}

.service-card.active h3,
.service-card.active h4,
.service-card.active li{

    color:#fff;

}

.service-card.active .service-icon{

    background:#fff;
    color:#1b66ff;

}

.service-card h3{

    font-size:28px;

    color:#08112b;

    margin:25px 0;

}

.service-card h4{

    margin-top:22px;
    margin-bottom:10px;
    color:#1b66ff;

}

.service-card ul{

    padding-left:0;
    margin:0;
    list-style:none;

}

.service-card li{

    padding:9px 0;

    color:#555;

    display:flex;

    align-items:center;

    gap:12px;

}

.service-card li::before{

    content:"✔";

    color:#1b66ff;

    font-weight:700;

}

.service-card.active li::before{

    color:#fff;

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#eef5ff;

    color:#1b66ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotateY(180deg);

}

/*=========================================
OUR LEADERSHIP PAGE
==========================================*/

/*=========================================
LEADERSHIP INTRO
==========================================*/

.leadership-intro{

    padding:100px 0 60px;
    background:#fff;
    text-align:center;

}

.leadership-intro p{

    max-width:950px;
    margin:30px auto 0;
    color:#666;
    line-height:32px;
    font-size:17px;

}

/*=========================================
FOUNDERS
==========================================*/

.leadership-section{

    padding:40px 0 100px;
    background:#fff;

}

.leader-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.leader-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.35s;
    padding:45px 40px;
    text-align:center;
    position:relative;

}

.leader-card:hover{

    transform:translateY(-8px);

}

.leader-card::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:6px;
    background:#1b66ff;

}

.leader-card img{

    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:8px solid #f4f8ff;
    margin-bottom:25px;

}

.leader-card h3{

    font-size:30px;
    color:#08112b;
    margin-bottom:8px;

}

.leader-card h5{

    color:#1b66ff;
    font-size:18px;
    margin-bottom:15px;

}

.designation{

    color:#666;
    font-weight:600;
    line-height:30px;
    margin-bottom:25px;

}

.leader-card p{

    color:#666;
    line-height:31px;
    margin-bottom:20px;

}

.leader-card blockquote{

    margin-top:25px;
    padding:20px;
    background:#f8fbff;
    border-left:5px solid #1b66ff;
    color:#08112b;
    font-style:italic;
    font-weight:500;
    line-height:30px;
    text-align:left;
    border-radius:8px;

}

/*=========================================
LEADERSHIP PHILOSOPHY
==========================================*/

.our-story{

    background:#f8fbff;
    padding:100px 0;

}

.story-wrapper{

    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;
    align-items:center;

}

.story-left h3{

    font-size:34px;
    color:#08112b;
    margin-bottom:25px;

}

.story-left p{

    color:#666;
    line-height:32px;
    margin-bottom:22px;

}

.story-right{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.story-card{

    background:#fff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.story-card:hover{

    transform:translateY(-8px);

}

.story-card h2{

    font-size:42px;
    color:#1b66ff;
    margin-bottom:12px;

}

.story-card span{

    color:#555;
    font-weight:600;

}

/*=========================================
INDUSTRIES
==========================================*/

.industries{

    padding:100px 0;
    background:#fff;

}

.industry-grid{

    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.industry-grid div{

    background:#f8fbff;
    border-radius:16px;
    padding:35px 20px;
    text-align:center;
    transition:.35s;
    border:1px solid #eef2f7;

}

.industry-grid div:hover{

    background:#1b66ff;
    transform:translateY(-8px);

}

.industry-grid i{

    font-size:40px;
    color:#1b66ff;
    margin-bottom:18px;
    transition:.35s;

}

.industry-grid h4{

    color:#08112b;
    font-size:18px;
    font-weight:600;
    line-height:28px;
    transition:.35s;

}

.industry-grid div:hover i{

    color:#fff;

}

.industry-grid div:hover h4{

    color:#fff;

}

/*=========================================
SECTION SPACING
==========================================*/

.section-heading{

    text-align:center;
    margin-bottom:55px;

}

.section-heading span{

    color:#1b66ff;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;

}

.section-heading h2{

    font-size:46px;
    color:#08112b;
    margin-top:18px;
    line-height:1.3;

}

/*=========================================
CONTACT PAGE
==========================================*/

/*=========================================
CONTACT INFO
==========================================*/

.contact-info-section{

    padding:100px 0;
    background:#fff;

}

.contact-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}

.contact-card{

    background:#f8fbff;
    padding:45px 30px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.contact-card:hover{

    transform:translateY(-8px);
    background:#1b66ff;

}

.contact-icon{

    width:80px;
    height:80px;
    background:#1b66ff;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:25px;
    font-size:30px;
    transition:.35s;

}

.contact-card:hover .contact-icon{

    background:#fff;
    color:#1b66ff;

}

.contact-card h3{

    font-size:24px;
    color:#08112b;
    margin-bottom:18px;
    transition:.35s;

}

.contact-card p{

    color:#666;
    line-height:30px;
    transition:.35s;

}

.contact-card:hover h3,
.contact-card:hover p{

    color:#fff;

}

/*=========================================
CONTACT FORM
==========================================*/

.contact-form-section{

    padding:100px 0;
    background:#f8fbff;

}

.contact-wrapper{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:start;

}

.contact-form{

    background:#fff;
    padding:50px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form h2{

    font-size:42px;
    color:#08112b;
    margin:15px 0 20px;

}

.contact-form p{

    color:#666;
    line-height:30px;
    margin-bottom:35px;

}

.form-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.35s;

}

.contact-form textarea{

    resize:none;
    margin-bottom:25px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#1b66ff;

}

/*=========================================
RIGHT SIDE
==========================================*/

.hours-card,
.support-card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    margin-bottom:30px;

}

.hours-card h3,
.support-card h3{

    font-size:28px;
    color:#08112b;
    margin-bottom:25px;

}

.hours-card ul,
.support-card ul{

    list-style:none;
    padding:0;

}

.hours-card li{

    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid #eee;
    color:#555;

}

.hours-card li:last-child{

    border:none;

}

.support-card li{

    padding:12px 0;
    color:#555;
    display:flex;
    align-items:center;
    gap:12px;

}

.support-card i{

    color:#1b66ff;

}

/*=========================================
GOOGLE MAP
==========================================*/

.map-section{

    padding:80px 0 0;
    background:#fff;

}

.map-wrapper{

    margin-top:50px;
    width:100%;
    border-radius:0;
    overflow:hidden;
    box-shadow:none;

}

.map-wrapper iframe{

    display:block;
    width:100%;
    border:0;

}

/*=========================================
FORM BUTTON
==========================================*/

.contact-form .primary-btn{

    border:none;
    cursor:pointer;

}

.footer{

    margin-top:0;
    padding-top:0;

}