@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Cedarville+Cursive&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Oxanium:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* 1. Global Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style: normal;
}

img {
    max-width: 100%;
}

/* DO NOT TOUCH html, body */
html,
body {
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;

    /* Gradient background: light green + soft pastel */
    background: linear-gradient(135deg,
            #e6f5ea,
            /* very light green */
            #ffffff);
    /* white */
}




/* Only hide horizontal overflow */
.page-wrapper {
    overflow-x: hidden;
}

.site-content {
    overflow-x: hidden;
    /* SAFE */
}

.container {
    max-width: 1200px;
    padding: 0 12px;
    margin: auto;
}

a {
    text-decoration: none;
}



li {
    list-style: none;
}


/* Top Header */
.top-header {
    background: #4f8c23;
    color: #fff;
    font-size: 16px;
    padding: 6px 15px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-left span {
    margin-right: 15px;
}

.top-right {
    width: 50%;
    text-align: right;
}

/*  MOBILE */
@media (max-width: 768px) {

    .top-header .container {
        justify-content: center;
    }

    .top-left {
        display: none;
        /* Hide left side */
    }

    .top-right {
        width: 100%;
        text-align: center;
    }
}


/* ================= NAVBAR ================= */

/* NAVBAR */
.navbar {
    background: #1c5685;
    backdrop-filter: blur(10px);
    /* padding: 18px 0; */
    width: 100%;
    position: relative;
    z-index: 999;
    transition: 0.3s ease;
}

.navbar.fixed {
    position: fixed;
    top: 0;

    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.navbar-brand img {
    height: 55px;
    border-radius: 5px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Effect */
.navbar-brand img:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 6px 12px rgba(23, 108, 177, 0.35));
}


/* CENTER MENU LINKS */
.center-nav {
    display: flex;
    /* gap: 30px; */
    list-style: none;
    background: rgba(255, 255, 255, 0.144);
    backdrop-filter: blur(12px);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.center-nav .nav-item {
    position: relative;
}

.center-nav .nav-link {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 10px !important;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
}

@media(max-width: 992px) {
    .center-nav .nav-link {
        font-size: 14px;
        padding: 5px 8px !important;
    }

    .navbar-brand img {
        height: 40px;
    }

    .btn-quote {
        font-size: 14px !important;
    }
}

/* Underline animation */
.center-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Hover Effect */
.center-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Underline expands from center */
.center-nav .nav-link:hover::after {
    width: 80%;
}


/* DROPDOWN */
.custom-dropdown {
    position: relative;
}

.dropdown-pane {
    position: absolute;
    top: 140%;
    left: 0;
    background: #e2f2ff;
    min-width: 300px;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
}

.custom-dropdown:hover .dropdown-pane {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-pane a {
    display: block;
    padding: 10px;
    color: #222;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
}

.dropdown-pane a:hover {
    background: #ffffff;
    color: #1C5685;
    font-weight: 500;
}

/* GET A QUOTE BUTTON */
.btn-quote {
    background: #f68b24;
    font-size: 16px;
    color: #fff;
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-quote:hover {
    background: #0f4e8c;
}

/* MENU BUTTON */
/* =========================
   HAMBURGER TOGGLER STYLE
========================= */

.menu-btn {
    width: 30px;
    height: 22px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

/* Hamburger Lines */
/* STYLISH HAMBURGER BUTTON */

.menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(23, 108, 177, 0.08);
    border: 1px solid rgba(23, 108, 177, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Hamburger lines */
.menu-btn span {
    width: 22px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hover effect */
.menu-btn:hover {
    background: #176CB1;
    box-shadow: 0 8px 20px rgba(23, 108, 177, 0.25);
    transform: translateY(-2px);
}

.menu-btn:hover span {
    background: #ffffff;
}

/* Remove outline */
.menu-btn:focus {
    outline: none;
}

/* OFFCANVAS */
.stylish-offcanvas {
    background-color: rgb(233, 255, 246);
    color: #000000;
}

.stylish-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.418);
}


/* MOBILE MENU LINKS */
.mobile-nav-list {
    margin-top: 20px;
    list-style: none;
}

.mobile-nav-list .nav-link {
    color: #1C5685;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    transition: 0.3s ease;
}

.mobile-nav-list .nav-link:hover {
    color: #58a6ff !important;
}

/* SUB DROPDOWN */
.sub-dropdown {
    position: relative;
}

.sub-dropdown-pane {
    position: absolute;
    left: 100%;
    top: -20px;
    background: #f4ffec;
    min-width: 250px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.sub-dropdown:hover .sub-dropdown-pane {
    opacity: 1;
    visibility: visible;
}


/* MOBILE DROPDOWN */
/* Remove default dropdown arrow from mobile */
.mobile-dropdown>.nav-link::after {
    content: none !important;
}

/* Toggle icon */
.mobile-dropdown .toggle-icon {
    float: right;
    font-weight: bold;
    margin-left: 10px;
    transition: transform 0.3s ease;
    /* smooth rotation */
}

/* Rotate toggle icon when dropdown is open */
.mobile-dropdown.open .toggle-icon {
    transform: rotate(90deg);
}

/* Dropdown pane */
.mobile-dropdown-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    list-style: none;
    /* padding-left: 10px; */
}

/* Expanded state */
.mobile-dropdown.open .mobile-dropdown-pane {
    max-height: 500px;
    /* enough height for content */
    padding-top: 8px;
}

/* Dropdown links */
.mobile-dropdown-pane li .nav-link {
    font-size: 14px;
    color: #24355D !important;
    font-weight: 500;
    position: relative;
    /* for underline effect */
    transition: color 0.3s ease, padding-left 0.3s ease, background 0.3s ease;
    padding: 8px 12px;
    /* add some padding for background */
    border-radius: 6px;
    /* rounded corners for background */
    background-color: #d1ddf5;
    /* light subtle background */
    margin-bottom: 4px;
    /* space between links */
}

/* Hover effect */
.mobile-dropdown-pane li .nav-link:hover {
    color: #58a6ff !important;
    background-color: #D1F0E0;
    /* slightly darker on hover */
    padding-left: 14px;
    /* subtle shift on hover */
}

/* Underline animation remains */
.mobile-dropdown-pane li .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #58a6ff;
    transition: width 0.3s ease;
}

.mobile-dropdown-pane li .nav-link:hover::after {
    width: 100%;
}

/* MOBILE SERVICE ROW */
.mobile-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Make toggle icon clickable */
.mobile-dropdown .toggle-icon {
    cursor: pointer;
}


/* OFFCANVAS CONSULT BUTTON */
.offcanvas-consult-btn {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.offcanvas-consult-btn .btn-quote {
    display: inline-block;
    width: 100%;
}



/* DIVIDER */
.offcanvas-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.411);
    margin: auto;
}

/* OFFCANVAS CONTACT */
.offcanvas-contact {
    padding: 15px;
    border-radius: 8px;
    background-color: #4F8C23;
    /* light subtle background */
}

.offcanvas-contact h6 {
    font-size: 15px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.offcanvas-contact p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
    /* space between icon and text */
}

/* Social buttons container */
.offcanvas-socials {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

/* Individual social icons */
.offcanvas-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #58a6ff;
    /* primary accent color */
    transition: 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.offcanvas-socials a:hover {
    background: #176CB1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 108, 177, 0.4);
}

/* Optional: smooth icon scaling on hover */
.offcanvas-socials i {
    transition: transform 0.3s ease;
}

.offcanvas-socials a:hover i {
    transform: scale(1.2);
}

/* SOCIAL BUTTONS */
.offcanvas-socials {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.offcanvas-socials a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgb(38 38 38 / 10%);
    transition: 0.3s ease;
}

.offcanvas-socials a:hover {
    background: #176CB1;
}

.offcanvas-logo-link {
    text-decoration: none;
    display: inline-block;
}

.offcanvas-logo {
    height: 40px;
    width: auto;
}


/* RESPONSIVE */
@media (min-width: 992px) {
    .menu-btn {
        display: none;
    }

    .collapse.navbar-collapse {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .center-nav {
        display: none;
    }

    .btn-quote {
        display: none;
    }
}

@media(max-width: 750px) {
    .navbar-brand img {
        height: 50px;
        border-radius: 5px;
        transition: transform 0.3s ease, filter 0.3s ease;
    }
}

/* Navbar-End */


/* hero-section start */
.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eef7e8, #dff0d0);
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1C5685;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 17px;
    color: #163500;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.primary-btn {
    background: #4f8c23;
    color: #fff;
}

.primary-btn:hover {
    background: #3d6f1b;
    transform: translateY(-3px);
}

.secondary-btn {
    background: #ffffff;
    color: #4f8c23;
    border: 2px solid #4f8c23;
}

.secondary-btn:hover {
    background: #4f8c23;
    color: #fff;
    transform: translateY(-3px);
}

/* RIGHT VIDEO */
.hero-video {
    flex: 1 1 100px;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.hero-video img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

/* Hover Effect */
.hero-video img:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}


@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-video {
        min-width: 100%;
        /* Allow full width */
    }

    .hero-video video {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 18px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    .hero-video {
        min-width: 100%;
    }

    .hero-video video {
        border-radius: 15px;
    }
}

/* hero-section end */

/* breadcrumb-section start */
.breadcrumb-section {
    background: linear-gradient(270deg, #1c63b8, #4f9aff, #1c63b8);
    background-size: 600% 600%;
    padding: 40px 20px;
    text-align: center;
    color: #fff;

    /* Animation */
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Wrapper */
.breadcrumb-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.breadcrumb-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

/* Breadcrumb Container */
.breadcrumb {
    background-color: #ffb347;
    padding: 10px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Button-style links */
.breadcrumb-btn {
    background: #fff;
    color: #1c63b8;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.breadcrumb-btn:hover {
    background: #4F8C23;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Separator */
.breadcrumb .separator::after {
    margin: 0 8px;
    color: #fff;
}

/* Current page */
.breadcrumb .current {
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .breadcrumb-heading {
        font-size: 24px;
    }

    .breadcrumb-btn,
    .breadcrumb .current {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* breadcrumb-section end */


/* custom-about-section start */
.custom-about-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.custom-about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left Image */
.custom-about-image {
    flex: 1 1 100px;
    position: relative;
}

.custom-about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Right Content */
.custom-about-content {
    flex: 1 1 500px;
}

.custom-about-small {
    font-size: 14px;
    background-color: #DF7D20;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-about-title {
    font-size: 30px;
    font-weight: 700;
    margin: 10px 0;
    color: #000000;
}

.custom-about-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 20px;
}

/* Content with vertical line */
.custom-about-text {
    border-left: 4px solid #4F8C23;
    padding-left: 20px;
    margin-bottom: 20px;
}

.custom-about-text p {
    margin: 0;
    color: #114976;
    line-height: 1.7;
}

/* Divider */
.custom-about-divider {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

/* Button */
.custom-about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #114976;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.custom-about-btn:hover {
    background: #0056b3;
}

/*  Feedback Box Style  */
.custom-feedback-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* Circle Images */
.custom-feedback-images {
    display: flex;
}

.custom-feedback-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-feedback-images img:first-child {
    margin-left: 0;
}

/* Text */
.custom-feedback-text h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #114976;
}

.custom-feedback-text p {
    margin: 0;
    font-size: 14px;
    color: #000000;
}

/* Responsive */
/* ===== Responsive ===== */
@media (max-width: 992px) {
    .custom-about-container {
        gap: 40px;
    }


    .custom-about-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .custom-about-container {
        flex-direction: column;
        text-align: center;
    }

    .custom-about-small {
        font-size: 12px;
    }

    .custom-about-text {
        border-left: 4px solid #007bff;
        padding-left: 15px;
    }

    .custom-about-title {
        font-size: 20px;
        padding: 8px 12px;
    }

    .custom-about-subtitle {
        font-size: 16px;
    }

    .custom-about-text p {
        text-align: left;
    }

    .custom-about-btn {
        margin-top: 15px;
    }

    .custom-feedback-box {
        justify-content: center;
        text-align: center;
        flex-direction: row;
    }
}

/* custom-about-section end  */

/* who-we-are-section start */
.who-we-are-section {
    padding: 70px 20px;
    background: #eff6fc;
}

/* Container */
.who-container {
    max-width: 1200px;
    margin: auto;
}

/* Main Layout */
.who-we-are-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.who-left {
    flex: 1;
    min-width: 320px;
}

.small-title {
    display: inline-block;
    background-color: #DF7D20;
    color: #ffffff;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 15px;
}

.who-left h2 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.who-btn {
    display: inline-block;
    background: #1c63b8;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: 0.3s;
}

.who-btn:hover {
    background: #154a8c;
}

/* Content + Benefits Side by Side */
.who-left-content {
    display: flex;
    /* gap: 30px; */
    /* flex-wrap: wrap; */
}

/* Content Box */
.who-content-box {
    flex: 1 1 400px;
    border: 2px solid #1c63b8;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;
    font-size: 14px;
}

.who-box-title {
    font-size: 18px;
    font-weight: 600;
    color: #1c63b8;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-right: 50px;
    /* space for right line */
}

.who-box-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: #1c63b8;
    border-radius: 2px;
}

.who-content-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.who-content-box strong {
    color: #1C5685;
}

/* Benefits */
.who-benefits {
    flex: 1 1 500px;
    padding-left: 20px;
}

.benefits-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.who-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-benefits li {
    border-left: 4px solid #4F8C23;
    position: relative;
    padding-left: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    transition: 0.3s;
}

/* .who-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1c63b8;
    font-size: 14px;
} */

.who-benefits li:hover {
    color: #1c63b8;
    transform: translateX(5px);
}

/* RIGHT SIDE IMAGE */
.who-right {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.who-right img {
    max-width: 100%;
    border-radius: 15px;
    transition: 0.4s;
}

.who-right img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .who-we-are-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .who-left-content {
        flex-direction: column;
    }

    .who-benefits {
        border-left: none;
        border-top: 4px solid #1c63b8;
        padding-left: 0;
        padding-top: 20px;
    }
}

/* who-we-are-section end */


/* mission-section start */
.mission-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4f9ff, #ffffff);
}

/* Container */
.mission-container {
    max-width: 1200px;
    margin: auto;
    background: #fbfff9;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #1C5685;
    transition: 0.3s;
}

.mission-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* Wrapper */
.mission-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.mission-image {
    flex: 1;
    min-width: 320px;
}

.mission-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.mission-image img:hover {
    transform: scale(1.05);
}

/* RIGHT CONTENT BOX */
.mission-box {
    flex: 1;
    min-width: 320px;
}

/* Small Title */
.mission-small-title {
    display: inline-block;
    background: #DF7D20;
    color: #ffffff;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Heading */
.mission-box h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

/* .mission-box h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #1c63b8;
    display: block;
    margin-top: 8px;
    border-radius: 2px;
} */

/* Text */
.mission-text {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.mission-text strong {
    color: #1c63b8;
}

/* List */
.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.mission-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4F8C23;
    font-weight: bold;
}

.mission-list li:hover {
    color: #1c63b8;
    transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .mission-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .mission-box h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .mission-list li {
        padding-left: 0;
    }

    .mission-list li::before {
        position: static;
        margin-right: 8px;
    }
}

/* mission-section end */


/* powered-section */
.powered-section {
    padding: 80px 20px;
    background: #f8faff;
}

/* Container */
.powered-container {
    max-width: 1200px;
    margin: auto;
}

/* Layout */
.powered-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.powered-content {
    flex: 1;
    min-width: 320px;
}

/* Small Title */
.powered-small-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #DF7D20;
    padding: 6px 14px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Heading */
.powered-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

/* Paragraph */
.powered-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.powered-text strong {
    color: #114976;
}

.powered-subtext {
    color: #000;
}

/* Features Grid (2 per row) */
.powered-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Feature Item */
.feature-item {
    background: #e8f1ff;
    padding: 18px 20px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

/* Hover Effect */
.feature-item:hover {
    background: #4F8C23;
    color: #fff;
    transform: translateY(-5px);
    border: 1px solid #4F8C23;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* RIGHT IMAGE */
.powered-image {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.powered-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.powered-image img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .powered-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .powered-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        justify-content: center;
    }

    .powered-content h2::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* powered-section end */

/* crm-services-industries-section start */
.crm-services-industries-section {
    padding: 80px 20px;
    background: #f4f8ff;
}

.crm-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.crm-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.crm-column {
    flex: 1 1 48%;
}

.crm-info-card {
    background: #ffffff;
    padding: 40px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    height: 100%;
}

.crm-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.crm-section-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.crm-section-description {
    margin-bottom: 20px;
    color: #111;
    line-height: 1.6;
}

.crm-list {
    list-style: none;
    padding: 0;
}

.crm-list li strong {
    font-size: 12px;
}

.crm-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #114976;
}

.crm-list-icon {
    color: #4F8C23;
    font-size: 14px;
    margin-top: 4px;
}


@media (max-width: 768px) {
    .crm-row {
        flex-direction: column;
    }

    .crm-column {
        flex: 1 1 100%;
    }
}

/* crm-services-industries-section end */


/* crmservice-highlight-section start */
.crmservice-highlight-section {
    padding: 80px 20px;
    background: #ffffff;
}

.crmservice-highlight-container {
    max-width: 1200px;
    margin: auto;
}

.crmservice-highlight-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.crmservice-highlight-image {
    flex: 1;
}

.crmservice-highlight-image img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.crmservice-highlight-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RIGHT CONTENT */
.crmservice-highlight-content {
    flex: 1;
}

/* SMALL TITLE */
.crmservice-small-title {
    display: inline-block;
    padding: 6px 16px;
    background: #DF7D20;
    color: #fff;
    font-size: 14px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* MAIN TITLE */
.crmservice-main-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

/* DESCRIPTION WITH VERTICAL LINE */
.crmservice-description-box {
    border-left: 4px solid #E07F22;
    padding-left: 20px;
    margin-bottom: 25px;
}

.crmservice-description-box p {
    color: #114976;
    font-size: 14px;
    line-height: 1.6;
}

/* HORIZONTAL LINE */
.crmservice-divider {
    width: 100%;
    height: 2px;
    background: #e5e5e5;
    margin-bottom: 25px;
}

/* FEATURES */
.crmservice-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.crmservice-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 15px;
    background: #f4f8fc;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.crmservice-feature-item i {
    font-size: 20px;
    color: #4F8C23;
    transition: 0.4s ease;
}


/* HOVER EFFECT */
.crmservice-feature-item:hover {
    background: #1C5685;
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.crmservice-feature-item:hover i {
    color: #ffffff;
}


/* RESPONSIVE */
@media (max-width: 992px) {

    .crmservice-highlight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .crmservice-main-title {
        font-size: 24px;
    }

}

@media (max-width: 768px) {

    .crmservice-features {
        grid-template-columns: 1fr;
    }

}

/* crmservice-highlight-section end */

/* crm-benefits-choose-section start */
.crm-benefits-choose-section {
    padding: 80px 20px;
    background: #f9fbff;
}

.crm-benefits-choose-container {
    max-width: 1200px;
    margin: auto;
}

.crm-benefits-choose-wrapper {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

/* COLUMNS */
.crm-benefits-column,
.crm-choose-column {
    flex: 1;
    background: #f4f8fc;
    padding: 40px;
    border-radius: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}


/* HOVER EFFECT */
.crm-benefits-column:hover,
.crm-choose-column:hover {
    background: #eaf3fb;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/* TITLES */
.crm-benefits-title,
.crm-choose-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

/* GRID LAYOUT 2 PER ROW */
.crm-benefits-grid,
.crm-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ITEM STYLE */
.crm-benefit-item,
.crm-choose-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 12px;
    transition: 0.4s ease;
    border: 1px solid #e5e5e5;
    font-weight: 500;
    cursor: pointer;
}

/* ICON STYLE */
.crm-benefit-item i,
.crm-choose-item i {
    font-size: 20px;
    color: #4F8C23;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.crm-benefit-item:hover,
.crm-choose-item:hover {
    background: #1C5685;
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.crm-benefit-item:hover i,
.crm-choose-item:hover i {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .crm-benefits-choose-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .crm-benefits-grid,
    .crm-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* crm-benefits-choose-section end */


.section-text {
    max-width: 850px;
    margin: 20px auto 20px;
    font-size: 17px;
    line-height: 1.8;
    color: #000000;
    text-align: center;

    padding: 20px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Left Accent Border */
.section-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #1C5685;
    border-radius: 12px 0 0 12px;
}

/* Hover Effect */
.section-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    color: #000000;
}

/* Tablet */
@media (max-width: 992px) {
    .section-text {
        font-size: 16px;
        padding: 18px 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-text {
        font-size: 15px;
        padding: 16px 20px;
        text-align: left;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-text {
        font-size: 14px;
        padding: 14px 16px;
    }
}





/* crmdev-highlight-section start */
.crmdev-highlight-section {
    padding: 80px 20px;
    background: #ffffff;
}

.crmdev-highlight-container {
    max-width: 1200px;
    margin: auto;
}

.crmdev-highlight-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.crmdev-highlight-content {
    flex: 1;
}

/* SMALL TITLE */
.crmdev-small-title {
    display: inline-block;
    padding: 6px 16px;
    background: #4F8C23;
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    margin-bottom: 15px;
}

/* MAIN TITLE */
.crmdev-main-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

/* DESCRIPTION BOX */
.crmdev-description-box {
    border-left: 4px solid #E07F22;
    padding-left: 20px;
    margin-bottom: 25px;
}

.crmdev-description-box p {
    color: #1C5685;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* DIVIDER */
.crmdev-divider {
    width: 100%;
    height: 2px;
    background: #e5e5e5;
    margin-bottom: 25px;
}

/* FEATURES GRID */
.crmdev-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* FEATURE ITEM */
.crmdev-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #f4f8fc;
    border-radius: 12px;
    transition: 0.4s ease;
    cursor: pointer;
}

.crmdev-feature-item i {
    font-size: 20px;
    color: #4F8C23;
    transition: 0.4s ease;
}

/* HOVER */
.crmdev-feature-item:hover {
    background: #eaf3fb;
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.crmdev-feature-item:hover i {
    color: #E07F22;
}

/* CLOSING TEXT */
.crmdev-closing-text {
    margin-top: 25px;
    font-weight: 500;
    color: #333;
}

/* RIGHT IMAGE */
.crmdev-highlight-image {
    flex: 1;
}

.crmdev-highlight-image img {
    width: 100%;
    border-radius: 16px;
    transition: 0.5s ease;
}

.crmdev-highlight-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .crmdev-highlight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .crmdev-features {
        grid-template-columns: 1fr;
    }

    .crmdev-main-title {
        font-size: 24px;
    }
}

/* crmdev-highlight-section end */


/* crm-dual-section start  */
.crm-dual-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fbf7, #eef7e8);
}

.crm-dual-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

/* LEFT + RIGHT BOX */
.crm-dual-left,
.crm-dual-right {
    flex: 1 1 48%;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

/* Hover Effect */
.crm-dual-left:hover,
.crm-dual-right:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Title */
.crm-dual-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

/* Paragraph */
.crm-dual-text {
    font-size: 14px;
    line-height: 1.8;
    color: #111;
    margin-bottom: 15px;
}

/* Highlight Text */
.crm-dual-highlight {
    font-size: 14px;
    font-weight: 600;
    color: #1C5685;
    margin-top: 10px;
}

/* Process Steps */
.crm-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Step Box */
.crm-step-box {
    background: #f9fbf7;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #FFB347;
    transition: all 0.3s ease;
}

.crm-step-box:hover {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.crm-step-box h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1C5685;
}

.crm-step-box p {
    font-size: 14px;
    color: #111;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .crm-process-steps {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .crm-dual-container {
        flex-direction: column;
    }

    .crm-dual-left,
    .crm-dual-right {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .crm-dual-title {
        font-size: 22px;
    }

    .crm-dual-text {
        font-size: 15px;
    }

    .crm-dual-left,
    .crm-dual-right {
        padding: 25px;
    }
}
/* crm-dual-section end */


/* Container */
.industry-inner-page {
    padding: 60px 20px;
    background: #f9fafb;
}

/* Service Container */
.industry-service-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Introduction: Left Image / Right Content */
.industry-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.industry-intro:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.industry-intro-image {
    flex: 1 1 45%;
}

.industry-intro-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.industry-intro-image img:hover {
    transform: scale(1.05);
}

.industry-intro-content {
    flex: 1 1 50%;
}

.industry-intro-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.industry-intro-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #215986;
}

/* Step Boxes */
.industry-step-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.industry-step-box:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.industry-step-box h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.industry-step-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #111;
    margin-bottom: 15px;
}

/* List with icons */
.industry-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.industry-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    transition: all 0.3s ease;
}

.industry-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #4F8C23; /* Green color */
    font-size: 18px;
}

/* Optional: Hover effect */
.industry-list li:hover {
    color: #2a5d12;
}



/* Responsive */
@media (max-width: 991px) {
    .industry-intro {
        flex-direction: column;
    }

    .industry-intro-image,
    .industry-intro-content {
        flex: 1 1 100%;
    }
}


/* industry-faq-section start */
.industry-faq-section {
    padding: 60px 20px;
    background: #f7fafb;
}

.industry-faq-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000;
}

/* FAQ List */
.industry-faq-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr; /* 1 per row always */
    gap: 16px;
}

/* FAQ Item */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left; /* text stays left-aligned */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    position: relative; /* needed for absolute icon */
    transition: all 0.3s ease;
}

/* Toggle icon positioned on the right */
.faq-toggle {
    position: absolute;
    right: 24px; /* same as padding for alignment */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* Optional: rotate icon when active */
.faq.active .faq-toggle {
    transform: translateY(-50%) rotate(45deg); /* + becomes x */
    color: #4F8C23;
}

.faq-question i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #4F8C23;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    transition: all 0.3s ease;
}

/* Active FAQ */
.faq-item.active .faq-answer {
    max-height: 500px; /* enough for content */
    padding: 15px 24px 24px 24px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg); /* + becomes x */
}
/* industry-faq-section end */


/* crm-section start */
.crm-section {
    padding: 50px 20px;
    background: #eaf6ff;
    color: #1C5685;
    font-family: Arial, sans-serif;
}

.crm-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.crm-tabs {
    display: flex;
    align-items: center;
    /* center vertically */
    justify-content: center;
    gap: 0;
    /* no extra gap, lines handle spacing */
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.crm-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    /* space around icon/text */
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1C5685;
}


.crm-tab i {
    font-size: 2em;
    color: #FFB347;
    transition: color 0.3s ease, transform 0.3s ease;
    margin-bottom: 5px;
}

.crm-tab.active i,
.crm-tab:hover i {
    color: #4F8C23;
    transform: scale(1.2);
}


/* Divider Line */
.tab-divider {
    display: inline-block;
    width: 100px;
    /* length of the line */
    height: 3px;
    background-color: #1C5685;
    margin: 0 0;
    /* adjust spacing */
    border-radius: 2px;
    align-self: center;
    /* vertically align with icons */
    transition: background-color 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
    .crm-tab i {
        font-size: 1.8em;
    }

    .tab-divider {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .crm-tab span {
        font-size: 0.9em;
    }

    .tab-divider {
        width: 30px;
    }
}

.crm-tab span {
    font-weight: bold;
}

.crm-content {
    max-width: 1100px;
    margin: auto;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    list-style: disc inside;
    padding-left: 0;
}

.crm-list {
    background-color: #ffffffcc;
    /* soft white with slight transparency */
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    list-style: disc inside;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crm-list li {
    margin-bottom: 12px;
    color: #1C5685;
    line-height: 1.6;
}

/* Hover effect */
.crm-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .crm-list {
        padding: 20px 15px;
    }

    .crm-list li {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .crm-list li {
        font-size: 0.9em;
    }
}

.crm-paragraph {
    background-color: #ffffffcc;
    /* soft white with slight transparency */
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: #1C5685;
    line-height: 1.7;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.crm-paragraph:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .crm-paragraph {
        padding: 15px 20px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .crm-paragraph {
        font-size: 0.9em;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .crm-tabs {
        gap: 20px;
    }

    .crm-tab i {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .crm-tab span {
        font-size: 0.9em;
    }
}

/* crm-section end */


/* crmdev-services-section start */
.crmdev-services-section {
    padding: 80px 20px;
    background: #f9fbf8;
}

.crmdev-services-container {
    max-width: 1200px;
    margin: auto;
}

.crmdev-services-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
}

/* Grid Layout */
.crmdev-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.crmdev-service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.crmdev-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Image */
.crmdev-service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content */
.crmdev-service-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center all items horizontally */
    text-align: center;
    /* optional: center text */
}

.crmdev-service-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1C5685;
    margin-bottom: 12px;
}

.crmdev-service-content p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Button */
.crmdev-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #E07F22;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    text-align: center;
}

.crmdev-btn:hover {
    background: #1C5685;
}

/* Responsive */
@media (max-width: 992px) {
    .crmdev-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .crmdev-services-grid {
        grid-template-columns: 1fr;
    }

    .crmdev-services-title {
        font-size: 24px;
    }
}

/* crmdev-services-section end */


/* whycrm-section start */
.choosecrm-section {
    padding: 80px 20px;
    background: #f8fbff;
}

.choosecrm-container {
    max-width: 1200px;
    margin: auto;
}

.choosecrm-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE */
.choosecrm-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    padding: 12px;
    /* Space for shadow box look */
    background: #ffffff;
    /* White background box */
    box-shadow: 0 20px 50px rgba(28, 99, 184, 0.15);
    transition: 0.4s ease;
}

.choosecrm-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    transition: transform 0.5s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.choosecrm-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(28, 99, 184, 0.25);
}

.choosecrm-image:hover img {
    transform: scale(1.03);
}

/* CONTENT */
.choosecrm-content {
    flex: 1;
}

/* Small Title Button Style */
.choosecrm-small-title {
    display: inline-block;
    background: #DF7D20;
    color: #ffffff;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.choosecrm-main-title {
    font-size: 30px;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px;
}

.choosecrm-description {
    margin-bottom: 30px;
    color: #555;
}

/* FEATURES GRID */
.choosecrm-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* FEATURE ITEM */
.choosecrm-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    position: relative;
    transition: 0.3s ease;
    overflow: hidden;
}

/* Background Accent Effect */
.choosecrm-item::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 80px;
    height: 80px;
    background: #e8f1ff;
    border-radius: 50%;
    z-index: 0;
}

/* ICON */
.choosecrm-icon {
    background: #4F8C23;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.choosecrm-icon:hover {
    background: #e7f4ff;
    color: #4F8C23;
}

.choosecrm-item h4 {
    font-size: 16px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Hover */
.choosecrm-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .choosecrm-wrapper {
        flex-direction: column;
    }

    .choosecrm-features {
        grid-template-columns: 1fr;
    }

    .choosecrm-content {
        text-align: center;
    }

    .choosecrm-item {
        justify-content: center;
    }
}

/* whycrm-section end */


/* custom-services-section start */
.custom-services-section {
    background: #f4f4f4;
    padding: 120px 20px 80px;
}

.custom-services-container {
    max-width: 1200px;
    margin: auto;
}

.custom-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.custom-services-small {
    font-size: 14px;
    background-color: #DF7D20;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-services-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #000000;
}

.custom-services-description {
    max-width: 650px;
    margin: auto;
    font-size: 14px;
    color: #111;
    line-height: 1.7;
}


.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 40px;
}

/* Card */
.custom-service-card {
    position: relative;
    background: linear-gradient(180deg, #528C1E, #336607);
    border-radius: 25px;
    padding: 60px 20px 20px;
    text-align: center;
    color: #fff;
    transition: 0.4s ease;
}

.custom-service-card:hover {
    transform: translateY(-10px);
}

/* Image */
.custom-service-img {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fffefe;
    padding: 0px 5px 5px 5px;
    /* border: 6px solid #fff; */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.custom-service-img img {
    width: 100%;
    height: 130px;
    display: block;
    border-radius: 20px;

}

/* Content */
.custom-service-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
}

.custom-service-content p {
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Button */
.custom-service-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    background-color: #1C5685;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: 0.3s ease;
}

.custom-service-btn:hover {
    background: transparent;
    color: #fff;
}

/* ===== Bottom Button ===== */

.custom-services-bottom {
    text-align: center;
    margin-top: 70px;
}

.custom-view-more-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #528C1E;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.custom-view-more-btn:hover {
    background: #1C5685;
    transform: translateY(-3px);
}


/* RESPONSIVE IMPROVEMENTS */

/* Large Tablets */
@media (max-width: 1200px) {
    .custom-services-container {
        max-width: 1100px;
    }

    .custom-services-title {
        font-size: 32px;
    }
}


/* Medium Devices (Tablets) */
@media (max-width: 992px) {

    .custom-services-section {
        padding: 100px 20px 70px;
    }

    .custom-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 100px 30px;
    }

    .custom-service-img {
        width: 350px;
        top: -65px;
    }

    .custom-services-title {
        font-size: 28px;
    }

    .custom-service-content h3 {
        font-size: 24px;
        margin-top: 30px;
    }

    .custom-service-content p {
        font-size: 18px;
    }
}


/* Small Tablets & Large Mobiles */
@media (max-width: 768px) {

    .custom-services-section {
        padding: 80px 15px 60px;
    }

    .custom-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 70px;
    }

    .custom-service-card {
        padding: 80px 20px 40px;
    }

    .custom-service-img {
        width: 250px;
        top: -60px;
    }

    .custom-services-title {
        font-size: 24px;
    }

    .custom-services-description {
        font-size: 15px;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .custom-services-section {
        padding: 70px 15px 50px;
    }

    .custom-service-img {
        width: 300px;
        top: -55px;
    }

    .custom-service-card {
        padding: 75px 15px 35px;
        border-radius: 20px;
    }

    .custom-service-content h3 {
        font-size: 22px;
        margin-top: 30px;
    }

    .custom-service-content p {
        font-size: 16px;
    }

    .custom-view-more-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .custom-services-title {
        font-size: 20px;
    }

    .custom-services-small {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* custom-services-section End */


/* custom-why-section start  */
.custom-why-section {
    padding: 120px 20px;
    background: #ffffff;
}

.custom-why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left Content */
.custom-why-content {
    flex: 1 1 100px;
}

.custom-why-small {
    font-size: 14px;
    background-color: #DF7D20;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-why-title {
    font-size: 30px;
    font-weight: 700;
    margin: 15px 0 20px;
    color: #000;
}

/* Vertical line content */
.custom-why-text {
    border-left: 4px solid #528C1E;
    padding-left: 20px;
    margin-bottom: 40px;
}

.custom-why-text p {
    font-size: 14px;
    margin: 0;
    color: #1C5685;
    line-height: 1.7;
}

/* Feature Grid */
.custom-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Feature Box */
.custom-why-box {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.custom-why-box:hover {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}


.custom-why-number {
    font-size: 40px;
    font-weight: 700;
    color: #528C1E;
    display: block;
    /* margin-bottom: 8px; */
}

.custom-why-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.custom-why-box p {
    font-size: 14px;
    color: #000000;
}

/* Right Image */
.custom-why-image {
    flex: 1 1 100px;
}

.custom-why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.custom-why-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .custom-why-container {
        flex-direction: column;
        gap: 50px;
    }

    .custom-why-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {


    .custom-why-section {
        padding: 80px 15px;
    }

    .custom-why-grid {
        grid-template-columns: 1fr;
    }

    .custom-why-title {
        font-size: 20px;
        text-align: center;
    }

    .custom-why-text {
        border-left: 4px solid #528C1E;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {

    .custom-why-title {
        font-size: 20px;
    }

    .custom-why-box {
        padding: 20px;
    }

}

/* custom-why-section End */


/* cta-section start  */
.cta-section {
    background: #F4F4F4;
    padding: 80px 20px;
    margin-bottom: 10px;
    transition: background 0.4s ease;
}

.cta-wrapper {
    background: #DF791F;
    border-radius: 20px;
    padding: 50px 20px;
    color: #fff;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    transition: all 0.4s ease;
    /* smooth transition */
}

/* Hover: lift up */
.cta-wrapper:hover {
    transform: translateY(-10px);
    /* lifts the container */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    /* deeper shadow for “floating” effect */
}




/* Headings */
.cta-left h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    opacity: 0.9;
}

.cta-left h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* Paragraph */
.cta-left p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: auto;
    text-align: center;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-left h2 {
        font-size: 24px;
    }

    .cta-left p {
        font-size: 15px;
    }
}

/* cta-section end */



/* custom-pricing-section start */
.custom-pricing-section {
    position: relative;
    padding: 100px 20px;
    background: url('./image/price.jpg') center center / cover no-repeat fixed;
    overflow: hidden;
}

/* Overlay */
.custom-pricing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 25, 65, 0.719), rgba(10, 45, 110, 0.699));
    z-index: 1;
}

.custom-pricing-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.custom-pricing-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.pricing-small {
    font-size: 14px;
    background-color: #DF7D20;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-pricing-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
}

/* Cards Wrapper */
.custom-pricing-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card */
.custom-price-card {
    background: #fff;
    width: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    padding-bottom: 30px;
}

.custom-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Highlight Card */
.active-card {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.active-card:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Top Area */
.price-top {
    padding: 30px 20px;
}

.price-top.light {
    background: #f1f1f1;
    color: #003366;
}

.price-top.dark {
    background: #528C1E;
    color: #fff;
}

.price-top h3 {
    margin-bottom: 5px;
}

/* Price */
.price-amount {
    padding: 25px 0;
    background: #528C1E;
    color: #fff;
}

.active-card .price-amount {
    background: #0e6306;
}

.price {
    font-size: 40px;
    font-weight: 700;
}

.hours {
    font-size: 14px;
}

/* Features */
.price-features {
    list-style: none;
    padding: 25px 30px;
    text-align: left;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 14px;
}

/* Button */
.price-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #528C1E;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: 0.3s ease;
}

.price-btn:hover {
    background: #003366;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 992px) {
    .custom-pricing-wrapper {
        gap: 20px;
    }

    .custom-price-card {
        width: 280px;
    }
}

@media (max-width: 768px) {

    .custom-pricing-section {
        background-attachment: scroll;
        /* better performance mobile */
    }

    .custom-pricing-heading h2 {
        font-size: 24px;
    }

    .custom-pricing-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .custom-price-card {
        width: 100%;
        max-width: 350px;
    }

    .active-card {
        transform: scale(1);
    }
}

/* custom-pricing-section end */

/* price-intro-section */
#price-intro-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.price-intro-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  background: #f9f9f9;   
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);      
  border-radius: 15px;          
  padding: 30px;                
  transition: background 0.5s, transform 0.3s; 
}

/* Hover effect */
.price-intro-container:hover {
  background: #f9fcff;           
  transform: translateY(-5px);  
  box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
}
/* Image Styles */
.price-intro-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  transition: transform 0.5s, box-shadow 0.5s;
}
.price-intro-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Content Styles */
.price-intro-content {
  flex: 1;
  min-width: 300px;
}
.price-intro-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}
.price-intro-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #1C5685;
  margin-bottom: 10px;
}


/* Responsive */
@media (max-width: 992px) {
  .price-intro-container {
    flex-direction: column;
    gap: 25px;
    padding: 25px;
  }
  .price-intro-image img {
    max-width: 100%;
  }
  .price-intro-content h2 {
    font-size: 24px;
  }
  .price-intro-content p {
    font-size: 15px;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  #price-intro-section {
    padding: 40px 15px;
  }
  .price-intro-content h2 {
    font-size: 20px;
  }
  .price-intro-content p {
    font-size: 14px;
  }
  .price-intro-container {
    padding: 20px;
  }
}
/* price-intro-section end */

/* peice-inner-content-section start  */
#peice-inner-content-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.peice-inner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* better spacing for alignment */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.custom-peice-card {
  background: #fff;
  flex: 1 1 calc(33.333% - 20px); /* responsive width using flex */
  min-width: 280px; /* prevent cards from getting too small */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* Hover effect */
.custom-peice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Top Section */
.price-top {
  padding: 25px 15px;
}
.price-top h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a3b5d;
}
.price-top p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/* Price Bar */
.price-amount {
  background: #4caf4f;
  color: #fff;
  padding: 25px 15px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
}
.price-amount .price {
  font-size: 36px;
}
.price-amount .hours {
  font-size: 14px;
  font-weight: 400;
}

/* Features */
.price-features {
  list-style: none;
  padding: 20px 25px;
  margin: 0;
  text-align: left;
  flex-grow: 1; /* ensures all cards have same height for features */
}
.price-features li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

/* Button */
.price-btn {
  display: inline-block;
  margin: 20px 25px;
  padding: 10px 25px;
  background: #4caf4f;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s ease;
}
.price-btn:hover {
  background: #388e3c;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-peice-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .custom-peice-card {
    flex: 1 1 100%;
  }
}
/* peice-inner-content-section end  */


/* blog-section start */
.custom-blog-section {
    padding: 100px 20px;
    background: #f4f4f4;
}

.custom-blog-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.custom-blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.custom-blog-small {
    font-size: 14px;
    background-color: #DF7D20;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-blog-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
}

/* Container */
.custom-blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Card */
.custom-blog-card {
    background: #1C5685;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s ease;
}

.custom-blog-card:hover {
    transform: translateY(-8px);
}

/* Image */
.custom-blog-img {
    position: relative;
    overflow: hidden;
}

.custom-blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.custom-blog-card:hover .custom-blog-img img {
    transform: scale(1.05);
}

/* Category */
.custom-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #6c757d;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    font-weight: 600;
}

/* Date */
.custom-date-box {
    position: absolute;
    bottom: -25px;
    left: 15px;
    background: #1c63b8;
    color: #fff;
    text-align: center;
    padding: 10px 12px;
}

.custom-date-box h3 {
    margin: 0;
    font-size: 20px;
}

.custom-date-box span {
    font-size: 12px;
}

/* Content */
.custom-blog-content {
    padding: 40px 25px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.custom-blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    min-height: 60px;
}

.custom-blog-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ffffff;
    flex-grow: 1;
}

/* Button */
.custom-blog-btn {
    display: block;
    width: 40%;
    background: #fff;
    color: #1C5685;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: left;
    transition: 0.3s ease;
}

.custom-blog-btn:hover {
    background: transparent;
    color: #fff;
}

/* View More */
.custom-blog-viewmore {
    text-align: center;
    margin-top: 50px;
}

.custom-view-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #1C5685;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.custom-view-btn:hover {
    background: #4F8921;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .custom-blog-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-blog-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .custom-blog-container {
        grid-template-columns: 1fr;
    }

    .custom-blog-img img {
        height: 220px;
    }

    .custom-blog-content {
        padding: 35px 20px 25px;
    }

    .custom-blog-title {
        font-size: 24px;
    }
}

/* blog-section end */


/* blog-intro-section start */
.blog-intro-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.blog-intro-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;

    /* New Design */
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

/* Hover Effect */
.blog-intro-container:hover {
    background: linear-gradient(135deg, #f9fbf7, #eef7e8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.blog-intro-image {
    flex: 1 1 45%;
    overflow: hidden; /* prevents overflow when zooming */
    border-radius: 16px;
}

.blog-intro-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.blog-intro-image:hover img {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-intro-content {
    flex: 1 1 50%;
    color: #1C5685;
}

.blog-intro-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-intro-small-title {
    background-color: #DF7D20;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
}

.blog-intro-btn {
    background-color: #DF7D20;
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.blog-intro-btn:hover {
    background-color: #bf6700;
}

.blog-intro-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.blog-intro-content p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-list-with-icons {
    list-style: none;
    padding-left: 0;
    color: #1C5685;
}

.blog-list-with-icons li {
    position: relative;
    padding-left: 30px;
    color: #000;
    /* space for the icon */
    margin-bottom: 12px;
    line-height: 1.6;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Icon Style - always visible */
.blog-list-with-icons li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    color: #1C5685;
    /* default icon color */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect - scale icon & change text color */
.blog-list-with-icons li:hover i {
    transform: scale(1.3);
    color: #4F8C23;
}

.blog-list-with-icons li:hover {
    color: #4F8C23;
    /* optional: change text color on hover */
}



/* Responsive */
@media (max-width: 992px) {
    .blog-intro-container {
        flex-direction: column;
        gap: 30px;
    }

    .blog-intro-image,
    .blog-intro-content {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .blog-intro-content h2 {
        font-size: 24px;
    }

    .blog-intro-small-title,
    .blog-intro-btn {
        font-size: 0.8em;
        padding: 4px 10px;
    }
}

/* blog-intro-section end */

/* inner-blog-content start */
.inner-blog-content {
    padding: 80px 20px;
    background: #f9fbf7;
}

.inner-blog-container {
    max-width: 1100px;
    margin: auto;
}

.inner-blog-main-title {
    font-size: 34px;
    font-weight: 800;
    color: #1f2d3d;
    margin-bottom: 15px;
    line-height: 1.3;
}


/* Titles */
.inner-blog-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    margin-top: 40px;
    position: relative;
    transition: all 0.3s ease;
}



.inner-blog-highlight {
    background: linear-gradient(135deg, #f0f7ea, #ffffff);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative Accent */
.inner-blog-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #4F8C23;
    border-radius: 15px 0 0 15px;
}

/* Hover effect on whole box */
.inner-blog-highlight:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(79, 140, 35, 0.15);
}

/* Paragraph Styling */
.inner-blog-highlight-text {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    transition: all 0.3s ease;
}

/* Hover effect on paragraph text */
.inner-blog-highlight-text:hover {
    color: #2d3a2e;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .inner-blog-highlight {
        padding: 25px;
    }

    .inner-blog-highlight-text {
        font-size: 14px;
    }
}

/* Paragraph */
.inner-blog-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.inner-blog-text:hover {
    color: #333;
}

/* List */
.inner-blog-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row */
    gap: 20px;
}

.inner-blog-list li {
    background: #ffffff;
    padding: 12px 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Left Accent Line */
.inner-blog-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #DF7D20;
    border-radius: 8px 0 0 8px;
    transition: background 0.3s ease;
}

.inner-blog-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.inner-blog-list li:hover::before {
    background: #4F8C23;
}

/* Button */
.inner-blog-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4F8C23;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inner-blog-btn:hover {
    background: #DF7D20;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Tablet Devices */
@media (max-width: 992px) {

    .inner-blog-content {
        padding: 60px 20px;
    }

    .inner-blog-title {
        font-size: 24px;
        margin-top: 30px;
    }

    .inner-blog-text {
        font-size: 15px;
    }

    .inner-blog-list li {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px 16px;
    }

    .inner-blog-btn {
        padding: 10px 24px;
        font-size: 15px;
    }
}


/* Mobile Devices */
@media (max-width: 768px) {

    .inner-blog-content {
        padding: 50px 15px;
    }

    .inner-blog-container {
        width: 100%;
    }

    .inner-blog-main-title {
        font-size: 24px;
    }

    .inner-blog-title {
        font-size: 20px;
        line-height: 1.4;
        margin-top: 25px;
    }

    .inner-blog-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .inner-blog-list li {
        grid-template-columns: 1fr;
        font-size: 14px;
        padding: 10px 14px;
    }

    .inner-blog-list li::before {
        width: 3px;
    }

    .inner-blog-btn {
        display: block;
        text-align: center;
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}


/* Small Mobile Devices */
@media (max-width: 480px) {

    .inner-blog-title {
        font-size: 18px;
    }

    .inner-blog-text {
        font-size: 13.5px;
    }

    .inner-blog-list li {
        font-size: 13.5px;
    }

}

/* inner-blog-content end */



/* demo-intro-section start */
.demo-intro-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.demo-intro-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

/* Hover Effect */
.demo-intro-container:hover {
    background: linear-gradient(135deg, #f9fbf7, #eef7e8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.demo-intro-image {
    flex: 1 1 45%;
    overflow: hidden;
    /* important for zoom effect */
    border-radius: 12px;
}

.demo-intro-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover Effect */
.demo-intro-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.demo-intro-content {
    flex: 1 1 50%;
    color: #1C5685;
}

.demo-intro-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.demo-intro-small-title {
    background-color: #DF7D20;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
}

.demo-intro-btn {
    background-color: #DF7D20;
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.demo-intro-btn:hover {
    background-color: #bf6700;
}

.demo-intro-content h2 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.demo-intro-content p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.demo-list-with-icons {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.demo-list-with-icons li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #000000;
}

.demo-list-with-icons li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    color: #1C5685;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.demo-list-with-icons li:hover i {
    transform: scale(1.3);
    color: #4F8C23;
}

.demo-list-with-icons li:hover {
    color: #4F8C23;
}

/* Responsive */
@media (max-width: 992px) {
    .demo-intro-container {
        flex-direction: column;
        gap: 30px;
    }

    .demo-intro-image,
    .demo-intro-content {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .demo-intro-content h2 {
        font-size: 24px;
    }

    .demo-intro-small-title,
    .demo-intro-btn {
        font-size: 0.8em;
        padding: 4px 10px;
    }
}

/* demo-intro-section end */


/* demo-form-section start */
.demo-form-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.demo-form-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;

    /* New Design */
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    /* Required for divider */
}

/* Hover Effect */
.demo-form-container:hover {
    background: linear-gradient(135deg, #f7fafb, #e8eff7);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

/* Vertical Divider */
.demo-form-container::after {
    content: "";
    position: absolute;
    top: 12%;
    bottom: 12%;
    left: 50%;
    width: 1px;
    background: #000000;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

/* Optional Glow on Hover */
.demo-form-container:hover::after {
    box-shadow: 0 0 12px rgba(79, 140, 35, 0.4);
}

/* Hide Divider on Tablet & Mobile */
@media (max-width: 991px) {
    .demo-form-container::after {
        display: none;
    }
}

.demo-form-left,
.demo-form-right {
    flex: 1 1 45%;
}

/* Form Styles */
.demo-form-left h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.demo-form {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    /* Allow two per row */
    gap: 20px;
    /* Space between fields */
    background-color: #ffffffcc;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.demo-form .form-group {
    flex: 1 1 calc(50% - 10px);
    /* Two per row with gap adjustment */
    display: flex;
    flex-direction: column;
}

.demo-form .form-group textarea {
    flex: 1 1 100%;
    /* Keep textarea full width */
}

@media (max-width: 768px) {
    .demo-form .form-group {
        flex: 1 1 100%;
        /* Stack fields on smaller screens */
    }
}

.demo-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #1C5685;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95em;
    transition: border-color 0.3s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    border-color: #DF7D20;
    outline: none;
}

.demo-form-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #DF7D20;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.demo-form-btn:hover {
    background-color: #bf6700;
}

/* Benefits Styles */
.demo-form-right h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.demo-benefits-list {
    list-style: none;
    padding-left: 0;
}

.demo-benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #000000;
}

.demo-benefits-list li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    color: #1C5685;
    transition: transform 0.3s ease, color 0.3s ease;
}

.demo-benefits-list li:hover i {
    transform: scale(1.3);
    color: #4F8C23;
}

.demo-benefits-list li:hover {
    color: #4F8C23;
}

/* Responsive */
@media (max-width: 992px) {

    .demo-form-left,
    .demo-form-right {
        flex: 1 1 100%;
    }
}

/* demo-form-section end */



/* custom-testimonial-section start */
.custom-testimonial-section {
    padding: 100px 20px;
    background: #ffffff;
}

.custom-testimonial-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.custom-testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.custom-testimonial-small {
    font-size: 14px;
    background-color: #DF7D20;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-testimonial-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
}

/* Grid for sliding */
.custom-testimonial-grid {
    display: flex;
    /* flex for horizontal sliding */
    overflow: hidden;
    /* hide overflow */
    gap: 30px;

}

.custom-testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}


/* Card */
.custom-testimonial-card {
    flex: 0 0 calc((100% - 60px)/3);
    /* 3 per view, gap=30px*2 */
    background: #f4f4f4;
    padding: 35px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
    box-sizing: border-box;
}

.custom-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Text */
.custom-testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

/* User */
.custom-testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.custom-testimonial-user h4 {
    color: #1C5685;
    margin: 0;
    font-size: 20px;
}

.custom-testimonial-user span {
    font-size: 13px;
    color: #111;
}

/* Responsive */
@media (max-width: 992px) {
    .custom-testimonial-card {
        flex: 0 0 calc(50% - 15px);
        /* 2 per view */
    }

    .custom-testimonial-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .custom-testimonial-card {
        flex: 0 0 100%;
        padding: 30px 20px;
    }

    .custom-testimonial-title {
        font-size: 24px;
    }

}

/* custom-testimonial-section end */


/* clients-section start */
.clients-section {
    padding: 80px 5%;
    background-color: #f0f4f8;
    text-align: center;
}

.clients-container {
    background-color: #EFF9F2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 18px;
}

/* Titles */
.clients-section .section-small-title {
    font-size: 14px;
    background-color: #DF7D20;
    padding: 10px;
    width: 100px;
    margin: auto;
    border-radius: 10px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-section .section-title {
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000000;
}

.clients-section .section-desc {
    font-size: 14px;
    color: #111;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel */
.clients-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-track {
    display: flex;
    gap: 30px;
    animation: slide 20s linear infinite;
}

/* Auto-slide animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Client Card – Uniform size */
.client-card {
    /* background: #fff; */
    border-radius: 12px;
    padding: 20px;
    min-width: 200px;
    flex-shrink: 0;
    height: 220px;
    /* uniform height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.client-card img {
    max-width: 150px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;

    /* Add shadow */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #00000056;
    /* optional rounded edges */
}

/* Hover Effect */
.client-card img:hover {
    transform: scale(1.1) translateY(-5px);
    filter: brightness(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.client-card p {
    font-size: 14px;
    color: #29355B;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

/* Hover Effects */
.client-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); */
}

.client-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Alternate carousel */
.clients-carousel-alt {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 0px;
    /* remove full border-top */
    border-top: none;
}

/* Add small top border line */
.clients-carousel-alt::before {
    content: "";
    display: block;
    width: 800px;
    height: 2px;
    background-color: #4646465b;
    margin: 0 auto 20px;
    border-radius: 1px;
}

.clients-track-alt {
    display: flex;
    gap: 30px;
    animation: slide-alt 20s linear infinite;
}

/* Slide from right to left (opposite direction) */
@keyframes slide-alt {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Reuse client-card styles */
.clients-carousel-alt .client-card img {
    max-width: 150px;
    height: 100px;
    object-fit: contain;
    padding: 10px;
    border: 1px solid #00000056;
}

/* Responsive */


@media (max-width: 700px) {


    .clients-carousel-alt .client-card {
        min-width: 150px;
        height: 180px;
        padding: 15px;
    }

    .clients-carousel-alt .client-card img {
        max-width: 70px;
        height: 70px;
    }

    .clients-carousel-alt .client-card p {
        font-size: 12px;
    }
}


/* Responsive */

@media (max-width: 700px) {

    .client-card {
        min-width: 150px;
        height: 180px;
        padding: 15px;
    }

    .client-card img {
        max-width: 70px;
        height: 70px;
    }

    .client-card p {
        font-size: 12px;
    }

    .clients-section .section-desc {
        font-size: 12px;
    }

    .clients-section .section-title {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {

    .clients-track,
    .clients-track-alt {
        gap: 15px;
        /* smaller gap on tablet */
        animation-duration: 10s;
        /* faster animation on smaller screens */
    }
}

/* Mobile */
@media (max-width: 700px) {

    .clients-track,
    .clients-track-alt {
        gap: 10px;
        animation-duration: 5s;
    }

    .client-card,
    .clients-carousel-alt .client-card {
        min-width: 120px;
        height: 150px;
        padding: 10px;
    }

    .client-card img,
    .clients-carousel-alt .client-card img {
        max-width: 60px;
        height: 60px;
    }

    .client-card p,
    .clients-carousel-alt .client-card p {
        font-size: 11px;
    }
}

/* clients-section end */


/* crmcontact-section start */
.crmcontact-section {
    padding: 80px 20px;
    background: #f8fbff;
}

.crmcontact-container {
    max-width: 1200px;
    margin: auto;
}

/* SIDE BY SIDE WRAPPER */
.crmcontact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* LEFT & RIGHT EQUAL WIDTH */
.crmcontact-info,
.crmcontact-why {
    flex: 0 0 48%;
}

/* ============================= */
/* TITLES */
/* ============================= */

.crmcontact-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.crmcontact-subtext {
    margin-bottom: 30px;
    color: #555;
    font-size: 15px;
}

/* ============================= */
/* CONTACT INFO ITEMS */
/* ============================= */

.crmcontact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.crmcontact-icon {
    font-size: 20px;
    color: #DF7E23;
    margin-top: 4px;
}

/* Optional divider line */
.crmcontact-info {
    border-right: 1px solid #eee;
    padding-right: 30px;
}

/* ============================= */
/* WHY SECTION */
/* ============================= */

.crmcontact-benefits {
    margin-top: 20px;
}

.crmcontact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.crmcontact-benefit-icon {
    color: #DF7E23;
    font-size: 18px;
}

/* Hover Effect */
.crmcontact-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #DF7E23;
}

.crmcontact-bottom-text {
    margin-top: 25px;
    color: #555;
    font-size: 15px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .crmcontact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .crmcontact-info,
    .crmcontact-why {
        flex: 100%;
    }

    .crmcontact-info {
        border-right: none;
        padding-right: 0;
    }
}

/* crmcontact-section end */


/* crmform-section start  */
.crmform-section {
    padding: 80px 20px;
    background: #f4f8fb;
}

.crmform-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* MAIN BOX WITH ONE BACKGROUND */
.crmform-box {
    display: flex;
    gap: 0;
    background: linear-gradient(135deg, #ffffff, #f9fbff);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* BOTH SIDES SAME WIDTH */
.crmform-left,
.crmform-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ADD DIVIDER */
.crmform-left {
    border-right: 1px solid #eee;
}

/* HEADINGS */
.crmform-box h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1C5685;
}

.crmform-subtext {
    margin-bottom: 25px;
    color: #555;
    font-size: 15px;
}

/* FORM */
.crmform-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.crmform-form input,
.crmform-form select,
.crmform-form textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s ease;
}

/* FOCUS */
.crmform-form input:focus,
.crmform-form select:focus,
.crmform-form textarea:focus {
    border-color: #E07F22;
    outline: none;
    box-shadow: 0 0 0 2px rgba(224, 127, 34, 0.2);
}

/* BUTTON */
.crmform-btn {
    padding: 14px;
    background: #4F8C23;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

.crmform-btn:hover {
    background: #E07F22;
    transform: translateY(-3px);
}

/* MAP FULL HEIGHT */
.crmform-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.crmform-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .crmform-box {
        flex-direction: column;
    }

    .crmform-left {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .crmform-map iframe {
        min-height: 300px;
    }
}

/* crmform-section end */


/* crmcta-section start */
.crmcta-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #DF7E23, #cc6409);
    position: relative;
    overflow: hidden;
}

.crmcta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    transform: skewX(-25deg);
    animation: slideLight 6s linear infinite;
}

@keyframes slideLight {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.crmcta-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}


.crmcta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* LEFT TEXT */
.crmcta-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
}

.crmcta-text {
    font-size: 16px;
    color: #e8f1ff;
    margin: 0;
}

/* RIGHT BUTTON */
.crmcta-btn {
    display: inline-block;
    background: #4F8C23;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

.crmcta-btn:hover {
    background: #ffffff;
    color: #4F8C23;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .crmcta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .crmcta-title {
        font-size: 22px;
    }

    .crmcta-btn {
        margin-top: 15px;
    }
}

/* crmcta-section end */


/* Footer-start */
.main-footer {
    background-color: #1C5685;
    color: #ffffff;
    padding: 60px 0 20px;

}

.footer-container {
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
}

/* ===== GRID ===== */
.footer-main-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
    margin-bottom: 40px;
}


.footer-col {
    padding: 0 25px;
    position: relative;
}

/* ===== VERTICAL DIVIDER ===== */
.footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: 90%;
    background: rgba(255, 255, 255, 0.555);
}


.quicklinks-col {
    padding: 0 25px;
}

.quicklinks-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* GRID */
.quicklinks-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px 20px;
    width: 380px;
}

/* LINKS */
.quicklinks-grid li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quicklinks-grid i {
    font-size: 12px;
    color: #ffffff;
}

.quicklinks-grid a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    line-height: 1.4;
}

.quicklinks-grid a:hover {
    color: #176CB1;
    padding-left: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .quicklinks-grid {
        grid-template-columns: 1fr;
    }

    .quicklinks-title {
        text-align: left;
    }
}


/* ===== BRAND ===== */
.footer-logo {
    background-color: #fff;
    border-radius: 10px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* smooth transition */
}

.footer-logo:hover {
    transform: scale(1.05);
    /* slightly enlarge */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* subtle shadow */
}


.brand-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SOCIAL ===== */
.footer-socials {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.footer-socials a {
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #176CB1;
}

/* ===== TITLES ===== */
.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-title i {
    margin-right: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}


/* ===== LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-links i {
    font-size: 12px;
    color: #ffffff;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #000000;
    padding-left: 4px;
}

/* ===== CONTACT ===== */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    width: 270px;
}

.contact-list i {
    color: #ffffff;
}



/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background-color: #4F8C23;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    color: #ffffff;

    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    text-align: center;
}

@media (max-width: 480px) {
    .footer-main-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

@media (max-width: 768px) {
    .footer-bottom {
        border-radius: 15px;
        padding: 12px 20px;
    }
}

/* ================================
   RESPONSIVE FOOTER IMPROVEMENTS
================================ */

/* Large Tablets */
@media (max-width: 1200px) {
    .footer-main-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .quicklinks-grid {
        width: 100%;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .footer-main-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-col,
    .quicklinks-col {
        padding: 0 10px;
    }

    /* Remove vertical dividers */
    .footer-col:not(:last-child)::after {
        display: none;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .footer-main-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-socials {
        justify-content: left;
    }

    .footer-links li,
    .contact-list li,
    .quicklinks-grid li {
        justify-content: left;
    }

    .footer-title,
    .quicklinks-title {
        text-align: left;
    }

    .quicklinks-grid {
        grid-template-columns: 1fr;
        justify-items: left;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Extra Small Phones */
@media (max-width: 400px) {
    .footer-title {
        font-size: 18px;
    }

    .footer-links a,
    .contact-list li,
    .quicklinks-grid a {
        font-size: 13px;
    }

    .brand-text {
        font-size: 13px;
    }
}




/* Footer-end */

/* ===============================
   ANIMATED BACK TO TOP BUTTON
   =============================== */

#et-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #f4a100, #ff7b00);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    overflow: hidden;
}

/* Show button */
#et-top-btn.et-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Arrow */
.et-top-arrow {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover lift + glow */
#et-top-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(244, 161, 0, 0.45);
}

/* Arrow bounce on hover */
#et-top-btn:hover .et-top-arrow {
    transform: translateY(-4px);
}

/* Pulse ring animation */
#et-top-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: scale(1);
}

#et-top-btn:hover::before {
    animation: et-top-pulse 0.9s ease-out;
}

@keyframes et-top-pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

/* Floating idle animation */
#et-top-btn.et-show {
    animation: et-top-float 3s ease-in-out infinite;
}

@keyframes et-top-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    #et-top-btn {
        width: 44px;
        height: 44px;
        right: 15px;
        bottom: 15px;
    }

    .et-top-arrow {
        font-size: 18px;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    right: 25px;
    /* slightly off-screen */
    bottom: 90px;
    /* ABOVE back-to-top button */
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9998;
    /* below top button if needed */
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    /* slide fully into view */
    transform: scale(1.08);
    color: #ffffff;
}

/* Mobile adjustment */
@media (max-width: 480px) {
    .whatsapp-float {
        right: 15px;
        bottom: 80px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* ===== Call Floating Button ===== */
.call-float {
    position: fixed;
    left: 12px;
    /* slightly off-screen */
    bottom: 90px;
    /* balanced with other buttons */
    width: 52px;
    height: 52px;
    background: #1D56DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9997;
    transition: all 0.3s ease;
}

/* Hover / Tap effect */
.call-float:hover {
    left: 25px;
    transform: scale(1.08);
    color: #ffffff;
}

/* Hide on Desktop */
@media (min-width: 992px) {
    .call-float {
        display: none;
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .call-float {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 80px;
    }
}



/* ===== Custom Scrollbar ===== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4338ca;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #6366f1 transparent;
}