* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #eef6fb;
    background-image:
        linear-gradient(#d6e6f2 1px, transparent 1px),
        linear-gradient(90deg, #d6e6f2 1px, transparent 1px);

    background-size: 38px 38px;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    /* padding-top: 100px; */

}

/* TOP BAR */

.top-bar {
    background: #0f65d8;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
    padding: 8px 15px;
    z-index: 9999;
}

#logo {
    height: 75px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #0d3b66 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 8px !important;
    border-radius: 8px;
    transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff !important;
    background: #f0f7ff;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
}

.dropdown-item:hover {
    background: #007bff;
    color: #fff;
}

.call-btn {
    background: linear-gradient(90deg, #00c6ff, #00d4aa);
    color: #fff !important;
    border-radius: 30px;
    padding: 10px 20px;
}

/* Desktop hover */
@media (min-width:1200px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

@media(min-width:992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* Mobile & Tablet */
@media (max-width:1199px) {

    #logo {
        height: 60px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    }

    .navbar-nav .nav-link {
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        /* position: static !important; */
        transform: none !important;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        margin-left: 15px;
    }

    .call-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media(max-width:991px) {

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-left: 15px;
    }

    .dropdown-item {
        padding: 10px 15px;
    }
}

/* carousel */


.carousel-item {
    height: 400px;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Caption Styling */
.custom-caption {
    bottom: 20%;
    animation: slideUp 2s ease;
}

/* Text Style */
.custom-caption h2 {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}

.custom-caption p {
    font-size: 18px;
    color: #fff;
}

@media (max-width: 768px) {
    .custom-caption {
        top: center;
        bottom: auto;
        transform: translateY(-50%);
    }
}

/* Call Button */
.call-btn {
    background-color: #0d3b66;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* enquiry form */
.enquiry-wrapper {
    width: 100%;
    background: #cad7d7;
    padding: 50px 40px;
    box-sizing: border-box;
}

.enquiry-container {
    max-width: 1800px;
    margin: auto;
}

.enquiry-title {
    text-align: center;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.enquiry-form {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.input-box {
    flex: 1;
    position: relative;
}

.input-box input {
    width: 100%;
    height: 75px;
    border: 1px solid #e2e2e2;
    border-radius: 15px;
    padding: 0 60px 0 25px;
    font-size: 20px;
    background: #f5f5f5;
    box-sizing: border-box;
    outline: none;
}

.icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    background: transparent !important;
    border: none;
    padding: 0;

}

.enquiry-btn {
    height: 75px;
    min-width: 260px;
    border: none;
    border-radius: 15px;
    background: #156ef5;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 992px) {

    .enquiry-title {
        font-size: 40px;
    }

    .input-box input,
    .enquiry-btn {
        height: 65px;
    }

    .enquiry-btn {
        min-width: 200px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .enquiry-form {
        flex-direction: column;
    }

    .input-box input {
        height: 55px;
        font-size: 14px;
        padding: 0 40px 0 12px;
        width: 100%;
    }

    .icon {
        font-size: 18px;
        right: 12px;
    }

    .enquiry-btn {
        height: 55px;
        width: 100px;
        font-size: 14px;
        padding: 0 10px;
    }

    .enquiry-title {
        font-size: 32px;
    }

    .input-box,
    .enquiry-btn {
        width: 100%;
    }

}


iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 10px;
}

.display {
    font-size: 60px;
    font-weight: bold;
}

.dis {
    font-size: 30px;
    font-weight: 900;
}

@media (max-width:768px) {
    .display {
        font-size: 28px;
    }

    .dis {
        font-size: 16px;
    }

    .call-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}


/* HERO */

.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* GRID BACKGROUND */

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(#dbeafe 1px, transparent 1px),
        linear-gradient(90deg, #dbeafe 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: .4;
    z-index: -1;
}

.badge-custom {
    display: inline-block;
    padding: 10px 20px;
    background: #eaf4ff;
    border-radius: 30px;
    font-weight: 600;
    color: #0f65d8;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    color: #071233;
}

.hero-title span {
    display: block;
    background: linear-gradient(90deg,
            #2f80ed,
            #00d2ff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    margin: 25px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call {
    background: linear-gradient(90deg,
            #00c6ff,
            #00d4aa);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-quote {
    border: 2px solid #0f65d8;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* RIGHT SIDE */

.hero-card {
    position: relative;
    border-radius: 30px;
    /* overflow: hidden; */
    display: inline-block;
    overflow: visible;
    width: 100%;
}

.hero-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
}

.floating-box {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    font-weight: 600;
    z-index: 2;
}

.install {
    /* top: 80px;
    left: -20px; */
    top: 60px;
    left: 0px;
    animation: floatDown 3s ease-in-out infinite alternate;

}

.warranty {
    /* bottom: 100px;
    right: -20px; */
    bottom: 20px;
    right: 0px;
    animation: floatUp 3s ease-in-out infinite alternate;
}

/* Animations */
@keyframes floatDown {
    from {
        transform: translateY(-10px);
    }

    to {
        transform: translateY(25px);
    }
}

@keyframes floatUp {
    from {
        transform: translateY(10px);
    }

    to {
        transform: translateY(-25px);
    }
}


/* MOBILE */

@media(max-width:768px) {

    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-card {
        /* margin-top: 40px; */
        width: 105%;
        margin-left: -2.5%;
        margin-top: 40px;
    }

    .hero-card img {
        height: 400px;
    }

}

/* ABOUT US PAGE */
.about-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.main-img {
    width: 370px;
    /* reduce size */
    height: 370px;
    margin: auto;
    position: relative;
}

/* Main Image */
.main-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* circle shape */
    object-fit: cover;
    /* image fit inside circle */
    border: 8px solid #fff;
    /* optional white border */
}

/* Small Image */
.small-img {
    position: absolute;
    bottom: 0;
    right: 50px;
    height: 180px;
    width: 180px;
}

.small-img img {
    width: 100%;
    border-radius: 50%;
    border: 6px solid #fff;
}

/* Experience Circle */
.exp-circle {
    position: absolute;
    top: -20px;
    left: 50px;
    width: 180px;
    height: 180px;
    background: linear-gradient(90deg, #0B1F3A, #0F65D8);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 6px solid #fff;
}

.exp-circle h2 {
    font-size: 40px;
    margin: 0;
    color: #fff;
}

.exp-circle p {
    font-size: 14px;
    color: #fff;
}

.container1 {
    font-family: 'Segoe UI', sans-serif;
    max-width: 1200px;
    margin: 30px auto;
    padding: 40px;
    border: 3px solid #2a7faa;
    border-radius: 20px;
    background-color: #f2f2f2;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

ul {
    margin-top: 20px;
}

li {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 10px;
}

strong {
    font-weight: 700;
}

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

/* Colors */
.call {
    background-color: #20c997;
}

.whatsapp {
    background-color: #25D366;
}

.mail {
    background-color: #007bff;
}

/* Hover Effect */
.float-btn:hover {
    transform: scale(1.1);
}

.page-title {
    background: linear-gradient(90deg, #0B1F3A, #0F65D8);
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 45px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .page-title {
        padding: 30px 15px;
        font-size: 28px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .page-title {
        padding: 25px 12px;
        font-size: 24px;
        line-height: 1.4;
    }
}

/* -------- */

/* About us page faq */
.faq-section {
    background: #f8f9ff;
}

/* Section Title */
.faq-section h2 {
    font-weight: 700;
    color: #dedee7;
}

/* Accordion Item */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Accordion Button */
.accordion-button {
    font-weight: 600;
    font-size: 16px;
    background: #ffffff;
    color: #333;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.accordion-button:hover {
    background: #f1f3ff;
    color: #9d79c3;
}

/* Active (Opened) */
.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #9d79c3, #8eb2ee);
    color: #fff;
    box-shadow: none;
}

/* Remove default arrow background */
.accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Accordion Body */
.accordion-body {
    background: #ffffff;
    color: #1b1a1a;
    font-size: 15px;
    line-height: 1.6;
    padding: 18px 20px;
}

/* Smooth Animation */
.accordion-collapse {
    transition: all 0.3s ease;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 14px;
        padding: 14px;
    }

    .accordion-body {
        font-size: 14px;
    }
}

.object-fit-cover {
    object-fit: cover;
}

/* blog page */
.blog-section {
    padding: 8px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-heading {
    margin-bottom: 40px;
    text-align: center;
}

.section-heading span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0d3d8c;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-size: 42px;
    color: #0d3d8c;
    font-family: Georgia, serif;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.phone-tag {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: #1e73be;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: #0d3d8c;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.blog-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefits-list {
    padding-left: 18px;
    margin-bottom: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #0d3d8c;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.read-more:hover {
    color: #ffb400;
}

/* Responsive */

@media(max-width:991px) {

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-content h3 {
        font-size: 20px;
    }
}

@media(max-width:576px) {

    .section-heading h2 {
        font-size: 32px;
    }

    .blog-image img {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }
}

.gallery-title {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    background: lightslategray;
    padding: 20px;
    margin: 0;
}

@media (max-width:768px) {
    .gallery-title {
        font-size: 32px;
        padding: 15px;
        line-height: 1.3;
    }
}

@media (max-width:480px) {
    .gallery-title {
        font-size: 24px;
        padding: 12px;
    }
}

/* Services  pages*/

.service-section {
    background: #ece5e5;
}

.content-card,
.image-card {
    height: 100%;
    background: #fff;
}

.content-card {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-card {
    height: 100%;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 550px;
    padding: 15px;
}

@media (max-width: 576px) {
    .service-container .row {
        flex-direction: column-reverse;
    }
}

.welcome-text {
    color: #0d6efd;
    font-size: 16px;
}


/* Advantages of invisible grills */
.advantages-section {
    background: linear-gradient(135deg, #f8f9fa, #eef7ff);
}

.advantages-section .container {
    display: block !important;
}

.advantages-section .row {
    margin-top: 30px;
}

.advantage-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    min-height: 260px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.iconss {
    font-size: 45px;
    margin-bottom: 15px;
}

.advantage-card h4 {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 12px;
}

.advantage-card p {
    color: #555;
    line-height: 1.7;
}

/* Mobile View */
@media (max-width: 767px) {

    .advantages-section {
        padding: 40px 15px;
    }

    .advantage-card {
        min-height: auto;
        padding: 25px 20px;
    }

    .icon {
        font-size: 38px;
    }

    .advantage-card h4 {
        font-size: 20px;
    }

    .advantage-card p {
        font-size: 15px;
    }
}

/* why choose */

.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa, #eef8ff);

}

.why-choose-section .container {
    display: block !important;
}

.why-choose-section .text-center {
    width: 100% !important;
    margin-bottom: 50px;
}

.why-choose-section .row {
    width: 100% !important;
    margin: 0;
}

.sections-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: auto;
}

.choose-card {
    /* background: #fff;
            padding: 30px;
            text-align: center;
            border-radius: 15px;
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: 0.4s ease; */
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.choose-card .ico {
    /* font-size: 50px;
            margin-bottom: 15px; */
    /* 
            font-size: 50px;
            margin-bottom: 15px;
            display: block;
            line-height: 1;
            position: relative;
            z-index: 1; */
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
}

.choose-card h4 {
    color: #0d6efd;
    margin-bottom: 15px;
    font-weight: 600;
}

.choose-card p {
    color: #555;
    line-height: 1.8;
}

.seo-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.seo-content h3 {
    color: #0d6efd;
    margin-bottom: 15px;
}

.seo-content p {
    line-height: 1.8;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .sections-title {
        font-size: 2rem;
    }

    .choose-card {
        padding: 25px;
    }
}

.choose-card .ico {
    position: static !important;
    float: none !important;
    transform: none !important;
}


.logos {
    height: 95px;
    width: 95px;
    object-fit: cover;
}


.contact-info-section {
    padding: 70px 20px;
    background: #f8f8f8;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-box {
    flex: 1;
    background: #d3d1d1;
    /* color: #000; */
    padding: 40px 25px;
    cursor: pointer;
    text-align: center;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-box:hover {
    background: #0d2d63;
    transform: translateY(-8px);

}

.icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 42px;
    /* color: #0d2d63; */
}

.contact-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}

.contact-box p {
    color: white;
}

.contact-box h3,
.contact-box p :hover {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;

    font-weight: 700;
}

/* Heading */
.contact-box:hover h3 {
    color: #fff;
}

/* Paragraph */
.contact-box:hover p {
    color: #fff;
}

/* Links */
.contact-box:hover p a {
    color: #fff;
    text-decoration: none;
}

.contact-box p,
.contact-box a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    word-break: break-word;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-box {
        width: 100%;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle i {
        font-size: 34px;
    }

    .contact-box h3 {
        font-size: 24px;
    }

    .contact-box p,
    .contact-box a {
        font-size: 16px;
    }
}

/* contact page */
/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.contact-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Map */
.map-box {
    flex: 1;
}

.map-box iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 10px;
}

/* Form */
.form-box {
    flex: 1;
}

.form-box h2 {
    font-size: 50px;
    margin-bottom: 30px;
    color: #1d2d50;
}

/* Input Fields */
.input-groups {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-boxs {
    position: relative;
    width: 100%;
}

.input-boxs input {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.input-boxs .icons {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .contact-wrapper {
        flex-direction: column;
    }

    .map-box,
    .form-box {
        width: 100%;
    }

    .map-box iframe {
        height: 350px;
    }

    .form-box h2 {
        font-size: 36px;
        text-align: center;
    }

    .enquiry-btn {
        width: 100%;
    }
}

/* Footer section */

.footer-section {
    /* background: linear-gradient(to right, #6a0dad, #9b4d96); */
    background: linear-gradient(90deg, #0B1F3A, #0F65D8);
    color: #fff;
}

.footer-section h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.logo {
    font-size: 40px;
    font-weight: bold;
    color: #00cfff;

}

.logos {
    height: 95px;
}



/* Social icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
}

.social-icons .mail {
    background: blue;
}

.list-unstyled li a {
    text-decoration: none;
}

.owner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* our Projects */
.stats-section {
    padding: 80px 0;
    background: rgba(111, 152, 214, 0.15);
}

.stats-section .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-box h2 {
    font-size: 72px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 28px;
    color: #1f2937;
    margin: 0;
}

.icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: #fff;
    border-radius: 20px;
    font-size: 35px;

}


/* Mobile Responsive */
@media(max-width:768px) {
    .stats-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-box h2 {
        font-size: 50px;
    }

    .stat-box p {
        font-size: 20px;
    }
}

/* services ni scroll */
.services-strip {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    padding: 15px 0;
}

.services-track {
    display: flex;
    width: max-content;
    animation: scrollServices 2s linear infinite;
    will-change: transform;
}

.services-track span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;

    /* Gap between services */
    margin-right: 80px;
}

@keyframes scrollServices {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.services-track span {
    margin-right: 120px;
}

.services-track {
    animation: scrollServices 40s linear infinite;

}


/* Why Choose us section */
.why-choose-us {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.badge-title {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #eef8ff;
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #cde5ff;
}

.section-header h2 {
    font-size: 60px;
    font-weight: 800;
    color: #111827;
    margin-top: 25px;
    line-height: 1.15;
}

.section-header h2 span {
    display: block;
    background: linear-gradient(90deg, #2563eb, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    margin-top: 20px;
}

.features-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.feature-card {
    /* display: flex; */
    flex-direction: column;
    /* Icon paina, content kinda */
    align-items: center;
    justify-content: center;
    text-align: center;

    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    gap: 20px;
}


.feature-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* .icon {
    font-size: 45px;
    margin-bottom: 15px;
} */

.content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.content p {
    font-size: 15px;
    color: #666;
}

.feature-card .icon {


    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: #f3f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: .5s ease;
}

.feature-card .content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card .content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Hover Effect */
.feature-card:hover {
    /* transform: translateY(-12px); */
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, .18);
}

.feature-card:hover .icon {
    transform: rotate(15deg) scale(1.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .4),
            transparent);
    transition: .7s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover .icon {
    transform: scale(1.15) rotate(8deg);
    transition: .4s;
}

@media (max-width:768px) {

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
        padding: 20px;
    }

    .feature-card .icon {
        margin: 0;
        min-width: 75px;
        width: 75px;
        height: 75px;
        font-size: 32px;


        animation: rotateIcon 4s linear infinite;
    }

    .icon {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .feature-card .content {
        flex: 1;
    }

    .feature-card h4 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 15px;
    }
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* modify chesina styles for why choose us */

.yjr-why-choose {
    padding: 100px 0;
    background: #fff;
}

.yjr-container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

.yjr-header {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.yjr-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #eef8ff;
    color: #2563eb;
    font-weight: 700;
}

.yjr-header h2 {
    font-size: 55px;
    margin: 20px 0;
    font-weight: 800;
}

.yjr-header h2 span {
    display: block;
    color: #2563eb;
}

.yjr-header p {
    font-size: 18px;
    color: #666;
}

.yjr-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.yjr-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;

    /* Icon paina - content kinda */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.yjr-feature-card:hover {
    transform: translateY(-10px);
}

.yjr-feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 25px;
}

.yjr-feature-content h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.yjr-feature-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

@media(max-width:992px) {

    .yjr-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .yjr-header h2 {
        font-size: 36px;
    }

    .yjr-feature-grid {
        grid-template-columns: 1fr;
    }

    .yjr-feature-card {
        padding: 30px 20px;
    }
}

/* services cards */

.services-section {

    padding: 80px 0;
    background: rgba(111, 152, 214, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #eef7ff;
    color: #2563eb;
    font-weight: 700;
    border: 1px solid #d8e8ff;
}

.section-header h2 {
    margin-top: 20px;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
}

.section-header h2 span {
    display: block;
    background: linear-gradient(90deg, #2563eb, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .15);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3b82f6;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    color: #64748b;
    line-height: 1.8;
}

.service-footer {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.call-btn {
    background: linear-gradient(90deg, #00c6ff, #00d4aa);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 40px;
    transition: .3s;
}

.call-btn:hover {
    background: linear-gradient(90deg, #00c6ff, #00d4aa);
    color: #fff;
}

.call-btn i {
    margin-right: 8px;
}

@media(max-width:991px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .service-image img {
        height: 220px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Types Of Nets */

.net-colors-section {
    padding: 100px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #eef8ff;
    color: #2563eb;
    border: 1px solid #cfe5ff;
    font-weight: 700;
}

.section-header h2 {
    margin-top: 25px;
    font-size: 60px;
    font-weight: 800;
    color: #111827;
}

.section-header h2 span {
    background: linear-gradient(90deg, #2563eb, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    margin-top: 15px;
    color: #64748b;
    font-size: 20px;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.color-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.color-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.color-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .65),
            transparent);
}

.color-info {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-info h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: block;
}

.transparent {
    background: #9ddcff;
}

.white {
    background: #fff;
}

.green {
    background: #22c55e;
}

.icon {
    font-size: 20px;
}

/* Hover Effect */
.color-card:hover {
    transform: translateY(-8px);
    transition: .4s;
    box-shadow: 0 20px 40px rgba(37, 99, 235, .18);
}

/* Inde Gallery */

.gallery-section {
    padding: 100px 0;
    background: #fff;
    margin: 10px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #eef8ff;
    color: #3b82f6;
    font-weight: 700;
    border: 1px solid #dbeafe;
}

.gallery-header h2 {
    margin-top: 25px;
    font-size: 65px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
}

.gallery-header h2 span {
    background: linear-gradient(90deg,
            #2563eb,
            #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-header p {
    margin-top: 15px;
    color: #64748b;
    font-size: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.gallery-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .2),
            transparent);
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    transition: .4s;
}

@media(max-width:991px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-header h2 {
        font-size: 42px;
    }

    .gallery-item img {
        height: 260px;
    }
}

@media(max-width:576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-header h2 {
        font-size: 32px;
    }

    .gallery-header p {
        font-size: 16px;
    }

    .gallery-item img {
        height: 240px;
    }
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h6 {
    color: #999;
    letter-spacing: 2px;
}

.section-title h2 {
    color: #0b2c4d;
    font-weight: 700;
}

.card-box {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.card-box img {
    width: 80px;
    margin-bottom: 20px;
}

.card-box h4 {
    color: #0b2c4d;
    font-weight: 600;
}

.card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-box img {
    transition: transform 0.5s ease;
}

.card-box:hover img {
    transform: scaleX(-1);
}


.net-card {
    /* background: #2f7da5; */
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    color: black;
    overflow: hidden;
    height: auto;

    /* FIX */
}


/* Image wrapper */
.img-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: auto;
}

/* Circle image */
.img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* ICONS (PERFECT CENTER ALIGN) */
.icon-box {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: 0.4s ease;
}

/* SHOW ON HOVER */
.net-card:hover .icon-box {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ICON STYLE */
.icon-box a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

/* COLORS */
.call {
    background: #ff3b30;
}

.whatsapp {
    background: #25d366;
}

.mail {
    background: #4a6cf7;
}

/* HOVER EFFECT */
.icon-box a:hover {
    transform: scale(1.15);
}

/* TEXT */
.net-card h4 {
    margin-top: 15px;
    font-weight: 600;
}

.net-card p {
    font-size: 14px;
    opacity: 0.9;
}

.net-card:hover {
    transform: translateY(-8px);
    transition: 0.3s;
}

.circ {
    background-color: #f5f7fa;
    font-family: 'Segoe UI', sans-serif;
}


/* review section */

.reviews-section {
    padding: 100px 0;
    background: transparent;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: #eef8ff;
    color: #3b82f6;
    border: 1px solid #dbeafe;
    font-weight: 700;
}

.reviews-header h2 {
    margin-top: 20px;
    font-size: 65px;
    font-weight: 800;
    color: #111827;
}

.reviews-header h2 span {
    background: linear-gradient(90deg,
            #2563eb,
            #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .4s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .15);
}

.stars {
    color: #fbbf24;
    font-size: 24px;
    letter-spacing: 3px;
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 40px;
    color: #eef2ff;
}

.review-text {
    margin-top: 20px;
    color: #475569;
    line-height: 1.8;
    font-size: 18px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.review-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.review-user span {
    color: #94a3b8;
}

.cta-card {
    background: #eef8ff;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-icon {
    font-size: 50px;
}

.cta-card h3 {
    margin-top: 20px;
    font-size: 30px;
    font-weight: 800;
}

.cta-card p {
    color: #64748b;
    margin: 15px 0 25px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, #00c6ff, #00d4aa);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #00c6ff, #00d4aa);
    color: #fff;
}

@media(max-width:991px) {

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header h2 {
        font-size: 40px;
    }
}

@media(max-width:576px) {

    .review-card {
        padding: 25px;
    }

    .reviews-header h2 {
        font-size: 32px;
    }

    .review-text {
        font-size: 16px;
    }

    .review-user h4 {
        font-size: 18px;
    }
}

/* faq section */

.faq-section {
    background: #f8fbff;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: #edf5ff;
    color: #2088ff;
    font-weight: 600;
}

.faq-heading {
    font-size: 58px;
    font-weight: 800;
    margin-top: 15px;
    color: #111827;
}

.faq-heading span {
    color: #18b6ff;
}

.faq-subtitle {
    color: #6b7280;
    margin-top: 10px;
}

.custom-faq {
    max-width: 1000px;
    margin: auto;
}

.accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.accordion-button {
    background: #fff;
    padding: 25px;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: none !important;
}

.accordion-button::after {
    display: none;
}

.icon-circle {

    width: 40px;
    height: 40px;
    min-width: 40px;

    border-radius: 50%;

    background: linear-gradient(135deg, #2563eb, #22c1ff);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

.arrow {
    margin-left: auto;
    color: #666;
    transition: .3s;
}

.accordion-button:not(.collapsed) .arrow {
    transform: rotate(180deg);
}

.accordion-button:not(.collapsed) .icon-circle i {
    content: "";
}

.accordion-button:not(.collapsed) .bi-plus-lg::before {
    content: "\f62a";
}

.accordion-body {
    padding: 0 30px 30px 85px;
    color: #666;
    line-height: 1.9;
}

.faq-contact {

    margin: 60px auto 0;
    max-width: 600px;

    background: #fff;

    border-radius: 60px;

    padding: 20px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.support-icon {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: linear-gradient(135deg, #2563eb, #22c1ff);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 28px;

}

.call-btn {

    background: linear-gradient(90deg, #00c6ff, #00d4aa);

    color: #fff;
    text-decoration: none;

    padding: 14px 28px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.call-btn:hover {

    color: #fff;
    transform: translateY(-3px);

}

@media(max-width:768px) {

    .faq-heading {
        font-size: 40px;
    }

    .accordion-button {
        font-size: 17px;
        padding: 18px;
        gap: 12px;
    }

    .icon-circle {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 15px;
    }

    .accordion-body {
        padding: 0 20px 20px 65px;
    }

    .faq-contact {
        flex-direction: column;
        gap: 20px;
        border-radius: 20px;
        text-align: center;
    }

    .call-btn {
        width: 100%;
    }
}