*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#f6f6f6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* TOP SERVICE TICKER */

.top-marquee{
background:#0b1c3a;
color:white;
padding:10px 0;
overflow:hidden;
font-size:15px;
}

.marquee-wrapper{
overflow:hidden;
white-space:nowrap;
}

.marquee-content{
display:flex;
align-items:center;
gap:70px;
animation:marqueeMove 20s linear infinite;
}

/* SERVICE ITEM */

.marquee-content span{
display:flex;
align-items:center;
gap:8px;
font-weight:500;
}

/* ICON STYLE */

.marquee-content i{
color:#fff;
font-size:13px;
}

/* DOT SEPARATOR */

/* .marquee-content span::before{
content:"•";
margin-left:10px;
color:#fff;
} */

/* ANIMATION */

@keyframes marqueeMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* HEADER */

.site-header{
background:white;
border-radius:0 0 40px 40px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
padding:18px 0;
position:sticky;
top:0;
z-index:999;
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:80px;
}

/* NAVIGATION */

.main-nav ul{
display:flex;
list-style:none;
align-items:center;
}

.main-nav ul li{
margin:0 18px;
position:relative;
}

.main-nav ul li a{
text-decoration:none;
color:#222;
font-weight:600;
font-size: 20px;
}

.header-btn a{
background:#0b1d51;
color:white;
padding:15px 32px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

/* MEGA MENU */

.mega-parent{
position:relative;
}
.hero-phone a {
    text-decoration: none;
}
.about-chooseUs-phone a {
    text-decoration: none;
}
.mega-menu{
position:absolute;
top:100%;
left:-450px;
width:900px;
background:#eef2fb;
padding:35px;
border-radius:20px;
display:none;
grid-template-columns:repeat(3,1fr);
gap:30px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* hover trigger */

.mega-parent:hover .mega-menu{
display:grid;
}

/* TRUST / PARTNERS SECTION */

.trust-section{
padding:70px 0;
background:#0b1c3a;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(7,1fr);
gap:35px;
align-items:center;
justify-items:center;
}

/* CARD */

.trust-card{
background:white;
padding:25px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
display:flex;
align-items:center;
justify-content:center;
height:120px;
width:140px;
transition:0.3s;
}

/* LOGO */

.trust-card img{
max-width:100%;
max-height:100px;
object-fit:contain;
}

/* HOVER */

.trust-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.mega-item{
padding:25px;
border-radius:16px;
transition:.3s;
cursor:pointer;
display:flex;
flex-direction:column;
justify-content:center;
min-height:120px;
}

.mega-item h4{
color:#2d5bd1;
font-size:16px;
margin-bottom:6px;
}

.mega-item p{
font-size:14px;
color:#444;
line-height:1.5;
font-weight: 400;
}

.mega-item:hover{
background: linear-gradient(135deg, #0b1c3a, #0b1d51);
color:white;
}

.mega-item:hover h4{
color:white;
}

.mega-item:hover p{
color:white;
}
.mega-parent::after{
content:"";
position:absolute;
top:100%;
left:0;
width:100%;
height:20px;
}
.mega-item i {
    margin-right: 5px;
}

/* MOBILE MENU BUTTON */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* MOBILE CONTACT BUTTON */

.mobile-contact{
display:none;
}
/* FOOTER */

/* FOOTER */

.site-footer{
background:#0b1c3a;
color:white;
padding-top:70px;
border-radius:40px 40px 0 0;
}

.footer-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
padding-bottom:40px;
}

.footer-col h3,
.footer-col h4{
margin-bottom:15px;
}

.footer-col p{
color:#d4d8e4;
line-height:1.6;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
text-decoration:none;
color:#d4d8e4;
}

.footer-col ul li a:hover{
color:white;
}

/* CONTACT ICONS */

.footer-contact p{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
}

.footer-contact i{
color:#fff;
font-size:16px;
}

/* SOCIAL */

.footer-social{
margin-top:20px;
display:flex;
gap:15px;
}

.footer-social a{
width:38px;
height:38px;
background:#142b66;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
transition:.3s;
}

.footer-social a:hover{
background:#4da3ff;
}

/* BOTTOM */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.15);
text-align:center;
padding:20px;
color:#c7ccda;
font-size:14px;
}

.foo-address i {
    margin-top: -25px;
}

/* HERO SECTION */

.hero-section{
padding:50px 0;
background-image: radial-gradient(#d6dbe6 1px, transparent 2px);
background-size: 25px 25px;
}

.hero-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
}



/* LEFT */

.hero-left{
flex:1;
}

.hero-left h1{
font-size:48px;
color:#0b1c3a;
line-height:1.2;
margin-bottom:10px;
}

.hero-left h2{
font-size:60px;
color:#0b1c3a;
margin-bottom:20px;
font-weight:800;
}

.hero-left p{
max-width:480px;
color:#444;
margin-bottom:30px;
line-height:1.6;
}

.hero-actions{
display:flex;
align-items:center;
gap:25px;
flex-wrap:wrap;
}

.hero-btn{
background:#0b1c3a;
color:white;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.hero-phone span{
display:block;
font-size:14px;
color:#666;
}

.hero-phone strong{
font-size:30px;
color:#0b1c3a;
}

/* RIGHT SLIDER */

.hero-right{
flex:1;
position:relative;
}

.hero-slider{
position:relative;
width:100%;
height:500px;
}

.slide{
position:absolute;
width:100%;
height:100%;
object-fit:contain;
opacity:0;
transition:opacity .6s ease;
}

.slide.active{
opacity:1;
}

/* =========================
SECTION HEADER
========================= */

.offer-header{
text-align:center;
margin-bottom:50px;
}

.offer-header h2{
font-size:42px;
color:#0b1c3a;
margin-bottom:10px;

}

.offer-header p{
color:#555;
max-width:700px;
margin:auto;
}


/* =========================
CONTAINER
========================= */

.offer-container{
display:flex;
height:65vh;
overflow:hidden;
}


/* =========================
ACCORDION ITEMS
========================= */

.offer-section-inner{
flex:1;
display:flex;
justify-content:center;
align-items:center;
background-size:cover;
background-position:center;
position:relative;
transition:flex .4s ease;
cursor:pointer;
border-left:2px solid #ffffff;
color:white;
}


/* =========================
OVERLAY
========================= */

.offer-section-inner .overlay{
background:rgba(0,0,0,0.25);
width:100%;
height:100%;
position:absolute;
top:0;
left:0;
transition:.4s;
}

.offer-section-inner:hover .overlay{
background:rgba(0,0,0,0.45);
}


/* =========================
CONTENT
========================= */

.offer-section-inner .content{
position:relative;
z-index:2;
text-align:center;
}


/* =========================
VERTICAL TITLE
========================= */

.offer-section-inner h1{
font-size:28px;
writing-mode:vertical-rl;
transform:rotate(180deg);
letter-spacing:3px;
transition:.4s;
}


/* =========================
EXPAND EFFECT
========================= */

.offer-section-inner:hover{
flex:3;
}

.offer-section-inner:hover h1{
writing-mode:horizontal-tb;
transform:none;
font-size:34px;
}


/* =========================
EXPLORE BUTTON
========================= */

.offer-section-inner a{
position:absolute;
bottom:50px;
left:50%;
transform:translateX(-50%);
color:white;
text-decoration:none;
font-weight:600;
font-size:22px;
opacity:0;
transition:.4s;
z-index:2;
}

.offer-section-inner:hover a{
opacity:1;
bottom:110px;
}
section.offer-section {
    padding: 60px 0px;
}

/* =========================
BACKGROUND IMAGES
========================= */

#matching1{
background-image:url(images/web.jpg);
}

#matching2{
background-image:url(images/seo_1.jpg);
}

#matching3{
background-image:url(images/ppc_1.jpg);
}

#matching4{
background-image:url(images/social_media.jpg);
}

#matching5{
background-image:url(images/e-commerce.png);
}

#matching6{
background-image:url(images/web-design.png);
}

/* =========================
TABLET
========================= */

@media (max-width:1024px){

.offer-container{
height:60vh;
}

.offer-section-inner h1{
font-size:22px;
}

.offer-section-inner:hover h1{
font-size:26px;
}
.trust-grid{
grid-template-columns:repeat(4,1fr);
}

}


/* =========================
MOBILE FIX
========================= */

@media (max-width:768px){
    
.trust-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.trust-card{
height:100px;
width:100%;
}
.trust-card img {
    max-height: 90px;
}
.offer-container{
flex-direction:column;
height:auto;
gap:15px;
}

/* NORMAL CARD STYLE */

.offer-section-inner{
flex:none !important;
height:180px;
width:100%;
border:none;
border-radius:10px;
overflow:hidden;
}

/* REMOVE VERTICAL TEXT */

.offer-section-inner h1{
writing-mode:horizontal-tb;
transform:none;
font-size:22px;
}

/* REMOVE EXPAND EFFECT */

.offer-section-inner:hover{
flex:none;
}

/* EXPLORE BUTTON ALWAYS VISIBLE */

.offer-section-inner a{
opacity:1;
bottom:20px;
}

}
/* WHY SECTION */

.why-section{
padding:100px 0;
background:#f7f7f7;
}

.why-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

/* STATS GRID */

.why-stats{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

/* CARD */

.stat-card{
background:white;
border-radius:20px;
padding:40px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:.3s;
}

.stat-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.stat-card h3{
font-size:36px;
color:#0b1c3a;
margin-bottom:8px;
}

.stat-card p{
color:#555;
}

/* RIGHT CONTENT */

.why-content h2{
font-size:44px;
color:#0b1c3a;
margin-bottom:20px;
}

.why-content p{
color:#444;
line-height:1.7;
margin-bottom:20px;
max-width:520px;
}

/* LIST */

.why-list{
list-style:none;
padding:0;
margin:30px;
}

.why-list li{
margin-bottom:12px;
padding-left:28px;
position:relative;
color:#333;
}

.why-list li:before{
content:"✔";
position:absolute;
left:0;
color:#0b1c3a;
font-weight:bold;
}

/* BUTTON */

.why-btn{
display:inline-block;
background:#0b1c3a;
color:white;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.why-btn:hover{
background:#162a63;
}

.testimonial-section{
padding:100px 0;
background:#eef1f7;
}

.testimonial-header{
text-align:center;
margin-bottom:60px;
}

.testimonial-header h2{
font-size:42px;
color:#0b1c3a;
margin-bottom:10px;
}

.testimonial-grid{
display:flex;
justify-content:center;
gap:80px;
flex-wrap:wrap;
}
.mega_menu_icons_item {
    width: 30px;
    margin-bottom: 10px;
}
/* CARD */

.testimonial-card{
position:relative;
text-align:center;
width:220px;
cursor:pointer;
}

/* IMAGE */

.client-img{
width:110px;
height:110px;
margin:auto;
border-radius:50%;
overflow:hidden;
margin-bottom:15px;
border:4px solid white;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.client-img img{
width:100%;
height:100%;
object-fit:cover;
}

/* NAME */

.testimonial-card h3{
font-size:18px;
color:#0b1c3a;
margin-bottom:5px;
}

.testimonial-card span{
color:#777;
font-size:14px;
}

/* TEXT BOX */

.testimonial-text{
position:absolute;
top:160px;
left:50%;
transform:translateX(-50%);
background:#0b2a5a;
color:white;
padding:18px;
border-radius:12px;
width:260px;
font-size:14px;
opacity:0;
visibility:hidden;
transition:0.35s;
}

/* ARROW TOP */

.testimonial-text:before{
content:"";
position:absolute;
top:-10px;
left:50%;
transform:translateX(-50%);
border-width:10px;
border-style:solid;
border-color:transparent transparent #0b2a5a transparent;
}

/* SHOW ON HOVER */

.testimonial-card:hover .testimonial-text{
opacity:1;
visibility:visible;
top:180px;
}

/* CONTACT SECTION */

.home-contact{
padding:70px 0;
background:#eef2f7;
}

.contact-header{
text-align:center;
margin-bottom:50px;
}

.contact-header h2{
font-size:42px;
color:#0b1c3a;
margin-bottom:15px;
}

.contact-header p{
max-width:700px;
margin:auto;
color:#555;
line-height:1.6;
}


/* GRID */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}


/* LEFT CONTACT INFO */

.contact-info{
display:flex;
flex-direction:column;
gap:25px;
}

.contact-item{
display:flex;
align-items:center;
gap:15px;
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.contact-item i{
font-size:20px;
color:#0b1d51;
background:#eef2fb;
padding:12px;
border-radius:10px;
}

.contact-item h4{
margin-bottom:4px;
color:#0b1c3a;
}

.contact-item p{
color:#555;
}


/* FORM */

/* FORM CARD */

.contact-form{
background:white;
padding:35px;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* GROUP */

.form-group{
position:relative;
margin-bottom:22px;
}

/* ICON */

.form-group i{
position:absolute;
left:14px;
top:50%;
transform:translateY(-50%);
color:#0b1d51;
font-size:14px;
}

/* INPUT */

.form-group input,
.form-group textarea{
width:100%;
padding:14px 14px 14px 42px;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
outline:none;
transition:.3s;
}

/* TEXTAREA */

.form-group.textarea textarea{
height:120px;
padding-top:16px;
}

/* LABEL */

.form-group label{
position:absolute;
left:42px;
top:14px;
font-size:14px;
color:#777;
pointer-events:none;
transition:.3s;
background:white;
padding:0 5px;
}

/* FLOAT LABEL */

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label{
top:-8px;
font-size:12px;
color:#2d5bd1;
}

/* INPUT FOCUS */

.form-group input:focus,
.form-group textarea:focus{
border-color:#2d5bd1;
box-shadow:0 0 0 3px rgba(45,91,209,0.1);
}

/* BUTTON */

.form-btn{
width:100%;
background:#0b1c3a;
color:white;
border:none;
padding:14px;
border-radius:30px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.3s;
}
.textarea i.fas.fa-comment {
    top: 20%;
}
.form-btn:hover{
background:#142a66;
transform:translateY(-2px);
}

/* ---------- PORTFOLIO (RESPONSIVE) ---------- */

    .portfolio {
    background: #ffffff;
    padding: 3.5rem 0;
    }

    section.portfolio-section {
        padding: 50px 0px;
        background: #eef1f7;
    }

    .portfolio .section-header {
    text-align: center;
    margin-bottom: 4rem;
    }

    .portfolio .section-header h2{
        font-size: 42px;
        color: #0b1c3a;
        margin-bottom: 10px;
    }

    .portfolio-strip {
    display: flex;
    flex-wrap: wrap;               /* allows wrapping on small screens */
    justify-content: center;
    gap: 1.25rem;
    padding: 0 0.4rem 0.7rem;
    }

    /* half-visible tall thumbnails */
    .portfolio-item {
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 24px;
    overflow: hidden;
    background: #0b0c10;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    }

    .portfolio-item.half-thumb {
    width: min(220px, 45vw);       /* scales with screen */
    aspect-ratio: 9 / 16;          /* keeps phone-like shape */
    }

    /* show top part, nicely cropped */
    .portfolio-item.half-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.25s ease-in-out;
    }

    .portfolio-item.half-thumb:hover img {
    transform: translateY(-8%);
    }

    .portfolio-note {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #70758a;
    }

    /* larger screens – slightly wider cards */
    @media (min-width: 992px) {
    .portfolio-item.half-thumb {
        width: 150px;
    }
    }

    /* very small screens – one big card per row */
    @media (max-width: 480px) {
    .portfolio-strip {
        justify-content: center;
    }

    .portfolio-item.half-thumb {
        width: 80vw;
    }
    }

    /* ---------- LIGHTBOX (still responsive) ---------- */

    .portfolio-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    }

    .portfolio-lightbox.is-open {
    display: flex;
    }

    .portfolio-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    }

    .portfolio-lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 90vh;
    z-index: 5;
    overflow: hidden;
    }

    .portfolio-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    transform: scale(1);
    transition: transform 0.2s ease;
    cursor: grab;
    }

    /* toolbar with zoom + close */
    .lightbox-toolbar {
    position: absolute;
    top: -48px;
    right: 0;
    display: flex;
    gap: 10px;
    }

    .lightbox-toolbar button {
    background: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    }

    .portfolio-lightbox-close {
    font-size: 20px;
    }

    @media (max-width: 640px) {
    .portfolio-item.half-thumb {
        height: 220px;
    }
    .lightbox-toolbar {
        top: -40px;
    }
    .portfolio-lightbox-close {
        top: -36px;
        right: 0;
    }
    }

/* =========Service page Start========= */
.section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
color:#0b1c3a;
}


/* HERO */

.service-hero{
padding:100px 0;
background:#f5f7fb;
}

.hero-wrap{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.hero-text h1{
font-size:48px;
margin-bottom:20px;
}

.hero-text p{
font-size:18px;
margin-bottom:25px;
}

.hero-img img{
width:450px;
}

.hero-btns{
display:flex;
gap:15px;
}

.btn-primary{
background:#0b1c3a;
color:white;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
}

.btn-outline{
border:2px solid #0b1c3a;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
color:#0b1c3a;
}


/* FEATURES */

.service-features{
padding:90px 0;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.feature-card{
background:white;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:.3s;
}

.feature-card:hover{
transform:translateY(-8px);
}

.feature-card i{
font-size:32px;
color:#2d5bd1;
margin-bottom:15px;
}


/* PROCESS */

.service-process{
padding:90px 0;
background:#f5f7fb;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.process-step{
background:white;
padding:25px;
border-radius:12px;
text-align:center;
}

.process-step span{
display:inline-block;
width:40px;
height:40px;
background:#2d5bd1;
color:white;
border-radius:50%;
line-height:40px;
margin-bottom:10px;
}


/* PORTFOLIO */

.service-portfolio{
padding:90px 0;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.portfolio-item img{
width:100%;
border-radius:10px;
}


/* FAQ */

.service-faq{
padding:90px 0;
background:#f5f7fb;
}

.faq-item{
background:white;
padding:20px;
border-radius:10px;
margin-bottom:15px;
}

/* CTA */
.service-cta{
padding:80px 0;
text-align:center;
background:#0b1c3a;
color:white;
}

.cta-wrap a{
margin-top:20px;
display:inline-block;
}

.service-section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
color:#0b1c3a;
}


/* HERO */

.service-hero-section{
padding: 50px 0;
background-image: radial-gradient(#d6dbe6 1px, transparent 2px);
background-size: 25px 25px;
}

.service-hero-container{
display:flex;
align-items:center;
gap:60px;
}

.service-hero-left h1{
font-size:46px;
margin-bottom:20px;
}

.service-hero-left p{
font-size:18px;
margin-bottom:25px;
letter-spacing: 1px;
}

.service-hero-right img{
width:420px;
}

/* HERO POINTS */

.service-hero-points{
list-style:none;
padding:0;
margin:25px 0;
}

.service-hero-points li{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
font-size:16px;
color:#333;
}

.service-hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 25px;
}

.service-hero-points i{
color:#0b1d51;
font-size:16px;
}

/* BUTTONS */

.service-btn-primary{
background:#0b1c3a;
color:white;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
}

.service-btn-outline{
border:2px solid #0b1c3a;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
color:#0b1c3a;
}


/* BENEFITS */

.service-benefits-section{
padding:60px 0;
}

.service-benefits-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.service-benefit-card h3 {
    margin: 15px 0px;
    line-height: 10px;
}

.service-benefit-card{
background:white;
padding:30px;
text-align:center;
border-radius:15px;
box-shadow:0 10px 20px #0b2a5a8a;
}

.service-benefit-card i{
font-size:40px;
color:#2d5bd1;
margin-bottom:15px;
}


/* OFFER */

.service-features-tabs{
padding:100px 0;
background:#eef1f7;
}

.service-tabs-header{
text-align:center;
max-width:750px;
margin:auto;
margin-bottom:40px;
}

.service-tabs-header h2{
font-size:40px;
margin-bottom:20px;
}

.service-tabs{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:40px;
}

.service-tab{
padding: 15px 22px;
border: none;
font-size: 14px;
background: #eee;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
}

.service-tab.active{
background:#2d5bd1;
color:white;
}

.service-tab-pane{
display:none;
}
.service-tabs-header p {
    line-height: 25px;
    word-spacing: 2px;
    margin-bottom: 60px;
}
.service-tab-pane.active{
    display: block;
    padding: 30px 30px 40px 30px;
    box-shadow: 0 5px 20px #0b2a5a26;
    border-radius: 20px;
    background: #fff;
}

.service-tab-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: center;
}

.service-tab-text h3{
font-size:25px;
margin: 20px 0px;
}

.service-tab-text .flex-both-side ul{
list-style: none;
padding: 0;
margin-top: 50px;
margin-left: 130px;
display: grid;
/*grid-template-columns: 1fr 1fr;*/
gap: 20px;
text-align: left;
align-items: center;
align-content: center;
}
.flex-both-side{
    display: flex !important;
    gap: 120px;
    margin-left: 60px !important;
}
.flex-both-side img {
    width: 300px;
}
.service-tab-text li{
margin-bottom:10px;
position:relative;
padding-left:25px;
}

.service-tab-text li::before{
content:"✔";
position:absolute;
left:0;
color:#2d5bd1;
}

.service-tab-image img{
width:100%;
border-radius:12px;
}

/* PROCESS */

.process-section{
padding:50px 20px;
background:#f7f9fc;
}

.process-title{
text-align:center;
font-size:42px;
margin-bottom:80px;
color:#0b2a4a;
font-weight:700;
}

.process-wrapper{
display:flex;
align-items:center;
justify-content:center;
/* flex-wrap:wrap; */
gap:20px;
max-width:1200px;
margin:auto;
}

/* STEP CARD */

.process-step{
background:#fff;
padding:30px 25px;
border-radius:14px;
width:250px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
transition:0.3s;
}

.process-step:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.step-number{
width:48px;
height:48px;
border-radius:50%;
background:#2e5bff;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
margin:0 auto 15px;
font-size:18px;
}

.process-step h3{
font-size:18px;
margin-bottom:10px;
}

.process-step p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* ARROW */

.process-arrow{
width:120px;
}

.process-arrow svg{
width:100%;
}

.process-arrow path{
stroke:#000;
stroke-width:3;
fill:none;
stroke-dasharray:300;
stroke-dashoffset:300;
animation:drawArrow 4s infinite linear;
}

.process-arrow polygon{
fill:#000;
}

@keyframes drawArrow{

0%{
stroke-dashoffset:300;
}

100%{
stroke-dashoffset:0;
}

}


/* FAQ */

.faq-section{
    padding:80px 0;
    background:#f6f7f9;
}

.faq-title{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:50px;
    color:#0b2a4a;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    overflow:hidden;
}

.faq-question{
    width:100%;
    padding:12px 25px;
    font-size:18px;
    font-weight:600;
    text-align:left;
    border:none;
    background:none;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question:hover{
    background:#f5f5f5;
}

.icon{
    font-size:24px;
    font-weight:bold;
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
    padding:0 25px;
}

.faq-answer p{
    padding: 15px 0px;
    color:#555;
    line-height:1.6;
}


/* CTA */

.cta-section{
    padding:120px 20px;
    background:#0b2a4a;
}

.cta-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-size:40px;
    margin-bottom:15px;
}

.cta-box p{
    font-size:18px;
    color:#cfd8e3;
    margin-bottom:45px;
}

/* row layout */

.cta-actions{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

/* button */

.cta-btn{
    padding:16px 40px;
    background:#ffffff;
    color:#0b2a4a;
    font-weight:600;
    border-radius:40px;
    text-decoration:none;
    transition:0.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* phone */

.cta-phone{
    text-align:left;
}

.cta-phone span{
    display:block;
    font-size:14px;
    color:#cfd8e3;
}

.cta-phone a{
    font-size:35px;
    font-weight:700;
    color:#fff;
    text-decoration:none;
}

/* =========Service page End========= */

/* CONTACT HERO */

.contact-hero-section{
padding:100px 0;
text-align:center;
background-image: radial-gradient(#d6dbe6 1px, transparent 2px);
background-size:25px 25px;
}

.contact-hero-container{
max-width:750px;
margin:auto;
}

.contact-hero-container h1{
font-size:48px;
color:#0b1c3a;
margin-bottom:20px;
}

.contact-hero-container p{
color:#555;
font-size:18px;
line-height:1.7;
margin-bottom:35px;
}

.contact-hero-actions{
display:flex;
justify-content:center;
align-items:center;
gap:30px;
flex-wrap:wrap;
}
/* ABOUT HERO */

.about-hero{
text-align:center;
padding: 70px 0;
background-image: radial-gradient(#d6dbe6 1px, transparent 2px);
background-size: 25px 25px;
}

.about-intro-text h2 {
    margin: 20px 0px;
    font-size: 35px;
    color:#0b1c3a;
}
.about-intro-text p {
    letter-spacing: .0px;
    margin: 10px 0px;
    font-size: 17px;
}

.about-hero h1{
font-size:48px;
margin-bottom:20px;
color:#0b1c3a;
}

.about-hero p{
max-width:650px;
margin:auto;
color:#555;
line-height:1.7;
}



/* INTRO */

.about-intro{
padding:80px 0;
background: #fff;
}

.about-intro-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-intro-img img{
width:100%;
border-radius:16px;
}



/* STATS */

.about-stats{
padding:80px 0;
background:#f6f8fc;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.stat-box{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.stat-box h3{
font-size:34px;
color:#0b1c3a;
margin: 15px 0px;
}



/* MISSION */

.about-mission{
padding:100px 0;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.mission-card{
background:#f7f9fc;
padding:40px;
border-radius:16px;
}



/* WHY */

.about-why{
padding:70px 0;
background:#f6f8fc;
}

.about-why-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-why ul{
margin-top:20px;
}

.about-why ul li{
    list-style: none;
    margin-bottom: 10px;
    gap: 10px;
    display: flex;
}
.about-why-text i {
    color: #0b1d51;
    font-size: 16px;
}
p {
    color: #666;
    word-spacing: 2px;
}

.about-chooseUs-actions {
    margin-top: 40px;
    display: flex;
    gap: 25px;
}

.about-chooseUs-phone span {
    display: block;
    font-size: 14px;
    color: #666;
}
.about-chooseUs-phone strong {
    font-size: 25px;
    color: #0b1c3a;
}

.about-why-img img {
    width: 490px;
}

/* PROCESS */

.about-process{
padding:100px 0;
}
/* IMPACT */

.about-impact{
padding:70px 0;
background:#eef1f7;
}

.impact-header p {
    letter-spacing: 1px;
}

.impact-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:60px;
}

.impact-header h2{
font-size:40px;
margin-bottom:25px;
color:#0b1c3a;
}

.impact-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.impact-card{
background:white;
padding:35px;
border-radius:16px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:.3s;
}

.impact-card:hover{
transform:translateY(-6px);
}

.impact-icon{
font-size:35px;
color:#2d5bd1;
margin-bottom:15px;
}

.impact-card h3 {
    margin: 16px 0px;
}
.impact-card p {
    word-spacing: 2px;
}
.about-why-text h2 {
    margin: 20px 0px;
    font-size: 40px;
    color: #0b1c3a;
}
/* THOUGHTS */

.about-thoughts{
padding:70px 0;
}

.about-hero .contact-hero-actions {
    margin-top: 40px;
}

.thoughts-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:60px;
}

.thoughts-header h2{
font-size:40px;
margin-bottom:10px;
color:#0b1c3a;
}

.thoughts-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.thought-card{
background:#f6f8fc;
padding:35px;
border-radius:16px;
transition:.3s;
}

.thought-card:hover{
background:white;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.thought-card h3{
margin-bottom:10px;
color:#0b1c3a;
}

.floating-btn {
    display: none;
  }
/* ========================
TABLET
======================== */

@media (max-width:1024px){

.mega-menu{
width:600px;
left:-150px;
}
.footer-container{
grid-template-columns:repeat(2,1fr);
}

.trust-grid .trust-card:nth-child(7) {
    grid-column: 1 / span 2;
    justify-self: center;
    width: 50%;
}

.hero-left h1{
font-size:40px;
}

.hero-left h2{
font-size:50px;
}

.hero-slider{
height:420px;
}

.why-container{
grid-template-columns:1fr;
gap:50px;
}

.why-content{
text-align:center;
}

.why-content p{
margin:auto;
}

.contact-grid{
grid-template-columns:1fr;
gap:40px;
}

.contact-info{
order:2;
}

.contact-form{
order:1;
}

.service-hero-container{
flex-direction:column;
text-align:center;
}

.service-benefits-grid{
grid-template-columns:repeat(2,1fr);
}

.service-process-grid{
grid-template-columns:repeat(2,1fr);
}

.service-offer-grid{
grid-template-columns:1fr;
}

.service-what-container{
grid-template-columns:1fr;
}

.service-what-content{
grid-template-columns:1fr;
}

.service-tabs{
flex-direction:row;
overflow-x:auto;
border-right:none;
border-bottom:1px solid #ddd;
}

}
/* ========================
MOBILE
======================== */

@media (max-width:768px){

 /* Floating Button - Mobile Only */
    .floating-btn {
        position: fixed;
        bottom: 50px;
        left: 15%;
        transform: translateX(-50%);
        display: block;
        background-color: #007bff;
        color: #fff;
        padding: 25px 25px;
        border-radius: 50px;
        font-size: 26px;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transition: all 0.3s ease;
    }
    
    /* Hover Effect */
    .floating-btn:hover {
      background-color: #0056b3;
    }


.menu-toggle{
display:block;
}

.header-btn{
display:none;
}

.main-nav{
position:absolute;
top:100px;
left:0;
width:100%;
background:white;
display:none;
}

.main-nav.active{
display:block;
}

.main-nav ul{
flex-direction:column;
padding:20px;
}

.main-nav ul li{
margin:12px 0;
}

.contact-header h2{
font-size:32px;
}

.home-contact{
padding:70px 0;
}
/* .contact-features li {
    text-align: left;
}
.mobile-contact a{
background:#0b1d51;
color:white;
padding:12px 20px;
border-radius:25px;
display:inline-block;
} */

.testimonial-section{
padding:70px 0;
}
.testimonial-card:hover .testimonial-text {
    top: 50px;
}
.mega-menu{
display:none;
position:static;
width:100%;
padding:15px;
grid-template-columns:1fr;
background:#f4f6fb;
margin-top:10px;
max-height:400px;
overflow-y:auto;
}

.mega-parent.active .mega-menu{
display:block;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-contact p{
justify-content:center;
}

.footer-social{
justify-content:center;
}

.site-footer{
padding-top:40px;
}
.hero-container{
flex-direction:column;
text-align:center;
display: block;
}
.hero-right {
  text-align: left;
  margin-top: 50px;
}

.hero-left p{
margin:auto;
}

.hero-actions{
  display: block;
  justify-content:center;
  align-items: center;
  margin-top: 35px;
}
.hero-phone {
    margin-top: 40px;
}
.hero-btn {
    padding: 18px 40px;
    font-size: 23px;
    font-weight: 400;
}


.hero-left h1{
font-size:32px;
}

.hero-left h2{
font-size:40px;
}

.hero-slider{
height:320px;
}
.why-section{
padding:30px 0 70px;
}

.why-stats{
grid-template-columns:1fr;
}

.stat-card{
padding:30px;
}

.why-content h2{
font-size:34px;
}
.testimonial-grid{
gap:40px;
}

.testimonial-text{
width:220px;
}

.contact-section{
padding:70px 0;
}

.contact-left h2{
font-size:34px;
}

.contact-form-box{
  padding:25px;
  text-align: left;
}
.marquee-content{
gap:40px;
animation-duration:14s;
}

.marquee-content span{
font-size:13px;
}

.service-benefits-grid{
grid-template-columns:1fr;
}

.service-process-grid{
grid-template-columns:1fr;
}

.service-portfolio-grid{
grid-template-columns:1fr;
}

.service-hero-left h1{
font-size:34px;
}
.service-hero-points li{
font-size:15px;
}

}

@media(max-width:900px){
.mega-menu {
     gap: 0px !important; 
}
.mobile-contact{
display:block;
}
.mobile-contact a{
background:#0b1d51;
color:white !important;
padding:12px 20px;
border-radius:25px;
display:inline-block;
} 

.service-hero-right img {
    width: 390px;
}
.service-tab-grid{
grid-template-columns:1fr;
}

.service-tab-image{
order:-1;
}

.process-wrapper{
flex-direction:column;
}

.process-arrow{
transform:rotate(90deg);
width:80px;
}

.service-tab-text .flex-both-side ul {
    margin-left: 0px !important;
    display: block !important;

}

.service-tabs {
    gap: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.service-tab {
    letter-spacing: 1px;
}

.service-tabs .service-tab:nth-child(5) {
    grid-column: 1 / span 2;
    justify-self: center;
    width: 50%;
}

.service-hero-buttons {
    display: block;
    margin-top: 50px;
}
.service-hero-points {
    margin: 25px 0px 25px 30px;
}
.contact-hero-section{
padding:70px 0;
}

.contact-hero-container h1{
font-size:34px;
}

.contact-hero-container p{
font-size:16px;
}

.contact-hero-actions{
flex-direction:column;
gap:0px;
}
.about-intro-grid,
.about-why-grid,
.mission-grid{
grid-template-columns:1fr;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

.about-hero h1{
font-size:36px;
}

.impact-grid{
/* grid-template-columns:1fr 1fr; */
display: block;
}
.impact-card {
    margin-bottom: 20px;
}

.about-chooseUs-actions {
    display: block;
    align-items: center;
    text-align: center;
}
.about-chooseUs-phone {
    margin-top: 35px;
}


.thoughts-grid{
grid-template-columns:1fr;
}

.about-why-img img {
    width: 100%;
}

.about-intro-text {
    text-align: justify;
}
.about-intro-text h2 {
    text-align: center;
}
.flex-both-side {
    display: block !important;
    margin-left: 0px !important;
}
.flex-both-side img {
    width: 100%;
}
}