:root {

    --primary: #0B3D91;
    --secondary: #081C3A;
    --accent: #9ACD32;
    --accent-hover: #B7E000;
    --white: #ffffff;
    --light: #F5F8FC;
    --text: #5F6B7A;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html,
body{
    width:100%;
    overflow-x:hidden;
}
body{
    margin:0;
    padding:0;
}
html {
    scroll-behavior: smooth;
}
section[id] {
    scroll-margin-top: 82px;
}
/* ==============================
   PREMIUM GLASS NAVBAR
================================*/
.custom-navbar {

     width:100%;
    margin:0;
    border-radius:0;
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.90),
        rgba(245,248,252,.85)
    );
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-radius:0px;
    padding:12px 22px;
    border:1px solid rgba(255,255,255,.7);
    box-shadow:
    0 15px 40px rgba(11,61,145,.15);
    transition:.4s ease;
    z-index:9999;
}

/* Scroll Navbar */
.custom-navbar.scrolled{
    padding:8px 22px;
    background:
    rgba(255,255,255,.96);
    box-shadow:
    0 12px 35px rgba(0,0,0,.18);
}
/* ==============================
   LOGO
================================*/
.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-logo{
    width:45px;
    height:45px;
    object-fit:contain;
    transition:.4s ease;
}
.navbar-brand:hover .brand-logo{
    transform:translateY(-3px)scale(1.08);
    filter:
    drop-shadow(
    0 8px 18px rgba(11,61,145,.35)
    );
}
.navbar-brand h5{
    margin:0;
    color:#0B3D91;
    font-size:18px;
    font-weight:500;
}
.navbar-brand small{
    color:#667085;
    font-size:12px;
}
/* ==============================
 NAV LINKS
================================*/
.navbar-nav{
    gap:5px;
}
.navbar-nav .nav-link{
    position:relative;
    color:#25364D !important;
    font-size:15.5px;
    font-weight:600;
    padding:10px 14px;
    transition:.35s ease;
}
/* Underline Animation */
.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    bottom:3px;
    left:50%;
    width:0;
    height:3px;
    border-radius:20px;
    background:
    linear-gradient(
    90deg,
    #0B3D91,
    #9ACD32
    );
    transform:translateX(-50%);
    transition:.35s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:45px;
}
.navbar-nav .nav-link:hover{
    color:#0B3D91 !important;
    transform:translateY(-2px);
}
.navbar-nav .nav-link.active{
    color:#0B3D91 !important;
}
/* ==============================
 CONTACT BUTTON
================================*/
.contact-btn{
    background:
    linear-gradient(
    135deg,
    #9ACD32,
    #7fb51d
    );
    border:none;
    color:white !important;
    padding:10px 22px;
    border-radius:30px;
    font-weight:600;
    box-shadow:
    0 8px 20px rgba(154,205,50,.35);
    transition:.4s ease;
}
.contact-btn:hover{
    transform:
    translateY(-3px);
    box-shadow:
    0 15px 30px rgba(154,205,50,.45);
}
.hero {
    background:linear-gradient(rgba(6, 32, 73, .82),
                               rgba(6, 32, 73, .82)),
                              url("Images/software.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}
.hero-badge {
    background: rgba(154, 205, 50, .12);
    color: #C5F54A;
    border: 1px solid rgba(154, 205, 50, .45);
    border-radius: 12px;
    width: 50%;
    min-height: 10px;
    display:inline-block;
    padding:10px 25px;
}
.hero-title {
    color: #fff;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.15;
     max-width:850px;
    margin:20px auto;
}
.hero-text {
    color: #D8E4F1;
    font-size: 20px;
    line-height: 1.8;
    max-width:850px;
    margin:0 auto;
}
.btn-success {
    background: var(--accent);
    border: none;
    color: #08203F;
    font-weight: 600;
    border-radius: 10px;
    transition: .35s;
}
.btn-success:hover {
    background: var(--accent-hover);
    color: #081C3A;
    transform: translateY(-4px);
}
.btn-outline-light {
    border: 2px solid white;
    border-radius: 10px;
}
.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}
.iso-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(154,205,50,.4);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50px;
    white-space: nowrap;
    width: fit-content;
    min-width: fit-content;
    margin: 35px auto 0;
}
.iso-card i{
    color:#9ACD32;
    font-size:18px;
    flex-shrink:0;
}
.iso-card span {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.iso-card i {
    color: #B7E000;
    padding: 1%;
}
.stats-section {
    background: #0A2247;
    color: white;
    padding: 20px 0;
}
.stats-section h6 {
    color: #A7D93F;
    letter-spacing: 2px;
}
.stats-section h4 {
    font-size: 34px;
    font-weight: 500;
}
.btn,
.feature-box,
.mission-card {
    transition: .35s;
}

.feature-box:hover,
.mission-card:hover {
    transform: translateY(-8px);
}
/* ==========================================
   MOBILE & TABLET (991px and below)
========================================== */
@media (max-width:991px){
    .custom-navbar{
        position:fixed;
        top:opx;
        left:0px;
        right:opx;
        width:auto;
        margin:0;
        padding:5px 10px;
        border-radius:10px;
        z-index:1050;
    }
    .custom-navbar .container-fluid{
        display:flex;
        align-items:center;
        justify-content:flex-start;
        flex-wrap:wrap;
        padding:0;
    }
    /* Toggle */
    .navbar-toggler{
    order:1;
    width:40px;
    height:40px;
    padding:0;
    margin:0 12px 0 0;   /* space between toggle and logo */
    border:none;
    background:transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 40px;        /* fixed width */
    box-shadow:none;
}
    .navbar-toggler:focus{
        box-shadow:none;
    }
    /* Brand */
    .navbar-brand{
        order:2;
        flex:1;
        display:flex;
        align-items:center;
        margin:0;
        padding:0;
        text-decoration:none;
    }
    .brand-logo{
        width:34px;
        height:34px;
        margin-right:5px;
        flex-shrink:0;
    }
    .navbar-brand h5{
        margin:0;
        font-size:15px;
        line-height:1.2;
    }
    .navbar-brand small{
        display:block;
        font-size:10px;
        line-height:1.2;
        margin-top:2px;
    }
    /* Menu */
    .navbar-collapse{
        order:3;
        width:100%;
        margin-top:10px;
        background:#fff;
        border-radius:18px;
        padding:15px;
        box-shadow:0 15px 35px rgba(0,0,0,.15);
    }
    .navbar-nav{
        gap:5px;
    }
    .navbar-nav .nav-link{
        display:block;
        width:100%;
        text-align:center;
        padding:14px;
        font-size:17px;
        font-weight:600;
        border-radius:12px;
    }
    .navbar-nav .btn{
        display:block;
        width:180px;
        margin:20px auto 0;
    }
    /* Hero */
    .hero{
        text-align:center;
        padding-top:120px;
    }
    .hero-badge{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        width:70%;
        margin:0 auto 20px;
        padding:10px;
        font-size:12px;
    }
    .hero-title{
        font-size:20px;
        line-height:1.3;
    }
    .hero-text{
        font-size:13px;
    }
    .hero .d-flex{
        justify-content:center;
        align-items:center;
    }
    .hero .btn{
        width:70%;
        max-width:320px;
        font-size:13px;
    }
    .iso-card{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        width:90%;
        margin:25px auto 0;
        padding:10px 15px;
        font-size:12px;
        white-space:nowrap;
    }
    .iso-card i{
        font-size:14px;
        flex-shrink:0;
    }
}
/*==================================
        ABOUT SECTION
==================================*/
.about-section{
    background:#f8fafc;
    padding:50px 0;
}
/* Badge */
.about-badge{
    display:inline-block;
    background:#0B3D91;
    color:#fff;
    padding:8px 24px;
    border-radius:8px;
    font-size:13px;
    font-weight:500;
    letter-spacing:2px;
    border-radius:30px;
    text-transform:uppercase;
}
/* Heading */
.about-title{
    font-size:30px;
    font-weight:500;
    color:#17345f;
    margin:20px 0 10px;
}
.about-subtitle{
    font-size:22px;
    color:#6c757d;
    margin-bottom:40px;
}
/*==================================
      ABOUT CONTENT CARD
==================================*/
.about-content-card{
    background:#fff;
    border-radius:22px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}
.about-content-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}
/*==================================
      ABOUT ITEM
==================================*/
.about-item{
    display:flex;
    gap:22px;
    align-items:flex-start;
    padding:25px 0;
    transition:.35s;
}
.about-item:not(:last-child){
    border-bottom:1px solid #edf1f5;
}
.about-item:hover{
    transform:translateX(8px);
}
/* Icon */
.about-icon{
    width:40px;
    height:40px;
    min-width:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#5aa3ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.4s;
}
.about-item:hover .about-icon{
    transform:rotate(10deg) scale(1.08);
}
/* Text */
.about-info p{
    margin:0;
    font-size:18px;
    line-height:1.9;
    color:#56667d;
}
.about-info strong{
    color:#17345f;
    font-weight:700;
}
/*==================================
          MISSION BOX
==================================*/
.mission-box{
    width:100%;
    margin-top:40px;
    background:#eef6ff;
    border-left:5px solid #0d6efd;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .4s ease;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}
/* Light shine effect */
.mission-box::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transition:.7s;
}
/* Hover */
.mission-box:hover{
    transform:translateY(-10px) scale(1.02);
    background:#0d6efd;
    border-left-color:#7ac943;
    box-shadow:0 20px 45px rgba(13,110,253,.35);
}
.mission-box:hover::before{
    left:100%;
}
.mission-box h5{
    color:#0d6efd;
    font-weight:700;
    margin-bottom:15px;
    transition:.4s;
}
.mission-box p{
    margin:0;
    color:#56667d;
    font-size:18px;
    line-height:1.8;
    transition:.4s;
}
/* Text color changes on hover */
.mission-box:hover h5,
.mission-box:hover p{
    color:#fff;
}

/* Icon animation */
.mission-box h5 i{
    transition:.4s;
}

.mission-box:hover h5 i{
    transform:rotate(360deg) scale(1.2);
    color:#7ac943;
}
/*==================================
        INFO CARDS
=================================*/
.info-row>div{
    display:flex;
}
.info-card{
    width:100%;
    min-height:220px;
    padding:30px;
    background:#fff;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}
.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.15);
}
.border-blue{
    border-top:4px solid #0d6efd;
}
.border-green{
    border-top:4px solid #7ac943;
}
.info-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px;
    background:#eef5ff;
    color:#0d6efd;
    transition:.35s;
}
.border-green .info-icon{
    background:#eefbe8;
    color:#7ac943;
}
.info-card:hover .info-icon{
    transform:rotate(10deg) scale(1.08);
}
.info-card small{
    display:block;
    font-size:13px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0d6efd;
}
.border-green small{
    color:#7ac943;
}
.counter{
    font-size:30px;
    font-weight:500;
    color:#0B3D91;
    line-height:1;
    margin-bottom:10px;
    letter-spacing:1px;
    font-family:'Poppins', sans-serif;
}

.counter::after{
    content:"+";
    color:#9ACD32;
    margin-left:2px;
}
.info-card h5{
    margin-top:15px;
    margin-bottom:0;
    font-size:20px;
    font-weight:500;
    color:#17345f;
    line-height:1.4;
}
/*==================================
        RESPONSIVE
==================================*/
@media(max-width:992px){
.about-title{
font-size:34px;
}
.about-subtitle{
font-size:20px;
}
.about-content-card{
padding:30px;
}
.info-card{
min-height:200px;
}
}
@media(max-width:768px){
.about-title{
font-size:30px;
}
.about-subtitle{
font-size:18px;
}
.about-item{
gap:15px;
}
.about-icon{
width:40px;
height:40px;
min-width:50px;
font-size:20px;
}
.about-info p{
font-size:16px;
line-height:1.8;
}
.mission-box{
padding:25px;
}
.info-card{
min-height:180px;
padding:25px;
}
.info-card h5{
font-size:18px;
}
}
@media(max-width:576px){
.about-section{
padding:70px 0;
}
.about-title{
font-size:26px;
}
.about-subtitle{
font-size:17px;
}
.about-content-card{
padding:20px;
}
}

/*====================================
        STATS / GLANCE SECTION
=====================================*/
.stats-glance{
    background:linear-gradient(180deg,#f8fbff,#eef6fb);
    padding:50px 0;
    overflow:hidden;
}
/*=========================
Heading
=========================*/
.stats-badge{
    display:inline-block;
    background:#0B3D91;
    color:white;
    padding:10px 24px;
    border-radius:30px;
    font-size:13px;
    font-weight:500;
    letter-spacing:2px;
}
.stats-title{
    font-size:30px;
    font-weight:700;
    color:#17345f;
}
.stats-subtitle{
    font-size:19px;
    color:#6c757d;
}
/*=====================================================
CARD
======================================================*/
.stats-card{
    position:relative;
    overflow:hidden;
    height:100%;
    min-width: 340px;
    min-height:250px;
    margin: auto;
    border-radius:20px;
    padding:28px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.5);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.45s;
}
/* Decorative Circle */
.card-glow{
    position:absolute;
    width:130px;
    height:130px;
    border-radius:50%;
    top:-45px;
    right:-45px;
    background:rgba(13,110,253,.06);
    transition:.5s;
}
.border-green .card-glow{
    background:rgba(154,205,50,.12);
}
/*=====================================================
ICON
======================================================*/
.stats-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#fff;
    background:#0B3D91;
    margin-bottom:20px;
    transition:.45s;
}
.border-green .stats-icon{
    background:#9ACD32;
    color:#17345f;
}
/*=====================================================
NUMBER
======================================================*/
.stats-card h3{
    font-size:52px;
    font-weight:500;
    color:#0B3D91;
    margin-bottom:14px;
    transition:.4s;
}
.border-green h3{
    color:#8BBE28;
}
/*=====================================================
TITLE
======================================================*/
.stats-card h5{
    font-size:18px;
    font-weight:500;
    color:#17345f;
    margin-bottom:12px;
    position:relative;
    display:inline-block;
}
.stats-card h5::after{
    content:"";
    position:absolute;
    width:0;
    left:0;
    bottom:-8px;
    height:3px;
    border-radius:20px;
    background:#9ACD32;
    transition:.45s;
}
/*=====================================================
TEXT
======================================================*/
.stats-card p{
    font-size:15px;
    line-height:1.7;
    color:#6b7280;
    margin-bottom:0;
}
/*=====================================================
ARROW
======================================================*/
.arrow{
    position:absolute;
    right:24px;
    bottom:24px;
    width:36px;
    height:36px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0B3D91;
    font-size:17px;
    transition:.4s;
}
.border-green .arrow{
    background:#f3fbe6;
    color:#79B100;
}
/*=====================================================
SHINE EFFECT
======================================================*/
.stats-card::before{
    content:"";
    position:absolute;
    top:-120%;
    left:-60%;
    width:45%;
    height:260%;
    background:rgba(255,255,255,.35);
    transform:rotate(25deg);
    transition:.8s;
}
/*=========================================
LARGE DEVICES (1200px and below)
=========================================*/
@media (max-width:1200px){
    .stats-title{
        font-size:38px;
    }
    .stats-card{
        min-height:290px;
        padding:30px;
    }
    .stats-card h3{
        font-size:56px;
    }
    .stats-card h5{
        font-size:22px;
    }
    .stats-card p{
        font-size:15px;
    }
}
/*=========================================
TABLET (991px and below)
=========================================*/
@media (max-width:991px){
    .stats-glance{
        padding:70px 0;
    }
    .stats-title{
        font-size:34px;
    }
    .stats-subtitle{
        font-size:18px;
    }
    .stats-card{
        min-height:280px;
        padding:28px;
        margin:0 auto;
    }
    .stats-icon{
        width:60px;
        height:60px;
        font-size:26px;
    }
    .stats-card h3{
        font-size:50px;
    }
    .stats-card h5{
        font-size:21px;
    }
    .stats-card p{
        font-size:15px;
    }
}

/*=========================================
MOBILE (767px and below)
=========================================*/
@media (max-width:576px){
    .stats-glance{
        padding:60px 0;
    }
    .stats-title{
        font-size:30px;
        line-height:1.3;
    }
    .stats-subtitle{
        font-size:16px;
    }
    .stats-card{
        min-height:220px;
        padding:22px;
        text-align:center;
    }
    .stats-icon{
        margin:0 auto 20px;
        width:58px;
        height:58px;
        font-size:24px;
    }
    .stats-card h3{
        font-size:42px;
        margin-bottom:12px;
    }
    .stats-card h5{
        font-size:17px;
    }
    .stats-card h5::after{
        left:50%;
        transform:translateX(-50%);
    }

    .stats-card p{
        font-size:14px;
    }
    .arrow{
        position:relative;
        right:auto;
        bottom:auto;
        margin:20px auto 0;
    }
}
/*=========================================
SMALL MOBILE (576px and below)
=========================================*/
@media (max-width:576px){
    .stats-glance{
        padding:50px 0;
    }
    .stats-badge{
        font-size:11px;
        padding:8px 18px;
    }
    .stats-title{
        font-size:26px;
    }
    .stats-subtitle{
        font-size:15px;
    }
    .stats-card{
        min-height:240px;
        padding:22px;
        border-radius:18px;
    }
    .stats-icon{
        width:52px;
        height:52px;
        font-size:22px;
    }
    .stats-card h3{
        font-size:40px;
    }
    .stats-card h5{
        font-size:18px;
    }
    .stats-card p{
        font-size:14px;
        line-height:1.6;
    }
    .arrow{
        width:38px;
        height:38px;
        font-size:18px;
    }
}
/*=========================================
PREMIUM HOVER EFFECT
=========================================*/
.stats-card:hover{
    transform:translateY(-12px);
    box-shadow:
        0 25px 60px rgba(0,0,0,.15);
    border-color:#9ACD32;
}
.stats-card:hover::before{
    left:160%;
}
.stats-card:hover .card-glow{
    transform:scale(1.35);
}
.stats-card:hover .stats-icon{
    transform:rotate(-10deg) scale(1.12);
}
.stats-card:hover h3{
    transform:scale(1.08);
}
.stats-card:hover h5::after{
    width:100%;
}
.stats-card:hover .arrow{
    transform:rotate(-45deg);
    background:#0B3D91;
    color:#fff;
}
.border-green:hover .arrow{
    background:#9ACD32;
    color:#17345f;
}
/*=========================================
FLOATING ANIMATION
=========================================*/
@keyframes floating{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-8px);
}
}
.stats-card{
animation:floating 5s ease-in-out infinite;
}
.stats-card:nth-child(2){
animation-delay:.5s;
}
.stats-card:nth-child(3){
animation-delay:1s;
}
/*=========================================
ICON PULSE
=========================================*/
.stats-icon{
position:relative;
overflow:hidden;
}
.stats-icon::before{
content:"";
position:absolute;
width:120%;
height:120%;
background:rgba(255,255,255,.25);
left:-130%;
top:0;
transform:skewX(-25deg);
transition:.8s;
}
.stats-card:hover .stats-icon::before{
left:150%;
}
/*=========================================
NUMBER GLOW
=========================================*/
.stats-card h3{
text-shadow:
0 0 0 transparent;
}
.stats-card:hover h3{
text-shadow:
0 0 20px rgba(13,110,253,.20);
}
.border-green:hover h3{
text-shadow:
0 0 20px rgba(154,205,50,.35);
}
/*=========================================
GRADIENT BORDER
=========================================*/
.stats-card::after{
content:"";
position:absolute;
inset:0;
border-radius:24px;
padding:2px;
background:linear-gradient(
135deg,
rgba(11,61,145,.20),
rgba(154,205,50,.20));
opacity:0;
transition:.4s;
pointer-events:none;
}
.stats-card:hover::after{
opacity:1;
}

/*=========================
Business Section
==========================*/
.business-section{
    padding:100px 0;
    background:#f7faff;
}
.Domains-badge{
    display:inline-block;
    background:#0B3D91;
    color:#fff;
    padding:8px 24px;
    border-radius:30px;
    font-size:13px;
    font-weight:500;
    letter-spacing:2px;
}
.Domains-title{
    font-size:30px;
    font-weight:500;
    color:#081C3A;
}
.Domains-subtitle{
    font-size:20px;
    color:#667085;
    letter-spacing:2px;
    text-transform:uppercase;
}
/*==========================
 CARD
==========================*/
.domain-card{
    position:relative;
    overflow:hidden;
    width:100%;
    height:100%;
    min-height:250px;
    text-align:center;
    background:#fff;
    border-radius:22px;
    padding:25px 18px;
    border:1px solid #edf2f7;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    transition:.45s ease;
    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}
/* Top Border Animation */
.domain-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#0B3D91;
    transition:.45s;
}
/* Glow Effect */
.domain-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    right:-80px;
    top:-80px;
    border-radius:50%;
    background:rgba(154,205,50,.08);
    transition:.5s;
}
/* Hover */
.domain-card:hover{
    transform:translateY(-14px);
    box-shadow:
    0 20px 50px rgba(11,61,145,.18);
}
.domain-card:hover::before{
    background:#9ACD32;
}
.domain-card:hover::after{
    transform:scale(1.4);
}
.icon-box{
    width:60px;
    height:60px;
    border-radius:20px;
    margin:0 auto 18px;
    background:#edf3ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
    transition:.45s;
}
.icon-box i{
    font-size:30px;
   /* color:#0B3D91;*/
    transition:.45s;
}
.domain-card:hover .icon-box{
    background:#9ACD32;
    transform:rotate(-8deg) scale(1.08);
}
.domain-card:hover .icon-box i{
    color:#fff;
    transform:scale(1.15);
}
.domain-card h4{
    font-size:20px;
    font-weight:500;
    color:#081C3A;
    margin-bottom:18px;
    transition:.35s;
}
.domain-card p{
    color:#667085;
    font-size:14px;
    line-height:1.6;
    margin:0;
}
.domain-card:hover h4{
    color:#0B3D91;
}
/*==========================
   LARGE TABLETS
==========================*/
@media (max-width: 992px){
    .business-section{
        padding:80px 0;
    }
    .Domains-title{
        font-size:38px;
    }
    .Domains-subtitle{
        font-size:18px;
        letter-spacing:1px;
    }
    .domain-card{
        min-height:290px;
        padding:30px 25px;
    }
    .domain-card h4{
        font-size:26px;
    }
    .domain-card p{
        font-size:16px;
    }
    .icon-box{
        width:70px;
        height:70px;
    }
    .icon-box i{
        font-size:34px;
    }
}
/*==========================
   TABLETS
==========================*/
@media (max-width:768px){

    .business-section{
        padding:70px 0;
    }

    .Domains-title{
        font-size:32px;
    }

    .Domains-subtitle{
        font-size:17px;
        line-height:1.7;
        text-transform:none;
    }
    .domain-card{
        min-height:260px;
        padding:28px 22px;
        text-align:center;
        align-items:center;
    }
    .icon-box{
        margin:0 auto 20px;
    }
    .domain-card h4{
        font-size:24px;
    }
    .domain-card p{
        font-size:15px;
    }
}
/*==========================
   MOBILE
==========================*/
@media (max-width:576px){
    .business-section{
        padding:60px 0;
    }
    .Domains-badge{
        font-size:11px;
        padding:7px 18px;
        letter-spacing:1px;
    }
    .Domains-title{
        font-size:28px;
        line-height:1.3;
    }
    .Domains-subtitle{
        font-size:15px;
        line-height:1.6;
    }
    .domain-card{
        min-height:240px;
        padding:25px 20px;
        border-radius:18px;
    }
    .icon-box{
        width:62px;
        height:62px;
        border-radius:16px;
    }
    .icon-box i{
        font-size:30px;
    }
    .domain-card h4{
        font-size:22px;
        margin-bottom:12px;
    }
    .domain-card p{
        font-size:14px;
        line-height:1.7;
    }
    .domain-card:hover{
        transform:translateY(-8px);
    }
}
/*==========================
   EXTRA SMALL MOBILE
==========================*/
@media (max-width:400px){
    .Domains-title{
        font-size:24px;
    }
    .Domains-subtitle{
        font-size:14px;
    }
    .Domains-card{
        min-height:220px;
        padding:22px 18px;
    }
    .domain-card h4{
        font-size:20px;
    }
    .domain-card p{
        font-size:13px;
    }
    .icon-box{
        width:56px;
        height:56px;
    }
    .icon-box i{
        font-size:26px;
    }
}
/*=========================
WHY SECTION
=========================*/
.why-section{
    background:linear-gradient(180deg,#f8fbff,#eef5fb);
    padding:50px 0;
    overflow:hidden;
}
/*=========================================
Heading
=========================================*/
.why-badge{
    display:inline-block;
    padding:8px 24px;
    background:#0B3D91;
    color:white;
    border-radius:30px;
    font-size:13px;
    font-weight:500;
    letter-spacing:2px;
}
.why-title{
    font-size:30px;
    font-weight:500;
    color:#081C3A;
}
.why-subtitle{
    font-size:18px;
    color:#5F6B7A;
    max-width:500px;
    margin:auto;
}
/*=========================================
Card
=========================================*/
.why-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    height:220px;
    padding:18px 20px;
    overflow:hidden;
    transition:.45s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border:1px solid rgba(255,255,255,.6);
}
.blue{
    border-left:5px solid #0B3D91;
}
.green{
    border-left:5px solid #9ACD32;
}
.why-content{
    position:relative;
    z-index:2;
    text-align:center;
}
/*=========================================
Background Circle
=========================================*/
.bg-circle{
    position:absolute;
    width:100px;
    height:100px;
    right:-25px;
    bottom:-25px;
    border-radius:50%;
    background:rgba(11,61,145,.05);
}
.green .bg-circle{
    background:rgba(154,205,50,.08);
}
/*=========================================
Icon
=========================================*/
.icon-box{
    width:40px;
    height:40px;
    margin:0 auto 15px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0B3D91;
    color:#fff;
    font-size:24px;
    transition:.4s;
}
.green .icon-box{
    background:#9ACD32;
    color:#081C3A;
}
/*=========================================
Number
=========================================*/
.number{
    font-size:35px;
    font-weight:500;
    line-height:1;
    color:rgba(11,61,145,.15);
    user-select:none;
}
.green .number{
    color:rgba(154,205,50,.22);
}
.number-box{
    position:absolute;
    left:22px;
    top:22px;
    transform:none;
    z-index:1;
}
/*=========================================
Text
=========================================*/
.why-card h4{
    font-size:18px;
    font-weight:700;
    color:#081C3A;
    margin-bottom:10px;
    display:inline-block;
    position:relative;
}
.why-card h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#9ACD32;
    transition:.4s;
    border-radius:20px;
}
.why-card p{
    max-width:520px;
    margin:auto;
    font-size:14px;
    line-height:1.7;
    color:#5F6B7A;
}
/*=========================================
Shine
=========================================*/
.shine{
    position:absolute;
    top:-100%;
    left:-60%;
    width:50%;
    height:250%;
    background:rgba(255,255,255,.35);
    transform:rotate(25deg);
    transition:.8s;
}
/*=========================================
Highlight
=========================================*/
.highlight{
    background:linear-gradient(135deg,#ffffff,#eef8ff);
    box-shadow:0 18px 40px rgba(11,61,145,.18);
    animation:floating 4s ease-in-out infinite;
}
.highlight .icon-box{
    box-shadow:0 0 18px rgba(11,61,145,.25);
}
.highlight .number{
    color:#0B3D91;
}
/*=========================================
Hover
=========================================*/
.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(0,0,0,.15);
}
.why-card:hover .shine{
    left:160%;
}
.why-card:hover .bg-circle{
    transform:scale(1.35);
}
.why-card:hover .icon-box{
    transform:rotate(-8deg) scale(1.1);
}
.why-card:hover h4::after{
    width:100%;
}
.why-card:hover .number{
    transform:scale(1.15);
}
.why-card:hover{
    border-color:#9ACD32;
}
/*=========================================
Pulse Ring
=========================================*/
.pulse-ring{
    position:absolute;
    width:170px;
    height:170px;
    right:-70px;
    top:-70px;
    border-radius:50%;
    border:2px solid rgba(154,205,50,.18);
    animation:pulse 3s infinite;
}
/*=========================================
Animations
=========================================*/
@keyframes floating{
    0%{transform:translateY(0);}
    50%{transform:translateY(-6px);}
    100%{transform:translateY(0);}
}
@keyframes pulse{
    0%{
        transform:scale(.9);
        opacity:.5;
    }
    100%{
        transform:scale(1.4);
        opacity:0;
    }
}
/*=========================================
Responsive
=========================================*/
@media(max-width:991px){
    .why-title{
        font-size:34px;
    }
    .why-card{
        height:220px;
        padding:18px;
    }
    .number{
        font-size:40px;
    }

    .icon-box{
        width:55px;
        height:55px;
        font-size:22px;
    }
}

@media(max-width:768px){
    .why-card{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        height:250px;
        gap:18px;
    }
    .number{
        font-size:42px;
    }
    .icon-box{
        margin:auto;
        margin-bottom:15px;
    }
}
@media(max-width:576px){
    .why-section{
        padding:60px 0;
    }
    .why-title{
        font-size:28px;
    }
    .why-subtitle{
        font-size:15px;
    }
    .why-card{
        height:auto;
        min-height:220px;
        padding:20px;
        border-radius:18px;
    }
    .why-card h4{
        font-size:19px;
    }
.number{
        font-size:34px;
    }
    .icon-box{
        width:50px;
        height:50px;
        font-size:20px;
    }
    .why-card p{
        font-size:14px;
    }
}
/*=========================================
Entrance Animation
=========================================*/
.why-card{
    opacity:0;
    transform:translateY(60px);
}
.why-card.show{
    opacity:1;
    transform:translateY(0);
}
/*=========================================
Premium Hover Glow
=========================================*/
.why-card.highlight:hover{
    box-shadow:
        0 30px 70px rgba(11,61,145,.28),
        0 0 30px rgba(154,205,50,.18);
}
.why-card:hover .icon-box{
    box-shadow:
        0 12px 25px rgba(11,61,145,.25);
}
.green:hover .icon-box{
    box-shadow:
        0 12px 25px rgba(154,205,50,.28);
}
/*=========================================
Smooth Transition
=========================================*/
.why-card,
.icon-box,
.number,
.bg-circle,
.shine,
h4{
    transition:all .45s ease;
}
/*=====================================================
                    CLIENTS SECTION
=====================================================*/
.clients-header{
    max-width:800px;
    margin:0 auto 50px;
    text-align:center;
    
}
.our-badge{
    text-align:center;
    margin-bottom:25px;
}

.our-badge {
    display:inline-block;
    background:#0B3D91;
    color:#fff;
    padding:8px 24px;
    border-radius:30px;
    font-size:13px;
    font-weight:500;
    box-shadow:0 10px 25px rgba(11,61,145,.25);
    transition:.3s ease;
    letter-spacing:2px;
}


.our-badge :hover{
    transform:translateY(-3px);
    background:#082f72;
}
.clients-intro{
    max-width:900px;
    margin:30px auto 0;
    padding:30px 35px;
    background:#fff;
    border-radius:20px;
    border:1px solid #e8eef5;
    box-shadow:0 12px 35px rgba(11,61,145,.08);
    position:relative;
    overflow:hidden;
    transition:.4s ease;
}
/* Top Gradient Line */
.clients-intro::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:5px;
    border-radius:0 0 10px 10px;
    background:linear-gradient(90deg,#0B3D91,#9ACD32);
}
/* Left Quote */
.clients-intro::after{
    content:"❝";
    position:absolute;
    top:12px;
    left:22px;
    font-size:55px;
    color:rgba(11,61,145,.08);
    font-family:Georgia,serif;
}
.clients-intro:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(11,61,145,.15);
}
.clients-intro p{
    margin:0;
    color:#5f6b7a;
    font-size:18px;
    line-height:1.9;
    text-align:center;
    max-width:780px;
    margin:auto;
}
.clients-intro strong{
    color:#0B3D91;
    font-weight:700;
}
.clients-intro span{
    color:#0B3D91;
    font-weight:600;
    background:none;
    padding:0;
}
.clients-section{
    position: relative;
    margin-top: 20px;   /* Adjust: 50px, 80px, 100px */
    padding: 50px 0;
    background: linear-gradient(180deg,#f8fbff,#eef6fb);
    overflow: hidden;
}
.logo-slider{
    position:relative;
    width:100%;
    overflow:hidden;
    margin-top:70px;
}
/* Fade Effect */
.logo-slider::before,
.logo-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:5;
    pointer-events:none;
}
.logo-slider::before{
    left:0;
    background:linear-gradient(to right,#eef6fb,transparent);
}
.logo-slider::after{
    right:0;
    background:linear-gradient(to left,#eef6fb,transparent);
}
/* Logo Track */
.logo-track{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:nowrap;
    white-space:nowrap;
    will-change:transform;
}
/* Logo Card */
.logo-item{
    flex:0 0 auto;
    width:220px;
    height:130px;
    background:#fff;
    border-radius:18px;
    border:1px solid #e8eef5;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(11,61,145,.08);
    transition:.4s ease;
}
/* Bottom Gradient */
.logo-item::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#0B3D91,#9ACD32);
}
/* Shine Effect */
.logo-item::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:40%;
    height:100%;
    background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.8),
    transparent);
    transition:.8s;
}
.logo-item:hover::after{
    left:140%;
}
/* Hover */
.logo-item:hover{
    transform:translateY(-8px);
    border-color:#9ACD32;
    box-shadow:0 18px 40px rgba(11,61,145,.18);
}
/* Logo */
.logo-item img{
    width:150px;
    height:70px;
    object-fit:contain;
    transition:.35s;
}
.logo-item:hover img{
    transform:scale(1.08);
}
/*=========================
Responsive
=========================*/
@media(max-width:1200px){
.logo-item{
width:200px;
height:120px;
}
.logo-item img{
width:135px;
height:65px;
}
}
@media(max-width:992px){
.logo-item{
width:180px;
height:110px;
}
.logo-item img{
width:120px;
height:60px;
}
.logo-slider::before,
.logo-slider::after{
width:70px;
}
}
@media(max-width:768px){
    .clients-header{
    margin-bottom:40px;
}
.clients-intro{
padding:22px;
}
.clients-intro p{
font-size:16px;
line-height:1.8;
}
.logo-item{
width:150px;
height:95px;
}
.logo-item img{
width:100px;
height:50px;
}
.logo-track{
gap:20px;
}
.logo-slider{
margin-top:40px;
}
}
@media(max-width:576px){
    .clients-intro{
padding:18px;
border-radius:16px;
}
.clients-intro::after{
font-size:42px;
left:15px;
}
.clients-intro p{
font-size:15px;
line-height:1.7;
}
.logo-item{
width:120px;
height:80px;
border-radius:14px;
}
.logo-item img{
width:80px;
height:40px;
}
.logo-track{
gap:15px;
}
.logo-slider::before,
.logo-slider::after{
display:none;
}
}
/*===================================
TEAM AREA
===================================
.team-area {
    background: #f6f8fc;
    padding: 50px 0;
}

.team-head {
    margin-bottom: 60px;
}
.team-label {
    display: inline-block;
    background: #0B3D91;
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.team-head h2 {
    margin-top: 25px;
    font-size: 40px;
    font-weight: 500;
    color: #172b4d;
}
.team-head p {
    margin-top: 18px;
    font-size: 20px;
    color: #6b7280;
}
/* Statistics 
 .team-count {
   background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .07);
    transition: .35s;
}
.team-count:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}
.team-count h3 {
    font-size: 42px;
    color: #6C63FF;
    font-weight: 500;
    margin-bottom: 10px;
}
.team-count span {
    font-size: 18px;
    color: #5f6b7a;
}

.dept-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}
.dept-header {
    background: linear-gradient(135deg, #0B3D91, #0B3D91);
    color: #fff;
    padding: 26px;
    font-size: 20px;
    font-weight: 700;
}
.dept-card ul {
    margin: 0;
    padding: 30px;
    list-style: none;
    flex: 1;
}
.dept-card li {
    padding: 12px 0;
    color: #505b68;
    border-bottom: 1px solid #edf0f5;
    font-size: 17px;
}
.dept-card li:last-child {
    border: none;
}

@media(max-width:991px) {
    .team-head h2 {
        font-size: 40px;
    }
    .team-head p {
        font-size: 18px;
    }
}
@media(max-width:767px) {
    .team-area {
        padding: 70px 0;
    }
    .team-head {
        margin-bottom: 45px;
    }
    .team-head h2 {
        font-size: 32px;
        line-height: 1.3;
    }
    .team-head p {
        font-size: 17px;
    }
    .team-count {
        padding: 28px 20px;
    }
    .team-count h3 {
        font-size: 42px;
    }
    .team-count span {
        font-size: 16px;
    }
    .dept-header {
        font-size: 20px;
        padding: 18px;
    }
    .dept-card ul {
        padding: 22px;
    }
    .dept-card li {
        font-size: 16px;
    }
} */
/*=====================================================
CONTACT SECTION
=====================================================*/

.connect-section{
    position:relative;
    background:linear-gradient(135deg,#0b2345,#163a67,#204b82);
    padding:50px 0;
    overflow:hidden;
}
.connect-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(154,205,50,.08);
    border-radius:50%;
    top:-180px;
    right:-180px;
    filter:blur(80px);
}
.connect-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(47,183,255,.08);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
    filter:blur(80px);
}
.connect-section .container{
    position:relative;
    z-index:2;
}
/*=====================================================
SECTION HEADER
=====================================================*/
.connect-badge{
    display:inline-block;
    padding:10px 24px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(154,205,50,.35);
    color:#9acd32;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}
.connect-title{
    color:#fff;
    font-size:42px;
    font-weight:500;
    margin-bottom:18px;
}
.connect-subtitle{
    color:#d6deea;
    max-width:760px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
}
/*=====================================================
ROW
=====================================================*/
.connect-section .row{
    align-items:stretch;
}
/*=====================================================
CARD
=====================================================*/
.connect-section .col-lg-6{
    display:flex;
}
.connect-card{
    width:100%;
    min-height:220px;
    display:flex;
    flex-direction:column;
    padding:20px;
    border-radius:20px;
    position:relative;
    overflow:hidden;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    box-shadow:0 20px 45px rgba(0,0,0,.25);
    transition:.45s;
    border-left:5px solid #2fb7ff;
}
.connect-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.40);
}
.connect-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.12),
        transparent);
    opacity:0;
    transition:.45s;
}
.connect-card:hover::before{
    opacity:1;
}
/*=====================================================
CARD COLORS
=====================================================*/
.company-box{
border-left-color:#2FB7FF;
}
.location-box{
border-left-color:#9acd32;
}
.phone-box{
border-left-color:#ffb347;
}
.email-box{
border-left-color:#ff6b9a;
}
/*=====================================================
ICON
=====================================================*/
.card-icon{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
margin-bottom:14px;
font-size:17px;
color:#fff;
background:linear-gradient(135deg,#2FB7FF,#0B7DFF);
transition:.4s;
}
.location-box .card-icon{
background:linear-gradient(135deg,#9acd32,#6ba800);
}
.phone-box .card-icon{
background:linear-gradient(135deg,#ffb347,#ff8500);
}
.email-box .card-icon{
background:linear-gradient(135deg,#ff6b9a,#ff2c63);
}
/*.connect-card:hover .card-icon{
transform:rotate(-8deg) scale(1.08);
}*/
/*====================================================
TEXT
=====================================================*/
.connect-label{
display:block;
margin-bottom:12px;
font-size:13px;
letter-spacing:2px;
color:#9acd32;
text-transform:uppercase;
}
.connect-card h3{
color:#fff;
font-size:20px;
font-weight:500;
margin-bottom:8px;
}
.connect-card h4{
color:#fff;
font-size:17px;
font-weight:500;
margin-bottom:8px;
}
.connect-card p{
color:#d8e1ef;
font-size:14px;
line-height:1.6;
margin-bottom:8px;
}
.connect-card small{
color:#c7d4e4;
font-size:13px;
}
/*=====================================================
CONTACT LINKS
=====================================================*/
.contact-info{
margin-top:18px;
display:flex;
flex-direction:column;
gap:14px;
}
.contact-info a{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
color:#fff;
transition:.3s;
}
.contact-info a i{
width:36px;
height:36px;
font-size:14px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.08);
border-radius:12px;
color:#ffb347;
}
.contact-info a:hover{
color:#9acd32;
transform:translateX(6px);
}
.contact-info a:hover i{
transform:rotate(-10deg);
}
/*=====================================================
PREMIUM GOOGLE MAP
=====================================================*/
.premium-map{
    position:relative;
    flex:1;
    width:100%;
    min-height:200px;
    margin-top:18px;
    border-radius:22px;
    overflow:hidden;
    background:#081c3a;
    border:2px solid rgba(255,255,255,.12);
    box-shadow:0 15px 40px rgba(0,0,0,.30);
    transition:.45s ease;
}
/* Hover */
.premium-map:hover{
    transform:translateY(-8px);
    box-shadow:
        0 30px 60px rgba(0,0,0,.45),
        0 0 25px rgba(47,183,255,.20);
}
/*====================================
MAP
====================================*/
.premium-map iframe{
    width:100%;
    height:100%;
    border:0;
    transition:.7s ease;
}
.premium-map:hover iframe{
    transform:scale(1.08);
}
/*====================================
SHINE EFFECT
====================================*/
.premium-map::before{
    content:"";
    position:absolute;
    top:-140%;
    left:-60%;
    width:45%;
    height:350%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.28),
        transparent);
    transform:rotate(25deg);
    transition:1s;
    z-index:5;
}
.premium-map:hover::before{
    left:170%;
}
/*====================================
BOTTOM GRADIENT
====================================*/
.map-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px;
    display:flex;
    justify-content:center;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.80));
}
/*====================================
LOCATION BADGE
====================================*/
.location-badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:20;
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:40px;
    color:#fff;
    background:rgba(8,28,58,.80);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.12);
    font-size:14px;
    font-weight:500;
    animation:floating 3s ease-in-out infinite;
}
.location-badge i{
    color:#9acd32;
    font-size:18px;
}
@keyframes floating{
0%{
transform:translateY(0);
}
50%{
transform:translateY(-6px);
}
100%{
transform:translateY(0);
}
}
/*====================================
BUTTON
====================================*/
.direction-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-weight:500;
    background:linear-gradient(
        135deg,
        #9acd32,
        #6fa900);
    transition:.35s;
}
.direction-btn i{
    font-size:18px;
}
.direction-btn:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:
        0 12px 30px rgba(154,205,50,.45);
}
/*====================================
GLOW BORDER
====================================*/
.premium-map::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    border:2px solid rgba(255,255,255,.10);
    box-shadow:
        inset 0 0 20px rgba(255,255,255,.08);
    pointer-events:none;
}
/*====================================
MAP PULSE
====================================*/
.location-badge::after{
    content:"";
    width:10px;
    height:10px;
    border-radius:50%;
    background:#9acd32;
    animation:pulse 1.8s infinite;
}
@keyframes pulse{
0%{
transform:scale(.8);
opacity:1;
}
70%{
transform:scale(2);
opacity:0;
}
100%{
opacity:0;
}
}
/*==========================
SOCIAL MEDIA ICONS
==========================*/

.social-links{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:auto;
}

.social-links a{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:18px;
    position:relative;
    overflow:hidden;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    transition:.4s ease;
}

/* Shine Effect */
.social-links a::before{
    content:"";
    position:absolute;
    top:-120%;
    left:-120%;
    width:220%;
    height:220%;
    background:linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,.35),
        transparent);
    transform:rotate(25deg);
    transition:.7s;
}
.social-links a:hover::before{
    top:100%;
    left:100%;
}
/* Hover Animation */
.social-links a:hover{
    transform:translateY(-6px) scale(1.12) rotate(-8deg);
    box-shadow:0 10px 22px rgba(0,0,0,.35);
}
/* Brand Colors */
.youtube:hover{
    background:#FF0000;
}
.linkedin:hover{
    background:#0077B5;
}
/* Icon Animation */
.social-links a i{
    position:relative;
    z-index:2;
    transition:.3s;
}
.social-links a:hover i{
    transform:scale(1.15);
}
.social-links a{
    animation:socialFloat 3s ease-in-out infinite;
}
.social-links a:nth-child(2){
    animation-delay:.3s;
}
.social-links a:nth-child(3){
    animation-delay:.6s;
}
@keyframes socialFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-4px);
    }
}
/*=========================================================
RESPONSIVE DESIGN
=========================================================*/
/*=========================
Large Desktop (1400px+)
=========================*/
@media (min-width:1400px){
    .connect-card{
        min-height:240px;
    }
    .premium-map{
        min-height:290px;
    }
}
/*=========================
Laptop
=========================*/
@media (max-width:1199px){
    .connect-section{
        padding:90px 0;
    }
    .connect-title{
        font-size:30px;
    }
    .connect-subtitle{
        font-size:16px;
    }
    .connect-card{
        min-height:2300px;
        padding:24px;
    }
    .premium-map{
        min-height:240px;
    }
}
/*=========================
Tablet
=========================*/
@media (max-width:991px){
    .connect-section{
        padding:70px 0;
    }
    .connect-title{
        font-size:30px;
        line-height:1.3;
    }
    .connect-subtitle{
        font-size:15px;
        line-height:1.7;
    }
    .connect-card{
        min-height:2200px;
        padding:22px;
    }
    .card-icon{
        width:32px;
        height:32px;
        font-size:15px;
    }
    .premium-map{
        min-height:220px;
    }
    .location-badge{
        font-size:12px;
        padding:8px 15px;
    }
    .direction-btn{
        padding:10px 20px;
        font-size:14px;
    }
     .social-links{
        gap:10px;
        margin-top:20px;
    }
    .social-links a{
        width:40px;
        height:40px;
        font-size:17px;
        border-radius:10px;
    }
}
/*=========================
Mobile
=========================*/
@media (max-width:767px){
    .connect-section{
        padding:55px 15px;
    }
    .connect-badge{
        font-size:11px;
        padding:8px 18px;
    }
    .connect-title{
        font-size:25px;
    }
    .connect-subtitle{
        font-size:14px;
    }
    .connect-section .col-lg-6{
        display:block;
    }
    .connect-card{
        min-height:auto;
        padding:18px;
        border-radius:18px;
        margin-bottom:20px;
    }
    .card-icon{
        width:32px;
        height:32px;
        font-size:18px;
    }
    .connect-card h3{
        font-size:15px;
    }
    .connect-card h4{
        font-size:16px;
    }
    .connect-card p{
        font-size:13px;
    }
    .contact-info{
        gap:12px;
    }
    .contact-info a{
        font-size:14px;
    }
    .contact-info a i{
        width:36px;
        height:36px;
        font-size:15px;
    }
    .premium-map{
        min-height:210px;
        border-radius:16px;
    }
    .location-badge{
        top:12px;
        left:12px;
        font-size:11px;
        padding:7px 12px;
    }
    .direction-btn{
        width:100%;
        justify-content:center;
        font-size:13px;
        padding:10px;
    }
    .social-links{
        justify-content:center;
        gap:12px;
        margin-top:18px;
    }
    .social-links a{
        width:40px;
        height:40px;
        font-size:16px;
        border-radius:10px;
    }
}
/*=========================
Small Mobile
=========================*/
@media (max-width:576px){
    .connect-title{
        font-size:22px;
    }
    .connect-subtitle{
        font-size:13px;
    }
    .connect-card{
        padding:16px;
    }
    .connect-card h3{
        font-size:18px;
    }
    .connect-card h4{
        font-size:16px;
    }
    .connect-card p{
        font-size:12px;
    }
    .card-icon{
        width:42px;
        height:42px;
        font-size:16px;
    }
    .premium-map{
        min-height:180px;
    }
    .location-badge{
        font-size:10px;
        padding:6px 10px;
    }
    .direction-btn{
        font-size:12px;
        padding:8px;
    }
     .social-links{
        gap:10px;
        flex-wrap:wrap;
    }
    .social-links a{
        width:38px;
        height:38px;
        font-size:15px;
        border-radius:9px;
    }
}

/*=========================================================
FOOTER
=========================================================*/
.footer-section{
    background:#081c3a;
    border-top:3px solid #9acd32;
    padding:35px 0;
}
.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
}
.footer-logo img{
    width:38px;
    height:38px;
    background:#fff;
    padding:6px;
    border-radius:10px;
}
.footer-logo span{
    color:#fff;
    font-weight:500;
    font-size:16px;
}
.footer-tagline{
    color:#9acd32;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    line-height:1.8;
}
.footer-copy{
    color:#d6deea;
    font-size:14px;
}
@media(max-width:767px){
    .footer-logo{
        justify-content:center;
        flex-direction:column;
        text-align:center;
    }
    .footer-tagline{
        margin:20px 0;
        text-align:center;
    }
    .footer-copy{
        text-align:center;
        font-size:13px;
    }
}
/* ===========================
   PORTFOLIO SECTION
=========================== */
.portfolio-section{
    padding:50px 0;
    background:#f8fbff;
}
.portfolio-subtitle{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding:8px 24px;
    background: #0B3D91; /* Blue background */
    color: #fff;         /* White text */
    border: 1px solid #0B3D91;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 18px; 
    letter-spacing:2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.portfolio-subtitle i{
    color: #9ACD32; /* Green icon */
}

.portfolio-subtitle:hover{
    background: #0A337A; /* Slightly darker blue */
    border-color: #0A337A;
}
.portfolio-title{
    font-size:30px;
    font-weight:500;
    color:#081C3A;
    margin-bottom:21px;
}
.portfolio-desc{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}
/* ===========================
   CARD
=========================== */
.portfolio-card{
    background:#fff;
    border-radius:18px;
    overflow:visible;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    height:100%;
    width: 100%;
    z-index:1; 
}
.portfolio-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
    z-index:9999;    
}
.portfolio-image{
    width:100%;
    height:220px;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
     border-radius:18px 18px 0 0;
}

.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:contain;      /* Shows full image */
    object-position:center;
    padding:8px;
    transition:.4s;
}

.portfolio-card:hover .portfolio-image img{
    transform:scale(1.03);
}
/* ===========================
   OVERLAY
=========================== */
.portfolio-overlay{
    position:absolute;
    inset: 0;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(11,61,145,.55);
    backdrop-filter:blur(3px);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.4s ease;
    z-index:10;
    overflow:visible;   
}
.portfolio-card:hover .portfolio-overlay{
    opacity:1;
    visibility:visible;
}
/* ===========================
   ICONS
=========================== */
.portfolio-icons{
     display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}
.icon-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    color:#0B3D91;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    font-size:16px;
    position:relative;
    transition:.3s;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}
.icon-btn:hover{
    background:#9acd32;
    color:#fff;
    transform:scale(1.08);
}
.project-tooltip{
    position:absolute;
    width:260px;
    background:#fff;
    color:#333;
    padding:18px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:99999;
    text-align:left;
}
.info-btn:hover .project-tooltip{
    opacity:1;
    visibility:visible;
}
/* Common Arrow */
.project-tooltip::before{
    content:"";
    position:absolute;
}
/* TOP Tooltip Arrow */
.tooltip-top::before{
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-top:10px solid #fff;
}
/* BOTTOM Tooltip Arrow */
.tooltip-bottom::before{
    top:-10px;
    left:50%;
    transform:translateX(-50%);
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-bottom:10px solid #fff;
}
/* LEFT Tooltip Arrow */
.tooltip-left::before{
    right:-10px;
    top:50%;
    transform:translateY(-50%);
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
    border-left:10px solid #fff;
}
/* RIGHT Tooltip Arrow */
.tooltip-right::before{
    left:-10px;
    top:50%;
    transform:translateY(-50%);
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
    border-right:10px solid #fff;
}
/* Tooltip Content */
.project-tooltip h5{
    color:#0B3D91;
    margin-bottom:10px;
    font-size:18px;
    font-weight:600;
}
.project-tooltip p{
    font-size:13px;
    line-height:1.6;
    color:#555;
    margin-bottom:10px;
}
.project-tooltip ul{
    margin:0;
    padding-left:18px;
}
.project-tooltip ul li{
    font-size:13px;
    margin-bottom:5px;
}
/* ===========================
   CONTENT
=========================== */
.portfolio-content{
    padding:22px;
    text-align:center;
}
.portfolio-content h5{
    margin:0;
    color:#081C3A;
    font-size:15px;
    font-weight:500;
}
/* ===========================
   GALLERY
=========================== */
.gallery-modal{
    position:fixed;
    inset:0;
   background:linear-gradient(rgba(0,0,0,.92),rgba(0,0,0,.96));
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    z-index:99999;
}
.gallery-modal.active{
    display:flex;
}
#galleryImage{
    max-width:90%;
    max-height:75vh;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:15px;
    background:#fff;
    padding:8px;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
     animation:fadeZoom .4s ease;
}
@keyframes fadeZoom{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}
.gallery-close{
    position:absolute;
    top:20px;
    right:35px;
    font-size:45px;
    transition:.3s;
    color:#fff;
    cursor:pointer;
}
.gallery-close:hover{
    color:#9ACD32;
    transform:rotate(90deg);
}
.gallery-prev,
.gallery-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    backdrop-filter:blur(10px);
    cursor:pointer;
    font-size:22px;
    transition:.3s;

}
.gallery-prev:hover,
.gallery-next:hover{
    background:#9ACD32;
    transform:translateY(-50%) scale(1.1);
}
.gallery-prev{
    left:40px;
}
.gallery-next{
    right:40px;
}
.gallery-info{
    margin-top:25px;
    text-align:center;
    color:#fff;
}
.gallery-info h3{
    margin-bottom:8px;
    font-size:28px;
}
.gallery-info p{
    margin:0;
    color:#ccc;
}
/* ===========================
   VIDEO MODAL
=========================== */
.modal-content{
    border-radius:15px;
    overflow:hidden;
}
#portfolioVideo{
    border-radius:15px;
}
/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:991px){
.portfolio-title{
font-size:25px;
}
.portfolio-card img{
height:220px;
}
}
@media(max-width:767px){
.portfolio-title{
font-size:25px;
}
.portfolio-card img{
height:200px;
}
.gallery-prev{
left:10px;
}
.gallery-next{
right:10px;
}
.gallery-prev,
.gallery-next{
width:45px;
height:45px;
font-size:18px;
}

#galleryImage{
max-width:95%;
}
.gallery-info h3{
font-size:20px;
}
}
@media(max-width:576px){
.portfolio-section{
padding:70px 0;
}
.portfolio-title{
font-size:20px;
}
.portfolio-desc{
font-size:15px;
}
.portfolio-content h5{
font-size:18px;
}
.icon-btn{
width:45px;
height:45px;
font-size:18px;
}
.portfolio-card img{
height:180px;
}
.gallery-close{
font-size:35px;
top:10px;
right:20px;
}
}