:root {
    --primary: #0f70c3;
    --primary-dark: #0a4f88;
    --accent: #f4b15b;
    --ink: #1f2937;
    --muted: #657080;
    --line: #e6ebf0;
    --surface: #ffffff;
    --page: #f2f5f8;
    --shadow: 0 14px 40px rgba(17, 33, 55, 0.1);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Lato", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(
            circle at top left,
            rgba(15, 112, 195, 0.1),
            transparent 28%
        ),
        radial-gradient(
            circle at top right,
            rgba(244, 177, 91, 0.18),
            transparent 24%
        ),
        linear-gradient(180deg, #fff 0%, var(--page) 100%);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Heebo", sans-serif;
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
}



.grid-4,
.stats,
.split,
.post-grid{
    display: grid;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 18px rgba(17, 33, 55, 0.04);
}
.card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}
.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.scroll-top {
    position: fixed;
    right: 16px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #3477bb;
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 70;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    font-size: 18px;
    font-weight: 700;
}



.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}
.form-wrap {
    background: #f5f7fb;
    padding: 20px;
    border: 1px solid #e3e9f0;
}
.form-wrap h2 {
    font-size: 28px;
    color: #2a3f57;
    margin-bottom: 14px;
}
.lead-form {
    display: grid;
    gap: 12px;
}
.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid #dce3eb;
    background: #fff;
    padding: 12px 14px;
    font: inherit;
    border-radius: 2px;
}
.lead-form textarea {
    min-height: 74px;
    resize: vertical;
}
.lead-form button {
    justify-self: start;
    border: 1px solid #f07a66;
    background: #fff;
    color: #f07a66;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
}
.form-art img,
.image-card img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}
.form-art {
    min-height: 330px;
    background: #fff;
}
.image-card {
    min-height: 310px;
}


.success-box {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #eef8f2;
    color: #1f6a3b;
    font-weight: 700;
    border: 1px solid #cbe8d5;
}
@media (max-width: 1024px) {
  

    .process-grid,
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

    .service-grid,
    .process-grid,
    .testimonial-grid,
    .blogs .blog-grid {
        grid-template-columns: 1fr;
    }
    .service-tile:nth-child(3n) {
        border-right: 1px solid #e7edf2;
    }
    .service-tile {
        min-height: 120px;
    }
    .tile-icon,
    .process-icon {
        width: 42px;
        height: 42px;
    }
    .tile-icon img,
    .process-icon img {
        width: 28px;
        height: 28px;
    }
    .form-wrap {
        padding: 16px;
    }
    .form-wrap h2 {
        font-size: 24px;
    }
   
    .testimonial-band h2 {
        font-size: 24px;
    }
    .blog-body h3 {
        font-size: 15px;
    }
   
    .scroll-top {
        right: 12px;
        bottom: 12px;
        width: 36px;
        height: 36px;
    }
   







/* ----------------------------------------Himanshu-css-started-------------------------------------- */
/* HEADER */

.header-add{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid #eee;
}

.header-add .nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:90px;
}

.header-add .brand img{
    height:75px;
}

.header-add .menu{
    display:flex;
    align-items:center;
    gap:24px;
}

.header-add .menu a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
}

.header-add .btn{
    background:#2b6db7;
    color:#fff;
    border: 2px solid #2b6db7;
    padding:8px 35px;
    border-radius:35px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.header-add .btn:hover{
    background:#f2f2f2;
    color: #2b6db7;
}

.header-add .mobile-btn{
    display:none;
}

.header-add .desktop-btn{
    display:inline-flex;
}

/* HAMBURGER */

.header-add .menu-toggle{
    display:none;
    font-size:32px;
    background:none;
    border:none;
    cursor:pointer;
}

/* DROPDOWN */

.header-add .dropdown{
    position:relative;
}

.header-add .dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:250px;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
    z-index:100;
}

.header-add .dropdown-content a{
    display:block;
    padding:12px 18px;
    text-transform:none;
}



/* MOBILE */

@media(max-width:992px){

    .header-add .menu-toggle{
        display:block;
    }

    .header-add .desktop-btn{
        display:none;
    }

    .header-add .mobile-btn{
        display:inline-block;
        margin-top:20px;
    }

    .header-add .nav-inner{
        flex-wrap:wrap;
        height:auto;
        padding:15px 0;
    }

    .header-add .menu{
        display:none;
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        margin-top:15px;
        background:#fff;
        border-top:1px solid #eee;
    }

    .header-add .menu.show{
        display:flex;
    }

    .header-add .menu a{
        width:100%;
        padding:14px 20px;
        border-bottom:1px solid #f1f1f1;
    }

    .header-add .dropdown{
        width:100%;
    }

    .header-add .dropbtn{
        width:100%;
        display:block;
    }

    .header-add .dropdown-content{
        position:static;
        display:none;
        box-shadow:none;
        background:#f8f8f8;
        width:100%;
    }

    .header-add .dropdown.active .dropdown-content{
        display:block;
    }

    .header-add .dropdown-content a{
        padding-left:35px;
    }

}

.header-add .dropbtn{
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
}

.header-add .dropbtn a{
    flex:1;
    text-decoration:none;
    color:#111;
}

.header-add .dropdown-icon{
    margin-left:5px;
    font-size:12px;
    transition:.3s;
}

.header-add .dropdown-icon svg{
    margin-top: -5px;
}

.header-add .dropdown.active .dropdown-icon{
    transform:rotate(180deg);
}


@media(max-width:992px){

.header-add .dropbtn{
    padding:14px 20px;
    width:100%;
}

.header-add .dropdown-content{
    padding-left:15px;
}

}



/* Desktop only */
@media (min-width: 993px){

    .header-add .dropdown:hover .dropdown-content{
        display:block;
    }

}

/* Mobile */
@media (max-width:992px){

    .header-add .dropdown-content{
        display:none;
    }

    .header-add .dropdown.active .dropdown-content{
        display:block;
    }

}

/* QUICK CONTACT */

.quick-rail{
    position:fixed;
    left:0;
    top:40%;
    z-index:999;
}

.quick{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.whatsapp{
    background:#25d366;
}

.phone{
    background:#2d73d2;
}

.email{
    background:#52b8ff;
}

@media(max-width:768px){

    .quick{
        width:45px;
        height:45px;
    }


    .quick svg{
        width:22px;
        height:22px;
    }

}



.footer{
    background:#25272d;
    border-top:1px solid #e5e5e5;
}

.footer .container{
    max-width:1200px;
    margin:auto;
}

.footer-inner{
    padding:55px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1.2fr 1fr 1fr;
    gap:45px;
    align-items:start;
}

/* Logo */

.footer-logo{
    width:190px;
}

/* Heading */

.footer h5{
    font-size:20px;
    margin-bottom:20px;
    font-weight:600;
    color:#fff;
}

/* Links */

.footer-links{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links li,
.footer-links a{
    text-decoration:none;
    color:#fff;
    font-size:16px;
    transition:.3s;
}

.footer-links a:hover{
    color:#0b66b2;
}

/* Contact */

.footer-meta-row{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
}

.footer-meta-row img{
    width:28px;
    height:28px;
}

.footer-meta-row span,
.footer-meta-row a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight: 600;
    line-height:1.8;
}

/* Social */

.social{
    display:flex;
    gap:22px;
    margin-top:30px;
}

.social a{
    border:none;
}

.social svg{
    width:28px;
    height:28px;
    fill:#000;
}

.social a:hover svg{
    fill:#0b66b2;
}

/* Map */

.footer-map{
    grid-column:4 / 6;
    margin-top:-250px;
}

.map{
    width:100%;
    height:170px;
    border:none;
    border-radius:10px;
}

/* Copyright */

.copyright{
    border-top:1px solid #ddd;
    margin-top:20px;
    padding:18px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
 color:#fff;
    font-size:15px;
}

.copyright a{
    color:#fff;
    text-decoration:none;
}

.copyright a:hover{
    color:#0b66b2;
}

/* Responsive */

@media(max-width:991px){

.footer-grid{
    grid-template-columns:1fr 1fr;
}

.footer-map{
    grid-column:1 / -1;
}

}

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
}

.footer-map{
    grid-column:auto;
}

.footer-logo{
    width:170px;
}

.copyright{
    flex-direction:column;
    text-align:center;
    gap:10px;
}

}


/* ---------------------blog-section-css-started------------------------ */

.blogs-section-homapage{
    padding:80px 0;
    background:#f8f8f8;
}

.blogs-section-homapage .center-title{
    text-align:center;
    font-size:56px;
    font-weight:400;
    color:#222;
    margin-bottom:45px;
}

.blogs-section-homapage .blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.blogs-section-homapage .blog-card{
    background:#fff;
    border-radius:4px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
    transition:.35s;
}

.blogs-section-homapage .blog-card:hover{
    transform:translateY(-8px);
}

.blogs-section-homapage .blog-image{
    position:relative;
}

.blogs-section-homapage .blog-image img{
    width:100%;
    height:220px;
    object-fit:fill;
    display:block;
}

.blogs-section-homapage .blog-tag{
    position:absolute;
    top:15px;
    right:15px;
    background:#6b7280;
    color:#fff;
    font-size:11px;
    text-transform:uppercase;
    padding:7px 15px;
    border-radius:20px;
    letter-spacing:.5px;
}

.blogs-section-homapage .blog-body{
    padding:24px;
}

.blogs-section-homapage .blog-body h3{
    font-size:18px;
    line-height:1.45;
    color:#1b1b1b;
    margin-bottom:12px;
    font-weight:500;
}

.blogs-section-homapage .blog-body p{
    color:#666;
    line-height:1.8;
    font-size:14px;
    margin:0;
}

.blogs-section-homapage .blog-footer{
    border-top:1px solid #ececec;
    padding:14px 24px;
    font-size:13px;
    color:#9a9a9a;
}

/* Tablet */
@media(max-width:992px){

    .blogs-section-homapage .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media(max-width:576px){

    .blogs-section-homapage .center-title{
        font-size:38px;
    }

    .blogs-section-homapage .blog-grid{
        grid-template-columns:1fr;
    }

    .blogs-section-homapage .blog-image img{
        height:200px;
    }

}

/* ---------------------blog-section-css-ended------------------------ */


/* ---------------------testimonial-section-css-started------------------------ */

.testimonial-band{
    padding:80px 0;
}

.testimonial-band h2{
    text-align:center;
    color:#fff;
    font-size:48px;
    margin-bottom:45px;
}

.testimonial-band .testimonialSwiper{
    padding-bottom:50px;
}

.testimonial-band .testimonial-card{
    background:#fff;
    border-radius:10px;
    padding:28px;
    min-height:250px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.testimonial-band .testimonial-card p{
  
    color:#555;
    margin-bottom:20px;
}

.testimonial-band .client-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.testimonial-band .client-info img{
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid #ddd;
}

.testimonial-band .client-info h6{
   
    color:#1d2b3a;
}

.testimonial-band .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.5;
}

.testimonial-band .swiper-pagination-bullet-active{
    opacity:1;
    background:#d9c27d;
}
/* ---------------------testimonial-section-css-ended------------------------ */


/* ---------------------homepage-how-it-works-section-css-started------------------------ */

.how-it-works {
    background: #f7f7f7;
    padding: 80px 0;
}

/* Two Columns */
.how-it-works .split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 45px;
    align-items: center;
}

/* Image */
.how-it-works .image-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* Content */
.how-it-works .steps-card h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0056a4;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.how-it-works .steps-card p {
   
    line-height: 1.9;
    color: #333;
    margin-bottom: 15px;
}

/* List */
.how-it-works.steps-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.how-it-works .steps-card li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    
    font-weight: 700;
    color: #0056a4;
    text-transform: uppercase;
}

.how-it-works  .steps-card ul{
     padding: 0px;
}

/* Icon Box */
.how-it-works .steps-card li::before {
    content: "";
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: #0b66b2;
    border-radius: 10px;
    background-image: url("/assets/aboutpage/hiw_1.png"); 
   
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
}

/* Hover */
.how-it-works.steps-card li:hover::before {
    transform: scale(1.08);
    transition: .3s;
}

/* Responsive */
@media (max-width:991px){

    .how-it-works .split{
        grid-template-columns:1fr;
    }

    .how-it-works .image-card img{
        height:350px;
    }

    .how-it-works .steps-card h2{
        font-size:38px;
    }
}

@media (max-width:576px){

    .how-it-works{
        padding:60px 0;
    }

    .how-it-works .steps-card h2{
        font-size:30px;
    }

    .how-it-works .steps-card p{
        font-size:15px;
    }

    .how-it-works.steps-card li{
        font-size:15px;
        gap:12px;
    }

    .how-it-works.steps-card li::before{
        width:36px;
        height:36px;
    }
}

/* ---------------------homepage-how-it-works-section-css-ended------------------------ */


/* ---------------------homepage-choose-section-css-started------------------------ */

/* Blue Section */
.section.blue-band {
    background: #0f6eb8;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

/* Container */
.section.blue-band .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading */
.section.blue-band h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 24px;
    line-height: 1.2;
}

/* Paragraph */
.section.blue-band p {
    max-width: 1080px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.95);
    font-weight: 400;
}

/* Responsive */
@media (max-width:991px){

    .section.blue-band{
        padding:60px 0;
    }

    .section.blue-band h2{
        font-size:38px;
    }

    .section.blue-band p{
        font-size:16px;
    }
}

@media (max-width:576px){

    .section.blue-band{
        padding:50px 20px;
    }

    .section.blue-band h2{
        font-size:30px;
    }

    .section.blue-band p{
        font-size:15px;
        line-height:1.7;
    }
}


/* ---------------------homepage-choose-section-css-ended------------------------ */

/* ---------------------homepage-process-css-started------------------------ */
/* Section */
.light-process {
    background: #f2f2f2;
    padding: 80px 0;
}

/* Heading */
.light-process .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.light-process .section-title h2 {
    font-size: 50px;
    font-weight: 700;
    color: #0056a4;
    margin-bottom: 20px;
    line-height: 1.2;
}

.light-process .section-title p {
    max-width: 980px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

/* Subtitle */
.light-process .center-subtitle {
    text-align: center;
    color: #0056a4;
    font-size: 22px;
    font-weight: 700;
    margin: 50px 0 35px;
}

/* Grid */
.light-process .process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

/* Card */
.light-process .process-card {
    background: #fff;
    border-radius: 8px;
    min-height: 185px;
    padding: 20px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.light-process .process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    background-color: #3070B8;
}

.light-process .process-card:hover h3{
    color: white;
}

.light-process .process-card:hover .process-icon img{
color: white;
}

/* Icon */
.light-process .process-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.light-process .process-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

/* Title */
.light-process .process-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.6;
    margin: 0;
}

/* Tablet */
@media (max-width:991px){

    .light-process .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .light-process .section-title h2{
        font-size:38px;
    }

    .light-process .center-subtitle{
        font-size:28px;
    }
}

/* Mobile */
@media (max-width:576px){

    .light-process .process-grid{
        grid-template-columns:1fr;
    }

    .light-process .section.light{
        padding:60px 0;
    }

    .light-process .section-title h2{
        font-size:30px;
    }

    .light-process .section-title p{
        font-size:15px;
    }

    .light-process .center-subtitle{
        font-size:24px;
        margin:35px 0 25px;
    }
}

/* ---------------------homepage-sprocess-css-endeded------------------------ */

/* ---------------------homepage-service-css-started------------------------ */
.our-services-home-page {
    background: #eef7fd;
    padding: 80px 0;
}

/* Heading */
.our-services-home-page .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.our-services-home-page .section-title h2 {
    font-size: 46px;
    font-weight: 700;
    color: #0056a4;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.our-services-home-page .section-title p {
    max-width: 950px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* Grid */
.our-services-home-page .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid #e5e5e5;
}

/* Card */
.our-services-home-page .service-tile {
    min-height: 235px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px 20px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transition: all .35s ease;
    cursor: pointer;
}

/* Remove extra borders */
.our-services-home-page .service-tile:nth-child(3n) {
    border-right: none;
}

.our-services-home-page .service-tile:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Icon Box */
.our-services-home-page .tile-icon {
    width: 72px;
    height: 72px;
    background: #eaf4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: .35s;
}

.our-services-home-page .tile-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: .35s;
}

/* Title */
.our-services-home-page .service-tile h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    line-height: 1.4;
    transition: .35s;
}

/* Hover */
.our-services-home-page .service-tile:hover {
    background: #0056a4;
}

.our-services-home-page .service-tile:hover h3 {
    color: #fff;
}

.our-services-home-page .service-tile:hover .tile-icon {
    background: rgba(255,255,255,.18);
}

.our-services-home-page .service-tile:hover img {
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width:991px) {
    .our-services-home-page .service-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .our-services-home-page .service-tile:nth-child(2n){
        border-right:none;
    }

    .our-services-home-page .service-tile:nth-child(3n){
        border-right:1px solid #e5e5e5;
    }

    .our-services-home-page .service-tile:nth-child(2n){
        border-right:none;
    }
}

@media (max-width:576px){

    .our-services-home-page .section-title h2{
        font-size:32px;
    }

    .our-services-home-page .section-title p{
        font-size:15px;
    }

    .our-services-home-page .service-grid{
        grid-template-columns:1fr;
    }

    .our-services-home-page .service-tile{
        border-right:none;
    }
}

/* ---------------------homepage-service-css-ended------------------------ */


/* ---------------------all-page-form-to-css-started------------------------ */

.about-section {
    background: url("/assets/aboutpage/top-form-bg.webp") center center/cover
        no-repeat;

    padding: 20px 0;
}

.about-section .left-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 490px;
}

.about-section .about-title {
    font-size: 50px;
    color: #2367b8;
    font-weight: 300;
    text-align: center;
}

.about-section .about-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #2367b8;
    margin: 25px auto 0;
}

.about-section .contact-box {
    background: rgba(255, 255, 255, 0.75);
    padding: 25px 40px;
}

.about-section .contact-title {
    text-align: center;
    color: #2367b8;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section .form-group {
    margin-bottom: 25px;
}

.about-section .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}

.about-section .form-group label span {
    color: red;
}

.about-section .form-control {
    height: 44px;
    border-radius: 0;
    border: 1px solid #d9d9d9;
    box-shadow: none;
}

.about-section .btn-submit {
    background: #2d6fc5;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-section .btn-submit:hover {
    background: #1f5ca8;
    color: #fff;
}



.about-second-section{
    padding:80px 0;
    background:#f8f8f8;
}

.about-second-section .about-image{
    background:#fff;
    border:1px solid #d9d9d9;
    border-radius:10px;
    padding:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.about-second-section .about-image img{
    width:100%;
    border-radius:6px;
    display:block;
}

.about-second-section .about-content{
    padding-left:35px;
}

.about-second-section .about-heading{
   
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}

.about-second-section .about-content p{
   
    color:#222;
    margin-bottom:22px;
}

.about-second-section .about-content strong{
    font-weight:700;
}

/* Responsive */

@media(max-width:991px){

    .about-second-section .about-content{
        padding-left:0;
        margin-top:30px;
    }

}




.about-third-section{
    background:#f3f3f3;
    padding:80px 0;
}

.about-third-section .feature-box{
    background:#fff;
    border-radius:10px;
    padding:35px 20px 45px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.about-third-section .feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
     background-color: #3070B8;
}

.about-third-section .feature-box:hover h6{
   color: white;
}
.about-third-section .feature-box:hover p{
   color: white;
}

.about-third-section .feature-box:hover .feature-icon{
    background-color: white;
}

.about-third-section .feature-icon{
    width:90px;
    height:90px;
    background:#dceaf9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
}

.about-third-section .feature-icon img{
    width:34px;
    height:34px;
}

.about-third-section .feature-box h5{
    font-weight:600;
    color:#1d1d1d;
    margin-bottom:18px;
}

.about-third-section .feature-box p{
  
    color:#555;
    margin:0;
}

@media(max-width:991px){

    .about-third-section .feature-box{
        margin-bottom:25px;
    }

}
/* ---------------------all-page-form-to-css-started------------------------ */

/* ---------------------CONTACT-PAGE-css-started------------------------ */
.contact-page-section {
    background: #f6f6fb;
    padding: 80px 0;
}

.contact-page-section .contact-info h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-page-section .info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;

    color: #222;
    line-height: 1.6;
}

.contact-page-section .info-item .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    color: #2c6fd6;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.contact-page-section .map-box {
    margin-top: 35px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-page-section .contact-form {
    background: #fff;
    padding: 25px;
}

.contact-page-section .contact-form label {
    margin-bottom: 10px;
    display: block;
    color: #444;
}

.contact-page-section .contact-form .form-control {
    height: 48px;
    border-radius: 0;
    border: 1px solid #ddd;
    box-shadow: none;
}

.contact-page-section .contact-form textarea.form-control {
    height: 60px;
    resize: none;
}

.contact-page-section .btn-submit {
    border: 2px solid #ef3b3b;
    background: #fff;
    color: #ef3b3b;
    padding: 12px 35px;
    letter-spacing: 3px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-page-section .btn-submit:hover {
    background: #ef3b3b;
    color: #fff;
}
/* ---------------------CONTACT-PAGE-css-ENDEed------------------------ */

/* ---------------------header-dropdown-css-started------------------------ */



.header-add .dropdown {
    position: relative;
    display: inline-block;
}

.header-add .dropbtn {
    display: block;
    padding: 10px 0;
}

.header-add .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
}

.header-add .dropdown-content a {
    display: block;
    padding: 10px 18px;
    color: #333;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.header-add .dropdown-content a:last-child {
    border-bottom: none;
}

.header-add .dropdown-content a:hover {
    background: #0f70c3;
    color: #fff;
}

.header-add .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---------------------header-dropdown-css-ended------------------------ */

/* ---------------------floating-button-css-started------------------------ */

.quick-rail {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.quick {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    border-radius: 0 8px 8px 0;
    transition: 0.3s;
}

.quick.whatsapp {
    background: #25d366;
}

.quick.phone {
    background: #2e5fb7;
}

.quick.email {
    background: #4ea3f1;
}

.quick:hover {
    width: 50px;
    color: #fff;
    text-decoration: none;
}


@media (max-width: 768px) {
    .quick {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}
/* ---------------------floating-button-css-ended------------------------ */

/* ---------------------hero-section-css-started------------------------ */

/* ---------------- Hero Section ---------------- */

.hero{
    background:url("/assets/hero/hero.jpg") center center/cover no-repeat;
    min-height:520px;
    display:flex;
    align-items:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.20);
}

.hero .container{
    position:relative;
    z-index:2;
    width:100%;
}

.hero-content{
    max-width:600px;
    width:100%;
    margin-left:auto;
    text-align:left;
}

.hero-content h1{
    color:#fff;
    font-size:42px;
    line-height:1.35;
    font-weight:700;
    margin:0;
}

/* Large Laptop */

@media (max-width:1200px){

    .hero{
        min-height:480px;
    }

    .hero-content{
        max-width:520px;
    }

    .hero-content h1{
        font-size:36px;
    }

}

/* Tablet */

@media (max-width:992px){

    .hero{
        min-height:420px;
    }

    .hero-content{
        max-width:100%;
        margin:0 auto;
        text-align:center;
        padding:0 20px;
    }

    .hero-content h1{
        font-size:32px;
    }

}

/* Mobile */

@media (max-width:768px){

    .hero{
        min-height:360px;
        padding:60px 0;
    }

    .hero-content{
        padding:0 15px;
    }

    .hero-content h1{
        font-size:28px;
        line-height:1.4;
    }

    .split {
   
    grid-template-columns: auto;
   
}

}

/* Small Mobile */

@media (max-width:576px){

    .hero{
        min-height:300px;
        padding:50px 0;
    }

    .hero-content h1{
        font-size:22px;
        line-height:1.5;
    }

}

/* ---------------------hero-section-css-ended------------------------ */


.financial-plan .feature-box .feature-icon{
    background: transparent;
}

.financial-plan .feature-box .feature-icon img{
    width: 80px;
    height: 80px;

}
.financial-plan h6{
      margin-bottom: 10px;
}

.financial-plan .feature-box{
    padding-left: 19px;
    padding-right: 19px;
}



/* ===============================
   Why Finvriddhi
================================== */

.why-finvriddhi{
    padding:70px 0;
    background:#fff;
}

.why-title{
    font-size:38px;
    font-weight:700;
    color:#000;
    margin-bottom:18px;
    line-height:1.2;
}

.why-subtitle{
    
    color:#555;
  
    margin-bottom:20px;
    max-width:1100px;
}

.why-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.check{
        width: 19px;
    min-width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b6db7;
    font-size: 18px;
    font-weight: bold;
    margin-top: 3px;
}

.why-item p{
    margin:0;
    color:#111;
}

.why-item strong{
    font-weight:700;
    color:#000;
}

/* ===============================
   Responsive
================================== */

@media(max-width:992px){

    .why-finvriddhi{
        padding:55px 0;
    }

    .why-title{
        font-size:38px;
    }



}

@media(max-width:768px){

    .why-finvriddhi{
        padding:45px 0;
    }

    .why-title{
        font-size:30px;
        line-height:1.35;
    }

  

    .why-list{
        gap:20px;
    }

    .why-item{
        gap:14px;
    }

    .check{
        font-size:22px;
        width:22px;
        min-width:22px;
    }

}

@media(max-width:480px){

    .why-title{
        font-size:26px;
    }

   

}

.finance-para p.mb-1{
    color: #7A7A7A;
        line-height: normal;
        font-size: 15px;
}




/* ================= FAQ Section ================= */

.faq-section{
    padding:80px 0;
    background:#fff;
}

.faq-title{
    text-align:center;
    font-size:30px;
    font-weight:500;
    color:#222;
    margin-bottom:25px;
}

/* Accordion */

.faq-accordion{
    border:1px solid #d8d8d8;
}

.faq-accordion .accordion-item{
    border:none;
    border-bottom:1px solid #d8d8d8;
}

.faq-accordion .accordion-item:last-child{
    border-bottom:none;
}

.faq-accordion .accordion-button{
    background:#fff;
    color:#4a5568;
    font-size:18px;
    font-weight:600;
    padding:12px 28px;
    box-shadow:none;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#fff;
    color:#4a5568;
    box-shadow:none;
}

.faq-accordion .accordion-body{
    padding:6px 30px 20px;
    color:#5b6777;
    font-size:16px;
    line-height:1.5rem;
    border-top: 1px solid #d8d8d8;
}

/* Replace Bootstrap Arrow */

.faq-accordion .accordion-button::after{
    background-image:none;
    content:"+";
    font-size:25px;
    font-weight:700;
    width:auto;
    height:auto;
    transform:none;
    color:#555;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content:"−";
}

/* Mobile */

@media(max-width:992px){

    .faq-section{
        padding:60px 0;
    }

    .faq-title{
        font-size:22px;
        margin-bottom:15px;
    }

    .faq-accordion .accordion-button{
        font-size:14px;
        padding:12px;
    }

    .faq-accordion .accordion-body{
        font-size:12px;
        line-height:1.8;
        padding:18px;
    }

    .faq-accordion .accordion-button::after{
        font-size:22px;
    }
}

@media(max-width:576px){

    .faq-title{
        font-size:22px;
    }

    .faq-accordion .accordion-button{
        font-size:14px;
        padding:12px;
    }

    .faq-accordion .accordion-body{
        font-size:12px;
    }
}


.new-all-box .features-row{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}

.new-all-box .feature-box{
    background:#fff;
    border-radius:12px;
    padding:20px 15px !important;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
}

.new-all-box .feature-icon img{
    height: 60px !important;
     width: 60px !important;
}

 .new-all-box .feature-icon {
    width: 90px;
    height: 90px;
    background: #dceaf9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}




.blog-details-main .blog-banner{

    background:#2f6eb8;

    color:#fff;

    padding:70px 0;

    text-align:center;
}

.blog-details-main  .blog-banner h1{

    max-width:900px;

    margin:auto;

    font-weight:600;
}

.blog-details-main .blog-meta{

    margin-bottom:20px;

    color:#777;

   
}

.blog-details-main .featured-img{

    width:100%;

    border-radius:6px;

    margin-bottom:30px;
}

.blog-details-main  .blog-content{

    color:#444;
}

.blog-details-main .blog-content h2{

    margin:35px 0 15px;

  
}

.blog-details-main .blog-content h3{

    margin-top:30px;
}

.blog-details-main .blog-content img{

    width:100%;

    margin:25px 0;

    border-radius:6px;
}

.blog-details-main .blog-content ul{

    padding-left:22px;
}

.blog-details-main .post-navigation{

    display:flex;

    justify-content:space-between;

    margin-top:40px;
}

.blog-details-main .post-navigation a{

    color:#2f6eb8;

    text-decoration:none;

    font-weight:600;
}

.blog-details-main .sidebar{

    position:sticky;

    top:100px;
}

.blog-details-main .share-box{
  display: flex;
    padding:15px 0;

    border-bottom:1px solid #eee;
 border-top:1px solid #eee;
    margin-bottom:10px;
    justify-content: space-between;
}

.blog-details-main .share-box a{

    margin-right:15px;

    color:#2f6eb8;

  
}

.blog-details-main .recent-posts{

    margin-bottom:30px;
}

.blog-details-main .recent-post{

    display:flex;

    gap:15px;

    margin-bottom:18px;

    text-decoration:none;

    color:#222;
}

.blog-details-main .recent-post img{
    width:110px;
    height:80px;
    object-fit:fill;
}

.blog-details-main .recent-post h6{

    margin-bottom:6px;
}

.blog-details-main .contact-widget{
    background: #fff;
    border:1px solid #eee;

    padding:25px;
}

.blog-details-main .contact-widget h4{

    text-align:center;

    margin-bottom:20px;
}

.blog-details-main .contact-widget input{

    width:100%;

    height:46px;

    margin-bottom:15px;

    padding:10px;

    border:1px solid #ddd;
}

.blog-details-main .contact-widget button{

    width:100%;

    height:46px;

    border:none;

    background:#2f6eb8;

    color:#fff;

    font-weight:600;
}

@media(max-width:991px){

.blog-details-main .sidebar{

position:static;

margin-top:50px;

}

}

@media(max-width:768px){
        .footer-map{
    margin-top: 0px !important;
}

.new-all-box .features-row{
        grid-template-columns: auto !important;
}

.quick-rail{
    right: 0 !important;
    left: 90% !important;
}
}


/* -----------------------------------------Himanshu-css-ended-------------------------------------- */
