/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* FONT AWESOME */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#fff;
    color: #4d4d4d;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:linear-gradient(90deg,#c52233,#c52233);
    padding:10px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    color:#000;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-left a,
.top-right a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.top-left a:hover,
.top-right a:hover{
    opacity:.75;
}

/* =========================
   HEADER
========================= */

.header{
    padding:0 0px;
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    margin-top:0px;
    background: #000;
    backdrop-filter:blur(18px);
    border-radius:0px;
    padding:10px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
    position:relative;
}


/* LOGO */

.logo {
    line-height:0;
}

.logo img{
    height:85px;
}

/* MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    text-decoration:none;
    color:#fff;
    font-size:15px;
    font-weight:600;
    transition:.3s;
    display:block;
    padding:10px 0;
    position:relative;
}

/* HOVER EFFECT */

.nav-menu li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:2px;
    background:#edb458;
    transition:.35s;
}

.nav-menu li a:hover::after{
    width:100%;
}

.nav-menu li a:hover{
    color:#edb458;
}

/* =========================
   MAIN DROPDOWN
========================= */

.dropdown{
    position:absolute;
    top:55px;
    left:0;
    width:250px;
    background:#fff;
    border-radius:18px;
    padding:10px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    border:1px solid #eee;

    display:none;
    z-index:999;
}

.has-dropdown.active > .dropdown{
    display:block;
}

.dropdown li{
    list-style:none;
}

.dropdown li a{
    color:#333;
    font-size:14px;
    padding:10px 10px;
    border-radius:10px;
}

.dropdown li a:hover{
    background:#f3f7ff;
    padding-left:18px;
}

/* TOGGLE */

.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
}

.arrow{
    cursor:pointer;
    color:#fff;
    font-size:16px;
}

/* =========================
   SUBMENU
========================= */

.has-submenu{
    position:relative;
}

.submenu-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.submenu-arrow{
    color:#333;
    font-size:14px;
    padding-right:10px;
}

.submenu{
    position:absolute;
    top:0;
    left:100%;
    width:230px;
    background:#fff;
    border-radius:18px;
    padding:10px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    border:1px solid #eee;

    display:none;
}

.has-submenu.active > .submenu{
    display:block;
}

/* =========================
   HAMBURGER
========================= */

.hamburger{
    width:30px;
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:100%;
    height:3px;
    background:#fff;
    border-radius:10px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .navbar{
        padding:15px 20px;
    }

    .hamburger{
        display:flex;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#f7f7f7;
        flex-direction:column;
        align-items:flex-start;
        gap:5px;
        padding:20px;
        display:none;
        box-shadow:0 20px 50px rgba(0,0,0,.08);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu li a{
        color:#333;
        width:100%;
        padding:10px 0;
    }

    .dropdown-toggle{
        width:100%;
        justify-content:space-between;
    }

    .arrow{
        color:#333;
    }

    /* MAIN DROPDOWN */

    .dropdown{
        position:static;
        width:100%;
        box-shadow:none;
        border:none;
        padding-left:15px;
        background:#fff;
    }

    /* SUBMENU */

    .submenu{
        position:static;
        width:100%;
        box-shadow:none;
        border:none;
        padding-left:15px;
        background:transparent;
    }

}








/* =========================
   HERO SLIDER
========================= */

.hero-slider{
    width:100%;
    height:700px;
    position:relative;
    overflow:hidden;
}

/* Slide */

.slide{
    position:absolute;
    width:100%;
    height:100%;
    inset:0;

    opacity:0;
    visibility:hidden;

    transition:1s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
}

/* Banner Image */

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    top:0;
    left:0;
}

/* Overlay */

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgb(0 0 0 / 16%), rgb(0 0 0 / 12%));
    z-index:1;
}

/* Content */

.slide-content{
    position:relative;
    z-index:2;

    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;

    padding:20px;
        top: 50px;
}

/* Heading */

.slide-content .banner_head {
    font-size:55px;
    font-weight:800;
    line-height:1.1;
    text-transform: uppercase;

    max-width:900px;

    margin-bottom:10px;

    animation:fadeUp 1s ease;
}

/* Paragraph */

.slide-content p{
    font-size:18px;
    line-height:1.9;

    max-width:750px;

    color:#fff;

    margin-bottom:20px;

    animation:fadeUp 1.2s ease;
}

/* Button */

.slide-content a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 35px;

    background:#1467d4;
    color:#fff;

    text-decoration:none;

    border-radius:60px;

    font-size:15px;
    font-weight:600;

    transition:0.4s ease;

    animation:fadeUp 1.4s ease;
}

.slide-content a:hover{
    background:#ffcc00;
    transform:translateY(-4px);
}

/* Dots */

.slider-dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    gap:12px;

    z-index:20;
}

.dot{
    width:14px;
    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,0.4);

    cursor:pointer;

    transition:0.4s ease;
}

.dot.active{
    background:#fff;
    transform:scale(1.2);
}

/* Animation */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .slide-content h1{
        font-size:55px;
    }
}

@media(max-width:991px){

    .hero-slider{
        height:600px;
    }

    .slide-content h1{
        font-size:42px;
    }

    .slide-content p{
        font-size:16px;
    }
}

@media(max-width:768px){

    .hero-slider{
        height:820px;
    }

    .slide-content h1{
        font-size:32px;
    }

    .slide-content p{
        font-size:14px;
        line-height:1.5;
    }

    .slide-content a{
        padding:14px 30px;
        font-size:14px;
    }

    .slider-dots{
        bottom:20px;
    }
}









/* INFO SECTION */

.info-section{
    max-width:1200px;
    margin:auto;
        margin-top: 40px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* CARD */

.info-card{
    background:#fff;
    border:1.5px solid #1e1e1e;
    padding:22px 18px;
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

.info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0%;
    height:100%;
    background:#000;
    z-index:0;
    transition:0.4s ease;
}

.info-card:hover::before{
    width:100%;
}

.info-content{
    position:relative;
    z-index:2;
}

.info-title{
    font-size:15px;
    color:#4d4d4d;
    margin-bottom:14px;
    font-weight:400;
}

.info-text{
    font-size:25px;
    line-height:1.4;
    font-weight:600;
    color:#000;
}

.info-card:hover .info-title,
.info-card:hover .info-text{
    color:#fff;
}

/* ICON */

.info-text span{
    font-size:24px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .info-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){


    .info-grid{
        grid-template-columns:1fr;
            gap: 15px;
    }

    .info-text{
        font-size:18px;
    }

}






.enq_quick {
    padding: 0;
    margin: 35px 0 50px 0;
    background: #ffffff;
    color: #000;
}
.enq_quick p {
    margin: 0;
    text-align: center;
width: 700px;
    margin: 0 auto;
}
.enq_quick_area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 0 0;
}
.enq_quick_area input, .frm_drp {
    max-width: 180px;
    margin: 0 !important;
    color: #000 !important;
    height: 40px !important;
    border: none !important;
    border-radius: 4px;
    font-size: 14px;
    padding: 0 25px 0 15px;
    background-color: #f5f6f6;
}
.btn_style {
    color: #fff;
    background: linear-gradient(120deg, #952f10 0%, #c52233 100%) !important;
    border-color: #fba832;
    width: 100%;
    box-shadow: none;
    margin: 0 5px 0 5px;
    display: inline-block;
    padding: 10px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.enq_quick_area button {
    max-width: 145px;
}









/* ABOUT SECTION */

.about-section{
    max-width:1200px;
    margin:auto;
    background:#f7f7f7;
    border-radius:8px;
    padding:50px 50px;
    position:relative;
    overflow:hidden;
    border:1px solid #e5e5e5;
}

/* top small title */

.about-mini-title{
    font-size:16px;
    font-weight:600;
    color:#4d4d4d;
    margin-bottom:10px;
}

/* heading strip */

.about-tag{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:28px;
}

.about-tag span{
    width:2px;
    height:24px;
    background:#c52233;
    display:block;
}

.about-tag h5{
    font-size:20px;
    letter-spacing:1px;
    font-weight:700;
    color:#000;
    text-transform:uppercase;
}

/* main heading */

.about-heading{
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    color:#000;
    max-width:1050px;
    margin-bottom:35px;
}
.about-heading .blue{
    color:#c52233;
}

.about-section h2 {
margin-top: 15px;
    margin-bottom: 5px;
}
.about-section ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8em;
}
.about-section p {
    padding: 10px 0;
}


/* paragraph */

.about-text{
    font-size:17px;
    line-height: 1.8;
    color:#4d4d4d;
    max-width:1150px;
    font-weight:400;
}

/* decorative shape */

.about-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(0,87,199,0.05);
    top:-140px;
    right:-100px;
}

.about-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(0,87,199,0.04);
    bottom:-100px;
    left:-60px;
}

/* responsive */

@media(max-width:991px){

    .about-section{
        padding:50px 35px;
    }

    .about-heading{
        font-size:42px;
    }

    .about-text{
        font-size:17px;
        line-height:1.9;
    }
}

@media(max-width:600px){

    .about-section{
        padding:25px 15px;
    }

    .about-mini-title{
        font-size:14px;
    }

    .about-tag h5{
        font-size:13px;
    }

    .about-heading{
        font-size:25px;
        line-height:1.25;
        margin-bottom:20px;
    }

    .about-text{
        font-size:14px;
        line-height:1.8;
    }
}



.about-section {
  max-height: 400px;   /* adjust as needed */
  overflow-y: auto;
  padding-right: 10px; /* prevents content hiding behind scrollbar */
}
.about-section::-webkit-scrollbar,
.scroll-box::-webkit-scrollbar {
  width: 6px;
}

.about-section::-webkit-scrollbar-thumb,
.scroll-box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.about-section::-webkit-scrollbar-thumb:hover,
.scroll-box::-webkit-scrollbar-thumb:hover {
  background: #555;
}









.client_container {
    background: #fff;
    padding: 0;
        max-width: 1200px;
    margin: auto;
    margin-top: 50px;
}
.client_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.client_head {
    font-size: 20px;
    margin: 0 0 30px;
    color: #000;
    font-weight: 500;
}
.client_img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px 20px;
}
.client_img img {
    width: 100px;
}
.media_btn {
    margin: 30px 0 50px 0;
    color: #000;
    text-decoration: none;
}
.media_btn:hover {
    color: #1467d4;
}














/* PRODUCT SECTION */

.products-section{
    padding:50px 5%;
    background:#f7f7f7;
        margin-top: 50px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    display:block;
    font-size:20px;
    color:#000;
    margin-bottom:8px;
    font-weight:500;
}

.section-title h2{
    font-size:45px;
    color:#c52233;
    font-weight:700;
    line-height:1.2;
}

/* GRID */

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
        max-width: 1200px;
    margin: 0 auto;
}

/* CARD */

.product-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    transition:0.4s ease;
}

.product-image{
    position:relative;
    overflow:hidden;
    height:430px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
    display:block;
}

.product-card:hover img{
    transform:scale(1.08);
}

/* CONTENT */

.product-content{
    background: linear-gradient(120deg, #952f10 0%, #c52233 100%) !important;
    padding:20px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.product-text span{
    display:block;
    color:#fff;
    font-size:14px;
    margin-bottom:4px;
    font-weight:400;
}

.product-text h3{
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

/* BUTTON */

.view-btn{
    background:#fff;
    color:#000;
    text-decoration:none;
    padding:12px 15px;
    font-size:12px;
    font-weight:600;
    transition:0.3s ease;
    white-space:nowrap;
}

.view-btn:hover{
    background:#000;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
        gap: 20px;
    }

    .product-image{
        height:350px;
    }

    .product-content{
        align-items:center;
            gap: 10px;
    }

    .view-btn{
        width:40%;
        text-align:center;
    }

    .section-title h2{
        font-size:30px;
    }
}








.features_pro {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.features_area {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 10px;
    padding: 0;
    margin: 0 0 0 0px;
}

.features_col_1 {
    padding: 0;
    margin: 0;
}

.features_col_1_area {
    background: #0a4ca6;
    padding: 65px 40px;
}

.features_head_1_icon i {
    font-size: 32px;
    color: #fff;
}

.features_head_1 {
    font-size: 25px;
    color: #fff;
    line-height: 1.5em;
}

.features_col_2_area {
    background: #f7f7f7;
    padding: 65px 40px;
}

.features_head_2_icon i {
    font-size: 32px;
    color: #000;
}

.features_head_2 {
    font-size: 30px;
    color: #000;
    line-height: 1.5em;
}

.features_col_2 {
    padding: 0;
    margin: 0;
}

.features_col_2_up {
    background: #0F1934;
    padding: 30px 40px 20px 40px;
}

.features_col_2_up_icon i {
    font-size: 32px;
    color: #fff;
}

.features_col_2_up_head {
    font-size: 25px;
    color: #fff;
}

.features_col_3 {
    padding: 0;
    margin: 0;
}

.features_col_3_txt {
    padding: 29px 35px;
    background: #f7f7f7;
    font-size: 16px;
    height: 357px;
}

.features_col_3_main {
    display: flex;
}

.features_col_3_main_1 {
    background: #0a4ca6;
    padding: 30px 40px;
    width: 43%;
}

.features_col_3_main_1_icon i {
    font-size: 32px;
    color: #fff;
}

.features_col_3_main_1_head {
    font-size: 22px;
    color: #fff;
}

.features_col_3_main_2 {
    background: #f7f7f7;
    padding: 30px 40px;
    width: 58%;
}

.features_col_3_main_2_icon i {
    font-size: 32px;
    color: #000;
}

.features_col_3_main_2_head {
    font-size: 22px;
    color: #000;
}
.features_col_2 img {
    max-width: 100%;
}






.counter_container {
    max-width: 1200px;
margin-top: 80px;
    margin: 0 auto;
}
.pro_subhead {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
    color: #000;
    text-align: center;
}
.program_area_head {
    font-size: 45px;
    margin: 0 0 50px;
    font-weight: 700;
    line-height: 1.2em;
    color: #c52233;
    text-align: center;
}
.counter_area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
        gap: 15px;
}

.counter_box {
    background: #fff;
    padding: 35px 10px;
    margin: 0px;
    text-align: center;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
    box-shadow: 0px 0px 20px -8px rgba(0, 0, 0, 0.34);
}

.counter_box h4 {
    color: #c52233;
    margin: 0;
    line-height: 1.1em;
    font-size: 40px;
}

.counter_box p {
    color: #4d4d4d;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
    font-size: 22px;
}





.feathers-area {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.feather_area {
    display: flex;
    gap: 25px;
}

.single-feathers {
    position: relative;
    padding: 20px;
    background: #0a4ca6;
}

.single-feathers i {
    color: #fff;
    font-size: 60px;
    line-height: 1;
}

.single-feathers h3 {
    color: #ffffff;
    margin: 10px 0 5px 0;
    font-size: 22px;
}

.single-feathers p {
    color: #ffffff;
    margin: 0;
    font-size: 15px;
}

.single_bg {
    background: linear-gradient(90deg, rgba(85, 172, 238, 1) 35%, rgba(85, 172, 238, 1) 100%);
}





.testimonial-section{
    padding:30px 20px 50px 20px;
    overflow:hidden;
}

.section-heading{
    text-align:center;
    margin-bottom:30px;
}

.section-heading span{
    color:#000;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.section-heading h2{
    color:#c52233;
    font-size:42px;
    margin-top:0px;
    font-weight:700;
}

.testimonial-wrapper{
    overflow:hidden;
    max-width:1200px;
    margin:auto;
}

.testimonial-slider{
    display:flex;
    gap:25px;
    transition:transform .8s ease;
}

.testimonial-card{
    flex:0 0 calc(33.333% - 17px);
    background: #000;
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:30px;
    position:relative;
    overflow:hidden;
}

.testimonial-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(212,175,55,.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    transition:.4s;
    border-color:#d4af37;
    box-shadow:0 0 30px rgba(212,175,55,.25);
}

.stars{
    color:#ffd700;
    font-size:20px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#e7e7e7;
    line-height:1.8;
    font-size:15px;
    min-height:140px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:25px;
}

.avatar{
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #d4af37,
        #f8e38c
    );
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
}

.client h4{
    color:#fff;
    margin:0;
}

.client span{
    color:#c8c8c8;
    font-size:14px;
}

@media(max-width:991px){
    .testimonial-card{
        flex:0 0 calc(50% - 13px);
    }
}

@media(max-width:767px){
    .testimonial-card{
        flex:0 0 100%;
    }

    .section-heading h2{
        font-size:30px;
        line-height: 1.3em;
    }
}












/* ===== BLOG SECTION ===== */
.custom-blog-area {
  padding: 50px 0;
  background: #f7f7f7;
  margin-top: 50px;
}

.custom-blog-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SECTION TITLE ===== */
.custom-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.custom-section-title span {
  display: inline-block;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
}

.custom-section-title h2 {
    font-size:45px;
    color:#000;
    font-weight:700;
    line-height:1.2;
}

/* ===== BLOG GRID ===== */
.custom-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== BLOG CARD ===== */
.custom-single-blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.custom-single-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== BLOG IMAGE ===== */
.custom-single-blog-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.custom-single-blog-card:hover img {
  transform: scale(1.05);
}

/* ===== CONTENT ===== */
.custom-blog-content {
  padding: 25px;
}

/* ===== DATE ===== */
.custom-blog-date {
  color: #4d4d4d;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-blog-date i {
  color: #c52233;
}

/* ===== BLOG TITLE ===== */
.custom-blog-content h3 {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 20px;
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease;
}

.custom-blog-content a {
  text-decoration: none;
}

.custom-blog-content a:hover h3 {
  color: #c52233;
}

/* ===== READ MORE BUTTON ===== */
.custom-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c52233;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.custom-read-more-btn:hover {
  color: #222;
  gap: 14px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .custom-blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-section-title h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .custom-blogs-grid {
    grid-template-columns: 1fr;
  }

  .custom-blog-area {
    padding: 60px 0;
  }

  .custom-section-title h2 {
    font-size: 30px;
  }

  .custom-blog-content h3 {
    font-size: 20px;
  }
}








/* ===== FAQ SECTION ===== */
.faqs_container {
    padding: 30px 0 50px 0;
    background: #fff;
}

.faqs_container .container {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.faqs_head {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #c52233;
}

/* FAQ Layout */
.faqs_area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faqs_col details {
    background: #f7f7f7;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgb(255 255 255 / 6%);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Question */
.faqs_col summary {
    padding: 16px 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #000;
    list-style: none;
    position: relative;
}

/* Remove default arrow */
.faqs_col summary::-webkit-details-marker {
    display: none;
}

/* Custom + / Ã¢Ë†' icon */
.faqs_col summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #c52233;
    transition: transform 0.3s ease;
}

.faqs_col details[open] summary::after {
    content: "-";
    transform: rotate(180deg);
}

/* Answer */
.faq__content {
    padding: 0 18px 18px;
    font-size: 15px;
    color: #4d4d4d;
    line-height: 1.7;
    animation: fadeIn 0.4s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect */
.faqs_col details:hover {
    transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .faqs_area {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .faqs_head {
        font-size: 24px;
    }
}










.fixed-phone {
    right: 32px;
    bottom: 180px;
    position: fixed;
    z-index: 999999;
}

.fixed-phone:before {
    content: "";
    width: 50px;
    height: 50px;
    background-color: #00a505;
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
    z-index: 1;
    top: 0;
    left: 0;
}

.fixed-phone i {
    vertical-align: middle;
    z-index: 2;
    position: relative;
    color: #fff;
    font-size: 1.6rem;
    left: 12px;
    top: 13px;
}

.fixed-whatsapp {
    right: 30px;
    bottom: 120px;
    position: fixed;
    z-index: 999999;
}

.fixed-whatsapp:before {
    content: "";
    width: 50px;
    height: 50px;
    background-color: #00a505;
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
    z-index: 1;
    top: 0;
    left: 0;
}

.fixed-whatsapp i {
    vertical-align: middle;
    z-index: 2;
    position: relative;
    color: #fff;
    font-size: 1.9rem;
    left: 13px;
    top: 10px;
}











/*========================
        FOOTER
=========================*/

.footer{
    background:#f7f7f7;
    padding:50px 0 0;
}

.footer-container{
    width:90%;
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns: 2fr 0.8fr 1fr 1.5fr;
    gap:50px;
}

/*========================
      FOOTER LOGO
=========================*/

.footer-logo img{
    width:200px;
    margin-bottom:20px;
}

.footer-about p{
    color:#111;
    line-height:1.6;
    font-size:16px;
    margin-bottom:35px;
}

/*========================
      SOCIAL ICONS
=========================*/

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid #222;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#000;
    font-size:16px;
    transition:0.4s;
}

.social-icons a:hover{
    background:#0c4da2;
    color:#fff;
    border-color:#0c4da2;
    transform:translateY(-4px);
}

/*========================
       HEADINGS
=========================*/

.footer-column h3{
    font-size:24px;
    font-weight:500;
    margin-bottom:25px;
    color:#000;
}

/*========================
         LINKS
=========================*/

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    text-decoration:none;
    color:#000;
    font-size:17px;
    transition:0.3s;
        line-height: 1.5em;
}

.footer-links a:hover{
    color:#0c4da2;
    padding-left:6px;
}

/*========================
     CONTACT DETAILS
=========================*/

.contact-info{
    list-style:none;
}

.contact-info li{
    margin-bottom:15px;
    color:#000;
        line-height: 1.5em;
    font-size:16px;
}

.contact-info i{
    color:#000;
    margin-top:7px;
    font-size:16px;
}

/*========================
      COPYRIGHT BAR
=========================*/

.footer-bottom{
    margin-top:60px;
    background:#0a4ca6;
    padding:20px 0;
}

.footer-bottom-container{
    width:90%;
    max-width:1350px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    color:#fff;
    font-size:14px;
}

.bottom-links{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.bottom-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.bottom-links a:hover{
    opacity:0.8;
}
.contact-info li span {
    border-bottom: 1px solid #000;
    margin: 0 0 0 3px;
}

/*========================
      RESPONSIVE
=========================*/

@media(max-width:1100px){

.footer-container{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.footer{
    padding-top:50px;
}

.footer-container{
    grid-template-columns:1fr;
    gap:20px;
}
.footer-logo img {
    width: 170px;
}
.footer-column h3{
    font-size:22px;
    margin-bottom: 15px;
}

.footer-about p{
    font-size:14px;
    margin-bottom: 25px;
}

.footer-links a,
.contact-info li{
    font-size:15px;
        margin-bottom: 10px;
}

.footer-bottom-container{
    flex-direction:column;
    text-align:center;
}

.bottom-links{
    justify-content:center;
    gap: 15px;
}
.social-icons a {
    width: 35px;
    height: 35px;
    font-size: 14px;
}
.footer-links li {
    margin-bottom: 10px;
}
}








.breadcrumb-section {
    background: #2c2b2b;
    padding:50px 20px;
    text-align:center;
    color:#fff;
}
.breadcrumb {
    margin-bottom:0px;
    font-size:15px;
}
.breadcrumb a {
    color:#fff;
    text-decoration:none;
    opacity:0.9;
}
.breadcrumb span {
    margin:0 8px;
    opacity:0.7;
}
.breadcrumb .active {
    font-weight:bold;
}
.breadcrumb-title {
    font-size:30px;
    font-weight:700;
    color: #fad886g10;
}




.innerpage-section{
    background: #fff;
}
.innerpage_container {
max-width: 1200px;
    margin: 0 auto;
}
/* ===== Images Full Width ===== */
.innerpage_img{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.details-img{
    height: 320px;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    background: #fff;
}

.details-img:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.details-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.details-img:hover img{
    transform: scale(1.08);
}

/* ===== Full Width Content ===== */
.content-one{
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.content-one h2{
    font-size: 28px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}
.content-one h3{
    font-size: 22px;
    line-height: 1.3;
    color: #c52233;
    margin-bottom: 20px;
    font-weight: 700;
}
.content-one ul {
    margin: 0px 0 20px 40px;
}
.content-one p{
    font-size: 17px;
    line-height: 1.9;
    color: #4d4d4d;
    margin-bottom: 22px;
    padding-left: 24px;
    position: relative;
}

/* Stylish Bullet */
.content-one p::before{
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c52233;
}

.content-one strong{
    color: #111827;
}

/* ===== Responsive ===== */
@media (max-width: 991px){

    .innerpage_img{
        grid-template-columns: repeat(2, 1fr);
    }

    .content-one{
        padding: 35px;
    }

    .content-one h3{
        font-size: 28px;
    }
}

@media (max-width: 600px){

    .innerpage-section{
        padding: 0 15px;
    }

    .innerpage_img{
        grid-template-columns: 1fr;
    }

    .details-img{
        height: 240px;
    }

    .content-one{
        padding: 25px;
    }

    .content-one h3{
        font-size: 18px;
        margin-bottom: 25px;
    }

    .content-one p{
        font-size: 15px;
        line-height: 1.8;
    }
}







.product-section {
    max-width: 1200px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 50px
}

.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.15);
}

.product-image {
    width: 100%;
    height: auto;
    background-color: #eee;
    margin-bottom: 12px;
    border-radius: 4px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.product-name {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 1.1em;
}

.product-price {
    color: #0c4da2;
    font-weight: 600;
    font-size: 0.9em;
}

.product-price a {
    color: #1467d4;
    text-decoration: none;
}



.logo-section {
    padding: 50px 50px;
    background: #f7f7f7;
        margin: 50px 0 0 0;
}
.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 0 25px;
}
.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #ffffff;
    border-radius: 6px;
}
.logo-item img {
    max-width: 150px;
    max-height: 45px;
    object-fit: contain;
}
.our-skills-area {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}
.our-skills-area .container {
    display: grid;
    grid-template-columns: 600px auto;
    gap: 50px;
    margin: 50px 0 50px 0;
}
.skills-content .top-title {
    color: #0c4da2;
    font-size: 16px;
    display: block;
    margin-bottom: 0px;
}
.skills-content h2 {
    font-size: 36px;
    margin: 5px 0 20px 0;
    color: #0c4da2;
}
.skill-img img {
    max-width: 100%;
}
.design_area {
    max-width: 1200px;
    margin: 0 auto;
}
.design_area h4 {
    color: #0c4da2;
    font-size: 24px;
    text-align: center;
    margin: 0;
}
.design_area p {
    margin: 0;
}
.design_area .row {
    display: flex;
    gap: 100px;
}
.thess {
    color: #ffffff;
    font-weight: 600;
    background: #1a60ab;
    padding: 8px 20px;
    width: 340px;
    margin-bottom: 10px;
    display: block;
    margin-top: 20px;
    font-size: 20px;
}
.design_area .row ul li {
    font-size: 18px;
}
.design_area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}



.zx_gallery_section {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.zx_gallery_row {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.zx_gallery_img {
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
  max-width: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.zx_gallery_img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .zx_gallery_img {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .zx_gallery_section {
    padding: 0 15px;
        max-width: 100%;
  }

  .zx_gallery_img {
    height: 100%;
    margin-bottom: 10px;
  }
}







/* =========================
   MODERN CONTACT SECTION
========================= */

.contact_container {
    position: relative;
    overflow: hidden;
}

/* Main Layout */
.contact_container .row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
        margin-bottom: 50px;
}

/* Card Design */
.contact-us-desc {
    background: #f7f7f7;
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow:
        0 15px 40px rgb(255 255 255 / 6%), inset 0 1px 0 rgb(255 255 255 / 70%);
    transition: 0.4s ease;
    position: relative;
}

/* Headings */
.get-in-touch h3,
.contact-address h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: -0.5px;
}

.get-in-touch h3::after,
.contact-address h2::after {
    content: "";
    width: 85px;
    height: 5px;
    background: linear-gradient(120deg, #952f10 0%, #c52233 100%);
    position: absolute;
    left: 0;
    bottom: -14px;
    border-radius: 100px;
}

/* Contact Grid */
.contact-list {
    display: grid;
    gap: 22px;
}

/* Single Item */
.single-contact-list {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 20px;
    background: #ffffff;
    transition: 0.3s ease;
    border: 1px solid #eef2ff;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.single-contact-list:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 10px 25px rgba(37,99,235,0.08);
}

.single-contact-list::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2563eb, #60a5fa);
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.3s;
}

.single-contact-list:hover::before {
    opacity: 1;
}

/* Icons */
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(120deg, #952f10 0%, #c52233 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    transition: 0.3s ease;
}

.single-contact-list:hover .contact-icon {
    transform: rotate(-5deg) scale(1.08);
}

/* Text */
.conatct-desc p {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
}

.conatct-desc strong {
    color: #0f172a;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

/* Links */
.conatct-desc a {
    color: #2563eb;
    text-decoration: none;
    transition: 0.3s;
}

.conatct-desc a:hover {
    color: #1d4ed8;
}

/* Social Icons */
.contact-social {
    margin-top: 35px;
    display: flex;
    gap: 16px;
}

.contact-social a {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #0f172a;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Glow Hover */
.contact-social a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: 0.35s;
}

.contact-social a i {
    position: relative;
    z-index: 2;
}

.contact-social a:hover::before {
    opacity: 1;
}

.contact-social a:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37,99,235,0.25);
}

/* Responsive */
@media (max-width: 991px) {

    .contact_container .row {
        grid-template-columns: 1fr;
            gap: 20px;
    }

    .contact-us-desc {
        padding: 32px;
    }

    .get-in-touch h3,
    .contact-address h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {

    .contact_container {
        padding: 0 15px;
    }

    .contact-us-desc {
        padding: 25px;
        border-radius: 22px;
    }

    .single-contact-list {
        grid-template-columns: 55px 1fr;
        padding: 18px;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        font-size: 18px;
        border-radius: 14px;
    }

    .conatct-desc p {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-social {
        justify-content: center;
    }
}





.contact-form {
    width: 700px;
    margin: 0 auto;
}
.contact-wrap .contact-title h2 {
    margin-bottom: 20px;
    font-size: 30px;
    color: #0c4da2;
    font-weight: 700;
}
.flex_area {
    display: flex;
    gap: 10px;
}
.flex_area .col-lg-6 {
    width: 50%;
}
.flex_area label {
    margin-bottom: 10px;
    display: block;
}
.flex_area_full .form-control {
    height: 40px;
    color: var(--main-color);
    border: 1px solid #ebebeb;
    background-color: #f5f6f6;
    border-radius: 0;
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    box-sizing: border-box;
}
#contactForm .col-12 {
    margin-top: 25px;
}
#contactForm .col-12 label {
    margin-bottom: 10px;
    display: block;
}
.default-btn {
    font-size: 16px;
    color: #ffffff;
    padding: 15px 40px;
    text-align: center;
    background-color: #0c4da2;
    border-radius: var(--border-radius);
    border: 1px solid #0c4da2;
    text-transform: capitalize;
}
.main-contact-area {
    margin: 0 0 50px 0;
}
.full_captcha {
    margin: 20px 0 20px 0;
}



/* Privacy Policy Section */
.privacy-policy {
  background: #fff;
}

.privacy-policy .container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f7f7f7;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(255 255 255 / 5%);
    margin-bottom: 50px;
}

/* Heading Styles */
.privacy-policy h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 25px;
  position: relative;
}

.privacy-policy h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #1467d4;
  display: block;
  margin-top: 12px;
  border-radius: 10px;
}

.privacy-policy h3 {
  font-size: 25px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 18px;
  color: #1467d4;
}

.privacy-policy h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #374151;
}

/* Paragraph */
.privacy-policy p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #4b5563;
}

/* Lists */
.privacy-policy ul,
.privacy-policy ol {
  margin: 20px 0 30px 25px;
  padding: 0;
}

.privacy-policy li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #374151;
}

/* Ordered List Numbers */
.privacy-policy ol li::marker {
  color: #1467d4;
  font-weight: 700;
}

/* Unordered List Bullets */
.privacy-policy ul li::marker {
  color: #1467d4;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-policy {
    padding: 0px 15px;
  }

  .privacy-policy .container {
    padding: 30px 20px;
  }

  .privacy-policy h2 {
    font-size: 24px;
  }

  .privacy-policy h3 {
    font-size: 21px;
        margin-top: 25px;
    margin-bottom: 10px;
  }

  .privacy-policy h4 {
    font-size: 19px;
  }

  .privacy-policy p,
  .privacy-policy li {
    font-size: 15px;
  }
}





/* Blog Container */
.blog_container {
  padding: 0px 15px 50px 15px;
}

/* Main wrapper */
.blog_container .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Blog card */
.blog_details {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Image */
.blog_details img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Date badge */
.date_blog {
  display: inline-block;
  margin: 15px 20px 0;
  padding: 6px 12px;
  background: #c52233;
  color: #fff;
  font-size: 13px;
  border-radius: 20px;
}

/* Content area */
.blog_txt {
  padding: 20px 30px 40px;
}

/* Paragraph */
.blog_txt p {
  margin-bottom: 18px;
  font-size: 16px;
  color: #555;
}

.blog_txt p:last-child {
  margin-bottom: 0px;
}

/* Headings */
.blog_txt h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
  color: #222;
  border-left: 4px solid #c52233;
  padding-left: 10px;
}

.blog_txt h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #c52233;
}

/* Strong text */
.blog_txt strong {
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .blog_txt {
    padding: 15px 18px 30px;
  }

  .blog_txt h2 {
    font-size: 20px;
  }

  .blog_txt h3 {
    font-size: 16px;
  }

  .date_blog {
    margin-left: 15px;
  }
}



.global-client-presence {
text-align: center;
    padding: 0;
    margin: 50px 0px 50px 0px;
}
.global-client-presence h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #000;
}
.flag-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 20px;
  justify-items: center;
  padding: 0 100px;
}
.flag-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.flag-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}




.astrotrust-section{
    padding:50px 20px;
    background:#fff;
    overflow:hidden;
margin-top: 30px;
}

.astrotrust-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:50px;
    align-items:center;
}

.astrotrust-left{
    flex:1;
}

.astrotrust-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#0d2f66;
    font-size:15px;
    font-weight:600;
    margin-bottom:10px;
}

.astrotrust-tag:after{
    content:"";
    width:60px;
    height:3px;
    background:#c52233;
    border-radius:50px;
}

.astrotrust-title{
    font-size:49px;
    line-height:1.05;
    font-weight:800;
    color:#000;
    margin-bottom:25px;
}

.astrotrust-title span{
    display:block;
    background:linear-gradient(90deg,#c52233,#c52233);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.astrotrust-text{
    font-size:16px;
    line-height:1.5;
    color:#000;
    max-width:550px;
    margin-bottom:35px;
}

.astrotrust-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    background: linear-gradient(120deg, #952f10 0%, #c52233 100%);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:60px;
    transition:.4s;
    box-shadow:0 15px 35px rgb(255 15 15 / 13%);
}

.astrotrust-btn:hover{
    transform:translateY(-4px);
}

.astrotrust-right{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.astrotrust-card{
    background: #f7f7f7;
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.6);
    border-radius:24px;
    padding:20px;
    display:flex;
    gap:18px;
    align-items:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.astrotrust-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background: linear-gradient(#952f10,#c52233);
}

.astrotrust-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.astrotrust-icon{
    width:65px;
    height:65px;
    min-width:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    font-size:30px;
    background: linear-gradient(135deg, #fff, #c52233);
    border:2px solid #c52233;
}
.astrotrust-icon i {
    color: #000;
}

.astrotrust-content h3{
    margin:0;
    color:#082b63;
    font-size:20px;
    line-height:1.35;
    font-weight:700;
}

@media(max-width:991px){

    .astrotrust-container{
        flex-direction:column;
    }

    .astrotrust-title{
        font-size:48px;
    }

    .astrotrust-right{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .astrotrust-title{
        font-size:25px;
            margin-bottom: 15px;
    }

    .astrotrust-card{
        padding:20px;
    }

    .astrotrust-content h3{
        font-size:18px;
    }

    .astrotrust-icon{
        width:60px;
        height:60px;
        min-width:60px;
        font-size:28px;
    }
}




/* ===========================
   ASTROX UNIQUE FOOTER DESIGN
=========================== */

.astrox-footer-wrap{
    position:relative;
    background:#050505;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}

/* Animated Glow */
.astrox-footer-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#f7b73340,transparent 70%);
    top:-250px;
    left:50%;
    transform:translateX(-50%);
    pointer-events:none;
}

.astrox-footer-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:60px 20px 50px;
    position:relative;
    z-index:2;
}

.astrox-footer-content h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
    font-weight:700;
    letter-spacing:1px;
}

.astrox-footer-content p{
    color:#cfcfcf;
    font-size:17px;
    line-height:1.9;
    max-width:750px;
    margin:auto;
margin-top: 20px;
}

/* Social Icons */
.astrox-social-links{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:35px;
}

.astrox-social-links a{
    width:55px;
    height:55px;
    border:2px solid rgba(255,255,255,0.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.astrox-social-links a:before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#f7b733,#fc4a1a);
    transform:scale(0);
    border-radius:50%;
    transition:.4s;
    z-index:-1;
}

.astrox-social-links a:hover:before{
    transform:scale(1);
}

.astrox-social-links a:hover{
    border-color:#f7b733;
    transform:translateY(-6px);
}

/* Bottom Bar */
.astrox-footer-bottom{
    border-top: 1px solid rgb(197 197 197 / 16%);
    padding:20px;
    text-align:center;
    background:#000;
}

.astrox-footer-bottom p{
    color:#bdbdbd;
    margin:0;
    font-size:15px;
}

.astrox-footer-bottom a{
    color: #fff;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    padding: 0 0 1px 0;
}

/* Responsive */
@media(max-width:768px){

    .astrox-footer-content{
        padding:60px 20px 40px;
    }

    .astrox-footer-content h2{
        font-size:30px;
    }

    .astrox-footer-content p{
        font-size:15px;
    }

    .astrox-social-links a{
        width:48px;
        height:48px;
        font-size:18px;
    }
}


.mbl_img {
    display: none;
}



.location_presence {
text-align: center;
    padding: 0;
    margin: 50px 0px 50px 0px;
}
.flag-location {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-items: center;
  padding: 0 100px;
}
.location-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.location-item a {
  width: 100%;
}
.location-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}











@media (max-width: 767px) {

.slide-content .banner_head {
    font-size: 25px;
}
.info-section {
    max-width: 100%;
    padding: 0 15px;
}
.info-title {
    margin-bottom: 10px;
}
.enq_quick {
    padding: 0 15px;
}
.enq_quick p {
    font-size: 14px;
    margin-top: 5px;
    width: 100%;
}
.enq_quick_area {
    flex-direction: column;
}
.enq_quick_area input, .frm_drp {
    max-width: 80%;
    width: 100%;
}
.about-section {
    max-width: 100%;
    margin: 0 15px;
}
.client_container {
    padding: 0 15px;
    max-width: 100%;
}
.client_img img {
    width: 75px;
}
.section-title span {
    font-size: 18px;
}
.section-title {
    margin-bottom: 30px;
}
.features_pro {
    max-width: 100%;
    padding: 0 15px;
}
.features_area {
    grid-template-columns: auto;
}
.features_col_1_area {
    padding: 40px 25px;
}
.features_head_1_icon i {
    font-size: 28px;
}
.features_head_1 {
    font-size: 20px;
}
.features_col_2_area {
    padding: 40px 25px;
}
.features_head_2_icon i {
    font-size: 28px;
}
.features_head_2 {
    font-size: 20px;
}
.features_col_2_up {
    padding: 40px 25px;
}
.features_col_2_up_icon i {
    font-size: 28px;
}
.features_col_2_up_head {
    font-size: 20px;
}
.features_col_3_txt {
    padding: 30px 15px;
    font-size: 15px;
    height: auto;
}
.features_col_3_main {
    flex-direction: column;
}
.features_col_3_main_1 {
    padding: 30px 25px;
    width: 100%;
}
.features_col_3_main_1_icon i {
    font-size: 28px;
}
.features_col_3_main_1_head {
    font-size: 20px;
}
.features_col_3_main_2 {
    padding: 30px 25px;
    width: 100%;
}
.features_col_3_main_2_icon i {
    font-size: 28px;
}
.features_col_3_main_2_head {
    font-size: 20px;
}
.pro_subhead {
    font-size: 18px;
}
.program_area_head {
    font-size: 30px;
    margin: 0 0 30px;
}
.counter_area {
    grid-template-columns: auto auto;
    padding: 0 15px;
}
.counter_box {
    padding: 25px 10px;
}
.counter_box h4 {
    font-size: 25px;
}
.counter_box p {
    font-size: 16px;
    margin-top: 5px;
}
.feathers-area {
    max-width: 100%;
    padding: 0 15px;
}
.feather_area {
    gap: 15px;
    flex-direction: column;
}
.single-feathers i {
    font-size: 50px;
}
.testimonial-container {
    width: 90%;
}
.testimonial-item {
    padding: 25px 0;
}
.testimonial-item p:first-child {
    font-size: 16px;
    padding: 0 15px;
}
.custom-section-title span {
    font-size: 18px;
}
.custom-section-title {
    margin-bottom: 30px;
}
.custom-blog-container {
    max-width: 100%;
}
.custom-blog-content {
    padding: 20px;
}
.faqs_container .container {
    max-width: 100%;
    padding: 0 15px;
}
.breadcrumb-title {
    font-size: 22px;
}
.breadcrumb {
    font-size: 14px;
    margin-top: 5px;
}
.content-one p:last-child {
    margin-bottom: 0;
}
.product-section {
    max-width: 100%;
    padding: 0 15px;
}
.product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.product-name {
    font-size: 15px;
}
.product-price {
    font-size: 0.8em;
}
.logo-section {
    padding: 50px 15px;
}
.logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 0;
}
    .logo-item {
        padding: 5px;
    }
    .logo-item img {
        max-width: 100%;
        max-height: 100%;
    }
.our-skills-area {
    max-width: 100%;
    padding: 0 15px;
}
.our-skills-area .container {
    grid-template-columns: auto;
    gap: 30px;
}
.skills-content h2 {
    font-size: 30px;
    line-height: 1.2em;
}
.design_area {
    max-width: 100%;
    padding: 0 15px;
}
.design_area .row {
    gap: 10px;
    flex-direction: column;
}
.thess {
    width: 100%;
}
.zx_gallery_row {
    margin-bottom: 10px;
    gap: 15px;
    flex-direction: column;
}
.main-contact-area {
    padding: 0 15px;
}
.contact-form {
    width: 100%;
}
.flex_area {
    flex-direction: column;
    gap: 15px;
}
.flex_area .col-lg-6 {
    width: 100%;
}
.top-bar {
    padding: 10px 15px;
    flex-direction: column;
gap: 10px;
}
.top-left {
    flex-direction: column;
gap: 10px;
}
.logo img {
    height: 65px;
}
.product-text h3 {
    text-align: left;
}
.flag-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 15px;
}
.astrotrust-tag {
    gap: 10px;
    font-size: 13px;
}
.astrotrust-btn {
    padding: 12px 22px;
}
.astrotrust-text {
    margin-bottom: 25px;
}
.testimonial-section {
    padding: 30px 15px 50px 15px;
}
.faqs_container {
    padding: 0px 0 50px 0;
}
.fixed-phone {
    bottom: 290px;
}
.fixed-whatsapp {
    bottom: 230px;
}
.content-one h2 {
    font-size: 22px;
}
.content-one ul {
    margin: 0px 0 20px 20px;
}
.dktp_img {
    display: none;
}
.mbl_img {
    display: block;
}
.slide img {
    object-fit: inherit;
}
.testimonial-slider {
    gap: 0;
}
.testimonial-card {
    padding: 20px;
}
.blog_details img {
    max-width: 100%;
}
.flag-location {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 15px;
}
}