* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    padding-top: 50px;
} */

/* ---------------upper-header-css----------- */

.style-underline {
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.style-underline:hover {
    border-bottom: 1px solid white;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}


.left-bg {
    background-color: #6fbd43;
    position: relative;
    z-index: 1;
    
}

/* Slant effect - ONLY on Desktop */
@media (min-width: 768px) {
    .left-bg::after {
        content: "";
        position: absolute;
        top: 0;
        right: -40px;
        width: 80px;
        height: 100%;
        background-color: #6fbd43;
        transform: skewX(-25deg);
        z-index: 2;
    }
}

/* Mobile - Remove slant completely */
@media (max-width: 767px) {
    .left-bg::after {
        display: none;
    }
    
    .left-bg {
        padding: 14px 0;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2); /* Optional clean separator */
    }
}

/* Right side */
.right-bg {
    background-color: #00173c;
}

.upper-icons {
    background-color: #6fbd43;
    color: white;
    padding: 5px;
    border-radius: 5px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.upper-icons:hover {
    color: #00173c;
    transform: translatey(5px);

}
/* ----------------navbar-css----------------- */

/* Logo */
.logo-img {
    width: 150px;
    height: auto;
    max-width: 100%;
}

/* Nav Links */
.nav-link {
    background: #e9e9e9;
    border-radius: 10px;
    padding: 8px 16px !important;
    margin: 0 3px;
    transition: all 0.3s ease;
}

/* Active Link */
.navbar-nav .nav-link.active,
.active-pill {
    background-color: #6fbd43 !important;
    color: #fff !important;
}

/* Hover Effect */
.nav-link:hover {
    background: #dcdcdc;
    color: #6fbd43 !important;
}

/* Dropdown Hover (Desktop Only) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Enquire Button */
.enquire-btn {
    border-radius: 25px;
    padding: 6px 16px;
}

/* -------------------------
   MOBILE & TABLET
-------------------------- */

@media (min-width: 992px) and (max-width: 1200px) {

    .navbar-nav {
        gap: 6px !important;
        flex-wrap: nowrap !important;
    }

    .nav-link {
        font-size: 13px !important;
        padding: 5px 10px !important;
        white-space: nowrap;
    }

    .logo-img {
        width: 130px;
    }
}

@media (max-width: 991px) {

    /* Navbar Collapse */
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    }

    /* Vertical Menu */
    .navbar-nav {
        width: 100%;
        gap: 8px !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: left;
        margin: 0;
    }

    /* Dropdown Menu */
    .dropdown-menu {
        position: static !important;
        width: 100%;
        border: none;
        box-shadow: none !important;
        margin-top: 5px;
        padding-left: 15px;
    }

    /* Toggle Button */
    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Logo */
    .logo-img {
        width: 120px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {

    .logo-img {
        width: 100px;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 12px !important;
    }

    .enquire-btn {
        padding: 5px 12px;
        font-size: 14px;
    }
}

/* ----------------------------------index-page-section-css--------------------------- */

/* -------------------hero-section-css----------- */
/* SAME SIZE FOR ALL CAROUSEL IMAGES */
.hero-img {
    /* width: 100%; */
    height: 700px;       /* fixed frame like first image */
    object-fit: cover;   /* crops others to match first */
    object-position: center;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-img {
        height: 500px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-img {
        height: 350px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-img {
        height: 250px;
    }
}

.icon 
{ background: #6fbd43; color: #fff; padding: 10px; font-size: large; border-radius: 10%; display: inline-block; }

.icon:hover{
    background:#00173c;
    color:#fff;
}

.list-unstyled li{
    margin-bottom:10px;
}



/* -------------------------banner-section-css----------- */

.banner-overlap {
    padding-top: 0;
    position: relative;
}

.banner-box {
    transform: translateY(-100px);
    /* moves banner upward */
    z-index: 10;
}

.premium-card {
    border-radius: 20px;
    background-color: white;
    padding: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.premium-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 50px rgba(189, 253, 13, 0.15);
    border-color: #6fbd43;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: #6fbd43;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
    transition: all 0.4s ease;
}

.premium-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 25px 50px rgba(189, 253, 13, 0.15);
}

.premium-card h5 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #00173c;
}

/* ------------------about-section-css------------ */

.subtitle {
    font-family: Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #00173c;
    text-align: center;
    letter-spacing: 3px;
    margin-top: 10px;
}

.about-btn {
    background-color: #6fbd43;
    color: white;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

/* Hover effect */
.about-btn:hover {
    background-color: #00173c;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    /* slight lift */
}


@media (max-width: 768px) {
    .hvac-main {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }
       .img-group img {
        width: 100%;
        height: 80%;   /* 👈 controls large size */
        object-fit: cover;
        
    }
}
@media (max-width: 992px) {

    .img-group img {
        width: 100%;
        height: 80%;      /* 👈 nice large size */
        object-fit: cover;
        
        display: block;
    }

}

/* ----------services-section-css------------------- */
.card-body {
    border-radius: 15px;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    border: 1px solid grey;
    height: 100%;
}

.card-body img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-description {
    background: #fff;
    color: #000;
    border-radius: 5px;
    width: 100%;
    padding: 15px;
    flex-grow: 1;
}

.card-description h3 {
    color: #6fbd43;
    font-size: 22px;
}

.card-description p {
    font-size: 14px;
    text-align: justify;
}
@media (max-width:1200px) {
    .card-description {
    background: #fff;
    color: #000;
    border-radius: 5px;
    width: 100%;
    padding: 15px;
    flex-grow: 1;
    height: 250px;
}
}

/* Tablet */
@media (max-width: 992px) {
    .card-body img {
        height: 200px;
    }

   .card-description {
    background: #fff;
    color: #000;
    border-radius: 5px;
    width: 100%;
    padding: 15px;
    flex-grow: 1;
    height: 250px;
}
}

/* Mobile */
@media (max-width: 768px) {

 

    .card-body img {
        height: 180px;
    }

    .card-description {
        padding: 12px;
         height: 250px;
    }

    .card-description h3 {
        font-size: 18px;
    }

    .card-description p {
        font-size: 13px;
        text-align: left;
    }

    /* Carousel Buttons */
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px !important;
        height: 35px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .card-body img {
        height: 160px;
    }

    .card-description h3 {
        font-size: 16px;
    }

    .card-description p {
        font-size: 12px;
    }
}

/* --------------benefits-section-css---------/ */

/* IMAGES */
.img-grid {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 18px;
}

/* stagger effect (desktop only) */
.img-bottom {
    margin-top: 40px;
}

/* BORDER BOX */
.border-hover {
    border: 1px solid gray;
    transition: all 0.3s ease;
    height: 100%;
}

.border-hover:hover {
    border: 2px solid #6fbd43;
}

/* -- RESPONSIVE -- */

/* Tablet */
@media (max-width: 991px) {

    .img-grid {
        height: 320px;
    }

    .img-bottom {
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .img-grid {
        height: 250px;
    }

    .img-bottom {
        margin-top: 0;   /* remove stagger on mobile */
    }

    /* .row.g-3.align-items-center {
        flex-direction: column;
    } */
}

/* Small mobile */
@media (max-width: 576px) {

    .img-grid {
        height: 220px;
    }

    .border-hover {
        padding: 15px;
    }
}

/* --------------------industries-section-css---------------- */

/* Background */
.industries-section {
    background-image: url("../img/bg-img");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Make equal height */
.row.align-items-center {
    align-items: stretch !important;
}

/* Desktop vertical divider */
@media (min-width: 768px) {
    .col-divider {
        border-right: 1px solid rgba(0,0,0,0.1);
    }
}

/* Remove divider on last column of each row */
.col-divider:last-child {
    border-right: none;
}

/* Horizontal divider */
.row-divider {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* ---------------- RESPONSIVE FIX ---------------- */

/* Tablet */
@media (max-width: 991px) {
    .fs-4 {
        font-size: 1.2rem !important;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .col-md-4 {
        margin-bottom: 20px;
    }

    .col-divider {
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 20px;
    }

    .row-divider {
        border-bottom: none;
    }

    h2.display-5 {
        font-size: 1.8rem;
    }
}

/* Small mobile */
@media (max-width: 576px) {

    .fs-4 {
        font-size: 1.1rem !important;
    }

    p {
        font-size: 14px;
    }
}

/* -------------------certificate-section-css--------------- */

/* Base (Desktop default 1200px+) */
.cert-img {
    width: 260px;
    height: 320px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.carousel-item .d-flex {
    gap: 20px;
    justify-content: center;
}

/* Hover */
.cert-img:hover {
    transform: scale(1.05);
}

/* 🔵 Large Screens (1200px+) */
@media (min-width: 1200px) {
    .cert-img {
        width: 260px;
        height: 320px;
    }
}

/* 🟡 Laptop / Desktop (992px–1199px) */
@media (max-width: 1199px) {
    .cert-img {
        width: 230px;
        height: 300px;
    }

    .carousel-item .d-flex {
        gap: 15px;
    }
}

/* 🟠 Tablet (768px–991px) */
@media (max-width: 992px) {
    .cert-img {
        width: 45%;
        height: 280px;
    }

    .carousel-item .d-flex {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* 🔴 Mobile (≤576px) */
@media (max-width: 576px) {
    .cert-img {
        width: 100%;
        height: 260px;
    }

    .carousel-item .d-flex {
        flex-direction: column;
        gap: 12px;
    }
}

/* ----------------------clients-section-css-------------------- */
.pill {
    width: 50px;
    height: 25px;
    border: 2px solid #6fbd43;
    border-radius: 20px;
    background: white;
    position: relative;
}

.pill::before {
    content: "";
    width: 26px;
    height: 15px;
    background: #6fbd43;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.logo-track,
.logo-track2 {
    display: flex;
    width: max-content;
    transition: transform 0.5s linear;
    gap: 20px;

}

.logo-track.active,
.logo-track2.active {
    animation: stepMove 6s steps(1) infinite;
}

/* .logo-track2.active {
    animation: stepMoveRight 6s steps(1) infinite;
} */

.logo-div {
    flex: 0 0 auto;
    /* width: 180px; */
    /* margin: 10px;
    padding: 10px; */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 4px 1px #8d8c8c1c;
    text-align: center;
}

.logo-div {
    overflow: hidden;
    /* important for zoom */
    transition: 0.3s ease;
}

.logo-div img {
    transition: transform 0.4s ease;
}

.logo-div:hover img {
    transform: scale(1.1);
}

.logo-div:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.logo-box {
    width: 85%;
    height: 90%;
}

/* KEYFRAMES */
@keyframes stepMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-30px);
        /* small jump */
    }

    100% {
        transform: translateX(-30px);
        /* hold position */
    }
}


@keyframes stepMoveRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(30px);
    }
}

/* ✅ RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .logo-box {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .logo-box {
        width: 130px;
    }
}

@media (max-width: 576px) {
    .logo-box {
        width: 110px;
    }
}

/* --------------------contact-section-css----------- */
.contact-icon {
    border: dotted;
    border-color: #6fbd43;
    border-radius: 50%;
    padding: 10px 5px;
    color: #6fbd43;

}

.contact-div {
    color: #444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, .3);
    padding: 20px 5px 30px;
}

/* ------------------------------------------------about-page-section-css----------------------------- */

/* --------------------about-banner-css---------------- */

.inner-banner {
    background-image: url("../img/about-banner.jpg");
    position: relative;
    background-position: center center;
    background-size: cover;
    height: 300px;
    display: flex;
    text-align: left;
    color: #fff;
}

.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00173c5e;
    /* dark overlay */
}

/* --------------about-imfor-css------------------ */

.img-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    margin: 0 auto;
}

.img-box::before {
    content: "";
    position: absolute;
    left: -12px;
    bottom: -12px;
    width: 100%;
    height: 100%;
    background: #00173c;
    border-radius: 12px;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.img-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease-in-out;
}

/* Hover Effect */
.img-box:hover img {
    transform: translate(8px, -8px);
}

.img-box:hover::before {
    left: -18px;
    bottom: -18px;
}

/* Text Hover */
.text-hover a {
    color: #00173c;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.text-hover a:hover {
    color: #6fbd43;
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */

/* General Tablet & Small Laptop */
@media (max-width: 991px) {
    .img-box {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Small Mobile - 375px (iPhone 6/7/8/X/12/13 etc.) */
@media (max-width: 375px) {
    .img-box {
        margin-bottom: 25px;
    }
    
    .img-box::before {
        left: -8px;
        bottom: -8px;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .fs-5 {
        font-size: 1.05rem;
    }
    
    .text-hover a {
        font-size: 1.05rem;
    }
}

/* Extra Small Mobile - 320px (Small Android / Old iPhones) */
@media (max-width: 320px) {
    .img-box {
        margin-bottom: 20px;
    }
    
    .img-box::before {
        left: -6px;
        bottom: -6px;
    }
    
    h2 {
        font-size: 1.65rem;
        line-height: 1.25;
    }
    
    .fs-5 p {
        font-size: 1rem;
    }
    
    .text-hover a {
        font-size: 1rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* ---------------about-tabs-css------------------ */

.custom-tab {
    background: #fff;
    border-radius: 10px;
    padding: 12px 15px;
    font-weight: 600;
    color: #000;
    border: 2px solid transparent;
    transition: 0.3s;
    text-align: left;
}

.custom-tab:hover {
    background: #198754;
    color: #fff;
    transform: translateX(5px);
}

.custom-tab.active {
    background: #198754 !important;
    color: #fff !important;
}

.tabs-img {
    position: relative;
    width: 100%;
    display: inline-block;
}

.tabs-img::before {
    content: "";
    position: absolute;
    left: -15px;
    bottom: -15px;
    width: 100%;
    height: 100%;
    background: #00173c;
    border-radius: 12px;
    z-index: 0;
}

/* image must be ABOVE background */
.tabs-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: 0.3s ease;
}

/* hover effect only on image */
.tabs-img:hover img {
    transform: translateY(-5px);
}

.tab-img {
    height: 400px;
    object-fit: cover;
}



/* Tablet */
@media (max-width: 992px) {
    .tab-img {
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .tab-img {
        height: 220px;
    }

    .nav.flex-column {
        flex-direction: row !important;
        overflow-x: auto;
        white-space: nowrap;
    }

    .custom-tab {
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 13px;
    }
}
/* ----------------------about-certificate-css----------- */

/* SLIDER */
.about-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* MOVING TRACK */
.about-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: aboutSlide 20s linear infinite;
}

/* BOX */
.about-slider-box {
    width: 300px;
    height: 200px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

/* IMAGE */
.about-slider-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s ease;
}

/* HOVER */
.about-slider-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-slider-box:hover img {
    transform: scale(1.08);
}

/* AUTO MOVE */
@keyframes aboutSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ------------------contact-page-css------------------ */

/* ----------contact-banner-section----- */

.contact-banner {
    background-image: url("../img/contact-banner.jpg");
    position: relative;
    background-position: center center;
    background-size: cover;
    height: 300px;
    display: flex;
    text-align: left;
    color: #fff;

}

.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00173c8c;
    /* dark overlay */
}

/* --------------------contact-soruce-section------------ */

.contact-hover {
    color: white;
    transition: transform .15s cubic-bezier(.4, 0, .2, 1);
}

.contact-hover:hover {
    transform: translateY(-8px);
}

.contact-hover:hover p,
.contact-hover:hover a,
.contact-hover:hover span {
    color: #00173c !important;
}

/* --------------contact-form-section---------------- */
.contact-form {

    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url("../img/contact-form-img.jpg");
    background-size: cover;
    background-position: center;


}

/* -------------------product-page-css-------------------- */
/* -----------product-infor-section-------- */


.product-btn {
    background-color: #6fbd43;
    color: white;
    padding: 12px 28px;
    border-radius: 10px;

    transition: .3s ease;
    display: inline-block;

    box-shadow: 0 6px 0 #4d8f2c;
}

.product-btn:hover {
    background-color: #00173c;
    box-shadow: 0 6px 0 #000;
    color: white;
}

/* -----------------------product-tabs-section------------- */
.title-box {
    background: #00173c;
    color: #fff;
    padding: 18px;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 20px;
}

.product-tab {
    display: block;
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #1d57a4;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-tab:hover {
    background: #00173c;
    color: #fff;
}

.contact-box {
    background: #00173c;
    padding: 25px;
    border-radius: 5px;
    margin-top: 30px;
}

.contact-box .form-control {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.contact-box .form-control::placeholder {
    color: #ddd;
}

.submit-btn {
    background: #6fbd43;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
}

/* -----------------product-slider -css----------------*/
.slider-img {
    height: 500px;
    object-fit: cover;
}

.nav-pills .nav-link.active {
    background: #6fbd43 !important;
    color: #fff !important;
}

.nav-pills .nav-link {
    color: #6fbd43;
}

/* ---------------product-application-section------ */
.industry-card {
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #e6392d !important;
}

/* -------------------product-inners-pages-css-------------------- */

@media (max-width:768px) {
    .product-img img{
        height: 500px;
        align-items: center;
    }
}

.box {
    position: relative;
    overflow: hidden;
}

.box img {
    height: 250px;
    object-fit: cover;
    transition: .4s;
    filter: brightness(0.8);
}

.img-text {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    margin: 0;
    z-index: 2;
}

.overlay {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, .5); */
    background: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
}

.box:hover .overlay {
    top: 0;
}

.overlay a {
    background: #6fbd43;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
}

/* ----------------application-page-css-------- */
    /* ------application-banner-css */

.application-banner{
    background-image: linear-gradient(90deg, rgba(1,41,77,0.8), rgba(1,94,153,0.8)),
    url("../img/application-img.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.application-banner::before{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed #fff;
    border-radius: 25px;
}

/* ---------------projects-page-css------------- */

.project-bg{
    background-image: url("../img/projects-bg-img.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    /* -----------------media & blogs-page-css------ */
.blog-card{
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #ddd;
}

/* .blog-card h2{
    color: #00173c;
    font-weight: 700;
} */

.blog-card small{
    color: #6fbd43;
}

.blog-card a{
    color: #6fbd43;
    text-decoration: none;
    font-weight: 600;
}

.blog-side{
    background: linear-gradient(#00173c,#6fbd43);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.blog-side ul{
    padding-left: 18px;
}

.blog-side a{
    color: #fff;
    text-decoration: none;
}




/* ----------------footer-css-------------------- */  
footer {
    position: relative;
}

.elementor-shape {
    position: absolute;
    /* top: 0; */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.elementor-shape svg {
    display: block;
    width: 100%;
    height: 50px;
    /* 🔥 reduce height here */
    z-index: 0;
}

.elementor-shape-fill {
    fill: white;
}

.hero-bg {
    background-image: url("../img/banner-2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    margin-top: 50px;

}

.hero-overlay {
    background: rgba(15, 23, 42, 0.82);

}

.section-tittle {
    color: #6fbd43;
    font-weight: 700;
    border-bottom: 3px solid #6fbd43;
    display: inline-block;
    padding-bottom: 8px;
}

.product-list li {
    margin-bottom: 10px;
    color: white;
    /* border-bottom: 1px solid grey; */

}

.control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--red);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* .icon {
    background-color: #6fbd43;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon:hover {
    color: #00173c;
    transform: translatey(5px);

} */