@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;
    background: linear-gradient(to right, #264154, #000000);
    background-size: 400% 400%;
    animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* 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;
}


/* PAGE LOADER */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* RIPPLE LOADER */
.ripple-loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.ripple-loader div {
    position: absolute;
    border: 4px solid #00c3ff;
    opacity: 1;
    border-radius: 50%;
    animation: ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.ripple-loader div:nth-child(2) {
    animation-delay: -0.7s;
}

/* ANIMATION */
@keyframes ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 0;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

/* Top Header */
.top-header {
    background-color: #000;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Container */
.top-container {
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    background: transparent;
    color: #ffffff;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* LEFT SIDE */
.top-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-left i.bi {
    color: #ffffff;
    font-size: 15px;
}

/* Divider */
.top-left .divider {
    color: #ffffff;
}

/* RIGHT SIDE - SCROLLING TEXT */
.top-right {
    flex: 1;
    /* allow marquee to take full space */
    overflow: hidden;
    /* hide overflowing text */
    position: relative;
}

.top-right .marquee {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.top-right .marquee span {
    display: inline-block;
    padding-left: 100%;
    /* start outside right */
    animation: marqueeAnim 15s linear infinite;
}

/* Animation keyframes */
@keyframes marqueeAnim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* LAPTOP (992px - 1199px)*/
@media (max-width: 1199px) {
    .top-left {
        gap: 12px;
        font-size: 14px;
    }

    .top-right {
        font-size: 13px;
    }
}

/* TABLET (768px - 991px)*/
@media (max-width: 991px) {

    .top-container {
        flex-direction: row;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    /* .top-left {
        display: none;
    } */

    .top-right {
        text-align: center;
        width: 100%;
    }
}

/* MOBILE (Below 768px)*/
@media (max-width: 767px) {

    .top-left {
        display: none;
    }
}

/* ===============================
   SMALL MOBILE (Below 480px)
=================================*/
@media (max-width: 480px) {
    .top-container {
        border: 0;
        background-color: #000;
    }

    .top-left {
        display: none;
    }

    .top-header {
        padding: 0px;
        font-size: 12px;
    }

    .top-right {
        font-size: 12px;
    }
}

/* ================= NAVBAR ================= */

/* NAVBAR */
.navbar {
    padding: 0px;
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 999;
    transition: all 0.35s ease;
}

/* Navbar Container */
.navbar .container-fluid {
    width: 100%;
    margin: 0 auto;
    background-color: #070066;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 992px) {

    .navbar .container-fluid {
        padding: 10px;
        flex-wrap: wrap;
    }

}

/* Mobile */
@media (max-width: 767px) {

    .navbar .container-fluid {
        padding: 10px;
        flex-wrap: wrap;
    }

}

/* Small Mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 0px;
    }

    .navbar .container-fluid {
        background-color: #070066;
        padding: 10px 12px;
        border-radius: 0;
        border: 0px;
    }

}

/* Fixed Navbar */
.navbar.fixed {
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

/* Remove border when scrolling */
.navbar.fixed .container-fluid {
    border: none;
}

/* logo start */
.navbar-brand img {
    height: 55px;
    border-radius: 12px;
    /* border: 2px solid #104067; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.navbar-brand img:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 10px 25px rgba(23, 108, 177, 0.11); */
}

/* logo end */

/* centre menu start */
.center-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 8px 14px;
}

/* NAV ITEM */
.center-nav .nav-item {
    position: relative;
}

/* NAV LINK */
.center-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff !important;
    transition: all 0.35s ease;
    z-index: 1;
    overflow: hidden;
}

/* ICON */
.center-nav .nav-link i {
    font-size: 15px;
    transition: 0.3s ease;
}

/* Stylish Gradient Glow Background */
.center-nav .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 1px solid #fff;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
    /* soft green highlight */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
    opacity: 0;
    transition: 0.35s ease;
    z-index: -1;
}

/* Hover Effect */
.center-nav .nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-4px);
}

.center-nav .nav-link:hover::before {
    opacity: 1;
}

/* ACTIVE LINK underline */
/* Active link text color */
.center-nav .nav-link.active {
    color: #f87801 !important;
    font-weight: 700;
}

/* Active underline */
.center-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #f87801;
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Show underline only for active */
.center-nav .nav-link.active::after {
    width: 60%;
}

/* Hover icon animation */
.center-nav .nav-link:hover i {
    transform: rotate(-8deg) scale(1.1);
}

/* Remove active background */
.center-nav .nav-link.active::before {
    opacity: 0 !important;
    box-shadow: none !important;
}

/* Responsive */
@media(max-width: 992px) {
    .center-nav {
        gap: 8px;
        padding: 6px 10px;
    }

    .center-nav .nav-link {
        padding: 8px 14px !important;
        font-size: 13px;
    }

    .navbar-brand img {
        height: 40px;
    }

    .btn-quote {
        font-size: 14px !important;
    }
}

/* centre menu end */

/* Drop Down Start */

.custom-dropdown {
    position: relative;
}

/* DROPDOWN CONTAINER */
.dropdown-pane {
    position: absolute;
    top: 115%;
    left: 0;
    min-width: 450px;
    padding: 18px;
    border-radius: 14px;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 999;
}

/* Show Dropdown */
.custom-dropdown:hover .dropdown-pane {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN LINKS */
/* Dropdown Links - Minimal Underline Style */
.dropdown-pane a {
    text-transform: uppercase;
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    /* main text */
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Underline effect */
.dropdown-pane a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 16px;
    width: 0%;
    height: 2px;
    background: #14507f;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Hover Effect */
.dropdown-pane a:hover {
    color: #000000;
    /* text color changes */
    background: rgba(0, 195, 255, 0.1);
    /* subtle background */
}

/* Expand underline on hover */
.dropdown-pane a:hover::after {
    width: calc(100% - 32px);
    /* full width minus horizontal padding */
}

/* SUB DROPDOWN */
.sub-dropdown {
    position: relative;
}

/* SUB DROPDOWN PANEL */
.sub-dropdown-pane {
    position: absolute;
    right: 100%;
    top: 0;

    background: #ffffff;
    min-width: 520px;
    padding: 20px;
    border-radius: 18px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;

    z-index: 999;
}

/* SHOW ON HOVER */
.sub-dropdown:hover>.sub-dropdown-pane {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* LINKS STYLE (Card Look) */
.sub-dropdown-pane a {
    display: flex;
    align-items: center;
    justify-content: center;


    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1C5685;

    background: linear-gradient(135deg, #f8fbff, #eef6ff);
    border-radius: 12px;

    text-decoration: none;
    transition: all 0.25s ease;

    border: 1px solid rgba(28, 86, 133, 0.08);
}

/* HOVER EFFECT */
.sub-dropdown-pane a:hover {
    background: linear-gradient(135deg, #1C5685, #0d3c61);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(28, 86, 133, 0.3);
}

/* Drop Down end */

/* get a quote button start */
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #1c5685, #0d3c61);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-quote i {
    font-size: 16px;
}

/* Hover Effect */
.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #0d3c61, #1c5685);
}

/* Different Background for User Button */
.user-btn {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.user-btn:hover {
    background: linear-gradient(135deg, #1e7e34, #28a745);
}

/* get a quote button end */

/* Toggle Menu Start*/
.menu-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: linear-gradient(135deg, #1c5685, #0d3c61);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-btn span {
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Active Animation (Hamburger to X) */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Toggle Menu End */


/* offcanvas-start */
/* offcanvas-header start */
.stylish-offcanvas {
    background: linear-gradient(135deg, #000b24, #00182c);
    color: #ffffff;
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(28, 86, 133, 0.15);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

/* Header */
.stylish-offcanvas .offcanvas-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(28, 86, 133, 0.15);
    background: #000000;
}

/* Title */
.stylish-offcanvas .offcanvas-title {
    font-weight: 700;
    font-size: 18px;
    color: #1C5685;
}

/* Close Button */
.stylish-offcanvas .btn-close {
    /* filter: brightness(0.3); */
    opacity: 0.7;
    transition: 0.3s ease;
    color: #ffffff !important;
}

.stylish-offcanvas .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Body */
.stylish-offcanvas .offcanvas-body {
    padding: 20px;
}

/* offcanvas-header end */


/* MOBILE MENU LINKS */
.mobile-nav-list {
    margin-top: 20px;
    list-style: none;
}

.mobile-nav-list .nav-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    transition: 0.3s ease;
}

.mobile-nav-list .nav-link:hover {
    color: #58a6ff !important;
}

.mobile-nav-list .nav-link i {
    margin-right: 10px;
    font-size: 16px;
    color: #1C5685;
    transition: 0.3s ease;
}

.mobile-nav-list .nav-link:hover i {
    transform: translateX(4px);
    color: #0d3c61;
}

/* MOBILE DROPDOWN */
/* Remove default dropdown arrow */
.mobile-dropdown>.nav-link::after {
    content: none !important;
}

/* Toggle icon */
.mobile-dropdown .toggle-icon {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Rotate toggle icon when open */
.mobile-dropdown.open .toggle-icon {
    transform: rotate(45deg);
    /* + becomes × style */
    color: #ffffff;
}

/* Dropdown pane */
.mobile-dropdown-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.3s ease;
    list-style: none;
    margin-left: 10px;
}

/* Expanded state */
.mobile-dropdown.open .mobile-dropdown-pane {
    max-height: 600px;
    margin-top: 8px;
}

/* Dropdown links - Modern Card Style */
.mobile-dropdown-pane li .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #1C5685 !important;

    padding: 10px 14px;
    border-radius: 10px;

    background: #f8fbff;
    border: 1px solid rgba(28, 86, 133, 0.08);

    margin-bottom: 6px;

    transition: all 0.3s ease;
}

/* Hover effect */
.mobile-dropdown-pane li .nav-link:hover {
    background: linear-gradient(135deg, #1C5685, #0d3c61);
    color: #ffffff !important;
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(28, 86, 133, 0.25);
}

/* Remove underline animation (cleaner look) */
.mobile-dropdown-pane li .nav-link::after {
    content: none;
}

/* MOBILE SERVICE ROW */
.mobile-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

/* Make toggle icon clickable */
.mobile-dropdown .toggle-icon {
    cursor: pointer;
}

/* offcanvas consult button container start */
.offcanvas-consult-btn {
    margin: 25px 0;
    /* display: flex;           */
    gap: 12px;
}

/* COMMON BUTTON STYLE */
.offcanvas-consult-btn .btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    padding: 12px 16px;

    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;

    text-decoration: none;
    color: #ffffff;

    transition: all 0.3s ease;
}

/* ADMIN BUTTON */
.offcanvas-consult-btn .btn-quote:first-child {
    background: linear-gradient(135deg, #1c5685, #0d3c61);
}

/* USER BUTTON */
.offcanvas-consult-btn .btn-quote:last-child {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

/* HOVER EFFECT */
.offcanvas-consult-btn .btn-quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ICON ANIMATION */
.offcanvas-consult-btn .btn-quote i {
    transition: transform 0.3s ease;
}

.offcanvas-consult-btn .btn-quote:hover i {
    transform: scale(1.15);
}

/* offcanvas consult button container end */



/* DIVIDER */
.offcanvas-divider {
    height: 1px;
    width: 85%;
    margin: 18px auto;
    background: linear-gradient(to right,
            rgba(28, 86, 133, 0.4));
}

/* CONTACT CARD */
.offcanvas-contact {
    padding: 20px;
    border-radius: 16px;

    background: linear-gradient(135deg, #1C5685, #0d3c61);
    color: #ffffff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Heading */
.offcanvas-contact h6 {
    font-size: 14px;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Contact text */
.offcanvas-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.95;

    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icon inside contact text */
.offcanvas-contact p i {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: 8px;
    font-size: 13px;
}

/* SOCIAL BUTTONS CONTAINER */
.offcanvas-socials {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

/* Social Icons */
.offcanvas-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;

    transition: all 0.3s ease;
}

/* Hover effect */
.offcanvas-socials a:hover {
    background: #ffffff;
    color: #1C5685;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Icon scaling */
.offcanvas-socials a i {
    transition: transform 0.3s ease;
}

.offcanvas-socials a:hover i {
    transform: scale(1.2);
}

/* Logo */
.offcanvas-logo-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.offcanvas-logo {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

/* 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;
    }
}


.consult-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3b82f6;
    /* blue button */
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
    text-decoration: none;
}

.consult-btn:hover {
    background: #2563eb;
    color: #fff;
}

@media(max-width: 992px) {
    .navbar-right {
        display: none;
    }
}


/* Navbar-End */




/* hero-section start */
.crmhero-section {
    /* background: linear-gradient(135deg, #294456, #000); */
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

/* FRAME */
.crmhero-frame {
    max-width: 1400px;
    margin: auto;
    position: relative;
}

/* corner dots */
.crmhero-section::before,
.crmhero-section::after,
.crmhero-frame::before,
.crmhero-frame::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.137),
            rgba(255, 255, 255, 0.11) 2px,
            transparent 2px,
            transparent 8px);
}

/* Positions */
.crmhero-section::before {
    top: 20px;
    left: 20px;
}

.crmhero-frame::before {
    top: -40px;
    right: 20px;
}

.crmhero-frame::after {
    bottom: 20px;
    left: 20px;
}

.crmhero-section::after {
    bottom: 20px;
    right: 20px;
}

/* CONTAINER */
.crmhero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT CONTENT */
.crmhero-content {
    flex: 1;
}

/* small title */
.crmhero-subtitle {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

/* main title */
.crmhero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 15px 0;
    line-height: 1.2;
}

/* description */
.crmhero-description {
    font-size: 16px;
    color: #cfcfcf;
    max-width: 520px;
    margin-bottom: 30px;
}

/* BUTTON GROUP */
.crmhero-buttons {
    display: flex;
    gap: 15px;
}

/* BUTTON STYLE */
.crmhero-btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* whatsapp button */
.whatsapp-btn {
    background: #448319;
    color: #fff;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}

/* service button */
.hero-service-btn {
    border: 2px solid #fff;
    color: #fff;
}

.hero-service-btn:hover {
    background: #fff;
    color: #000;
}

/* RIGHT IMAGE AREA */
.crmhero-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* IMAGE CONTAINER */
.crmhero-image-container {
    width: 100%;
    max-width: 500px;

    aspect-ratio: 4 / 3;
    /* keeps responsive height */

    background-image: url('./image/services/billing-software.webp');
    background-size: cover;
    background-position: center;

    border-radius: 80px 20px 80px 20px;

    animation: floatImage 6s ease-in-out infinite;
    transition: 0.4s;
}

/* hover effect */
.crmhero-image-container:hover {
    transform: scale(1.05);
}

/* FLOATING ANIMATION */
@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:992px) {

    .crmhero-container {
        flex-direction: column;
        text-align: center;
    }

    .crmhero-title {
        font-size: 36px;
    }

    .crmhero-description {
        margin: 0 auto 10px;
        text-align: center;
    }

    .crmhero-buttons {
        margin: 20px;
        justify-content: center;
    }

    .crmhero-image-container {
        height: 420px;
    }

}

@media(max-width:576px) {

    .crmhero-title {
        font-size: 24px;
    }

    .crmhero-buttons {
        flex-direction: row;
    }

    .crmhero-description {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .crmhero-image-container {
        height: 280px;
    }

}

/* hero-section end */

/* .features-section start */
.workfeatures-section {
    padding: 80px 20px;
    background: #152d3b;
}

/* CONTAINER */
.workfeatures-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.workfeatures-header {
    text-align: center;
    margin-bottom: 60px;
}

/* SMALL TITLE */
.workfeatures-subtitle {
    display: inline-block;
    font-size: 14px;
    color: #8ed4c5;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* MAIN TITLE */
.workfeatures-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* GRID */
.workfeatures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.workfeature-card {
    display: flex;
    background: #2f5166;
    padding: 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* HOVER */
.workfeature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* NUMBER */
.workfeature-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    padding-right: 25px;
    line-height: 1;
    transition: 0.3s;
}

/* NUMBER HOVER */
.workfeature-card:hover .workfeature-number {
    color: #8ed4c5;
}

/* CONTENT */
.workfeature-content {
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 25px;
}

/* ANIMATED LINE */
.workfeature-content::before {
    content: "";
    position: absolute;
    left: -1px;
    width: 2px;
    height: 20px;
    background: #8ed4c5;
    animation: lineMove 2.5s ease-in-out infinite;
}

/* TITLE */
.workfeature-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* TEXT */
.workfeature-text {
    margin: 0;
    color: #c6d6df;
    line-height: 1.6;
    font-size: 15px;
}

/* ICON */
.workfeature-icon {
    margin-top: 15px;
    font-size: 26px;
    color: #8ed4c5;
    transition: 0.3s;
}

.workfeature-card:hover .workfeature-icon {
    transform: scale(1.2);
}

/* LINE ANIMATION */
@keyframes lineMove {
    0% {
        top: 0;
    }

    50% {
        top: 60%;
    }

    100% {
        top: 0;
    }
}

/* RESPONSIVE */

@media(max-width:992px) {
    .workfeatures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .workfeatures-grid {
        grid-template-columns: 1fr;
    }
}

/* .features-section end */

/* breadcrumb-section start */
.breadcrumb-section {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    /* background: url('https://www.crmbuyer.com/wp-content/uploads/sites/4/2026/01/AI-enabled-crm-dashboard.jpg') center/cover no-repeat; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Dark Overlay */
.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 23, 37, 0.85),
            rgba(2, 21, 36, 0.85));
    z-index: 1;
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Common Button Style */
.breadcrumb a,
.breadcrumb .active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Home Button */
.breadcrumb a {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.breadcrumb a:hover {
    background: #ffffff;
    color: #154A75;
    transform: translateY(-2px);
}

/* Active Page Button */
.breadcrumb .active {
    background: #ffffff;
    color: #154A75;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Separator */
.breadcrumb-separator {
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* Icon Styling */
.breadcrumb i {
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 22px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 14px;
        gap: 8px;
    }

    .breadcrumb a,
    .breadcrumb .active {
        padding: 6px 16px;
        font-size: 13px;
    }
}

/* breadcrumb-section end */

/* about-us-section start  */
.crmabout-section {
    padding: 90px 20px;
    background: #264151;
}

/* CONTAINER */
.crmabout-container {
    max-width: 1200px;
    margin: auto;
}

/* WRAPPER */
.crmabout-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.crmabout-left {
    flex: 1;
}

/* SMALL TITLE */
.crmabout-smalltitle {
    font-size: 16px;
    color: #8ed4c5;
    font-weight: 600;
    letter-spacing: 1px;
}

/* TITLE */
.crmabout-title {
    font-size: 36px;
    margin: 10px 0 20px;
    color: #ffffff;
    font-weight: 700;
}

/* DESCRIPTION */
.crmabout-desc {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* FEATURES */
.crmabout-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FEATURE BOX */
.crmabout-featurebox {
    display: flex;
    gap: 15px;
    padding: 15px 18px;
    background: #2f5166;
    border-radius: 6px;
    transition: 0.3s;
    align-items: flex-start;
}

/* HOVER */
.crmabout-featurebox:hover {
    background: #1f3645;
    transform: translateX(6px);
}

.crmabout-featurebox:hover h4 {
    color: #8ed4c5;
}

.crmabout-featurebox:hover p {
    color: #ffffff;
}

/* ICON */
.crmabout-icon {
    font-size: 22px;
    color: #8ed4c5;
    margin-top: 4px;
}

/* FEATURE TITLE */
.crmabout-featurebox h4 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
}

/* FEATURE TEXT */
.crmabout-featurebox p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #c6d6df;
}

/* BUTTON */
.crmabout-btnwrap {
    margin-top: 30px;
}

.crmabout-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #46851B;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.crmabout-btn:hover {
    background: #8ed4c5;
    color: #000;
}

/* RIGHT IMAGE */
.crmabout-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* IMAGE BOX */
.crmabout-imagebox {
    width: 85%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: floatImage 4s ease-in-out infinite;
    transition: 0.3s;
}



/* IMAGE */
.crmabout-imagebox img {
    width: 100%;
    display: block;
}

/* HOVER */
.crmabout-imagebox:hover {
    transform: scale(1.05);
}

/* FLOAT ANIMATION */
@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:992px) {

    .crmabout-wrapper {
        flex-direction: column;
    }

    .crmabout-title {
        font-size: 30px;
    }

    .crmabout-btnwrap {
        text-align: center;
    }

}

@media(max-width: 768px){
    .crmabout-title {
    font-size: 20px;
}
}

/* about-us-section end  */

/* crm-Delhi-section start */
.crm-Delhi-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0d1b2a, #1b263b, #0d1b2a);
    color: #fff;
    font-family: Arial, sans-serif;
    transition: all 0.4s ease;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
}

.crm-Delhi-section:hover {
    background: linear-gradient(135deg, #1b263b, #0d1b2a, #1b263b);
    transform: translateY(-5px);
}

.crm-Delhi-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.crm-Delhi-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.crm-Delhi-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.crm-Delhi-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
}

.crm-Delhi-features li i {
    color: #00c3ff;
    font-size: 1.2em;
}

/* --- Responsive Adjustments --- */

/* Tablets (width <= 992px) */
@media (max-width: 992px) {
    .crm-Delhi-section {
        padding: 50px 15px;
    }

    .crm-Delhi-container h2 {
        font-size: 24px;
    }

    .crm-Delhi-container p,
    .crm-Delhi-features li {
        font-size: 15px;
    }

    .crm-Delhi-features li i {
        font-size: 1.1em;
    }
}

/* Mobile (width <= 480px) */
@media (max-width: 480px) {
    .crm-Delhi-section {
        padding: 40px 10px;
    }

    .crm-Delhi-container h2 {
        font-size: 20px;
        text-align: center;
    }

    .crm-Delhi-container p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .crm-Delhi-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .crm-Delhi-features li {
        font-size: 14px;
    }

    .crm-Delhi-features li i {
        font-size: 1em;
    }
}

/* crm-Delhi-section end */

/* discover-company start */
.discover-company {
    background-color: #132b38;
    color: #f0f0f0;
    padding: 80px 20px;
}

.discover-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}


/* LEFT SIDE CARDS */
.discover-left {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.card-icon i {
    font-size: 40px;
    color: #ffffff;
    background-color: #f87801;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Hover effect */
.card-icon i:hover {
    transform: scale(1.1);
    background-color: #c76000;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #ffffff;
}

.card-content p {
    margin: 0;
    font-size: 14px;
    color: #cccccc;
}

/* RIGHT SIDE CARD */
.discover-right {
    width: 800px;
    /* fixed width */
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-image-card {
    display: flex;
    gap: 20px;
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.card-left {
    flex: 2;
    /* make text side bigger */
}

.card-right {
    flex: 1 1 100;
    /* image side smaller */
}

.card-left h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.card-left p {
    font-size: 14px;
    color: #cccccc;
}

.card-right img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    /* keep image proportion */
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .discover-container {
        flex-direction: column;
        align-items: center;
    }

    .discover-left,
    .discover-right {
        width: 100%;
        /* full width on smaller screens */
    }

    .company-image-card {
        flex-direction: column;
    }

    .card-right {
        flex: none;
    }
}

/* discover-company end */

/* whychoose-section start */
.why-choose-us {
    background-color: #121212;
    color: #f0f0f0;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Remove image styles since no image */
.why-left {
    display: none;
}

/* FEATURES CARDS */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #1f1f1f, #262626);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    /* Slide animation */
    animation: floatCard 4s ease-in-out infinite alternate;
}


/* Glow overlay for hover with purple */
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* background: radial-gradient(circle, rgba(7, 0, 102, 0.3) 0%, transparent 70%); */
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Hover animation */
.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 15px 30px rgba(7, 0, 102, 0.7);
    animation-play-state: paused;
    /* stop float when hovered */
}

/* Icon */
.feature-icon i {
    font-size: 40px;
    color: #ffffff;
    transition: transform 0.3s, color 0.3s;
}

.feature-card:hover .feature-icon i {
    transform: rotate(15deg) scale(1.2);
    /* color: #5c00ff; */
    /* lighter purple on hover */
}

/* Content */
.feature-content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    height: 60px;
    text-align: center;
    transition: color 0.3s;
}

.feature-card:hover .feature-content h3 {
    color: #ffffff;
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    line-height: 1.5;
    transition: color 0.3s;
}

.feature-card:hover .feature-content p {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .why-container {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 768px) {
    .why-container {
        grid-template-columns: 1fr;
    }

    .feature-content h3 {
        height: 40px;
    }
}

/* whychoose-section end */


/* intro-wcu-section start */
.intro-wcu-section {
    padding: 70px 20px;
    background: #050002;
    color: #ffffff;
}

.intro-wcu-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px;
    border-radius: 16px;
    transition: background 0.5s ease, transform 0.4s ease, box-shadow 0.4s ease;
    background: #0c0c0c;
    /* default background */
}

/* Hover effect */
.intro-wcu-container:hover {
    background: linear-gradient(135deg, #070066, #1a004d);
    /* deep purple gradient */
    transform: translateY(-5px) scale(1.02);
    /* subtle lift and zoom */
}

/* LEFT IMAGE */
.intro-wcu-left {
    flex: 1;
}

.intro-wcu-left img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    filter: brightness(85%) contrast(110%);
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}

/* Hover effect */
.intro-wcu-left img:hover {
    transform: scale(1.05) rotate(-1deg);
    filter: brightness(100%) contrast(120%);
}

.intro-wcu-right {
    flex: 1;
}

/* TITLE */
.intro-wcu-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* SUBTITLE */
.intro-wcu-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4F8C23;
    /* highlight green */
}

/* TEXT */
.intro-wcu-text {
    font-size: 14px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 10px;
}

/* OPTIONAL: subtle glow effect */
.intro-wcu-title span {
    color: #4F8C23;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .intro-wcu-container {
        flex-direction: column;
        gap: 30px;
    }


    .intro-wcu-title {
        font-size: 16px;
    }

    .intro-wcu-subtitle {
        font-size: 14px;
    }

    .intro-wcu-text {
        font-size: 12px;
    }
}

/* intro-wcu-section end */



/* working-cycle start */
.primary-blue {
    color: #0052ff;
}

.text-dark {
    color: #1a1a1a;
}

.text-muted {
    color: #777;
}

/* WORKING CYCLE SECTION */
.working-cycle {
    padding: 80px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.header .sub-title {
    color: #0052ff;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0 60px;
    color: #ffffff;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    max-width: 250px;
}

/* Zig-zag effect */
.move-down {
    margin-top: 50px;
}

.icon-wrapper {
    width: 150px;
    height: 150px;
    /* background: white; */
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0052ff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: bold;
}

.step-item p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

/* Curved Arrow */
.arrow {
    width: 80px;
    height: 50px;
    margin-top: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="50" viewBox="0 0 80 50"><path d="M5,25 Q40,0 75,25" fill="none" stroke="%23cbd5e1" stroke-width="2" stroke-dasharray="5,5" marker-end="url(%23arrowhead)"/></svg>');
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .arrow {
        display: none;
    }

    .move-down {
        margin-top: 0;
    }
}

/* working-cycle end */


/* counter-section start */
/* SECTION */
.crmcounter-section {
    padding: 80px 20px;
    background: #26415159;
}

/* CONTAINER */
.crmcounter-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.crmcounter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* BOX */
.crmcounter-box {
    background: #2f5166;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.crmcounter-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ICON + NUMBER ROW */
.crmcounter-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* ICON */
.crmcounter-icon {
    font-size: 30px;
    color: #8ed4c5;
}

/* NUMBER */
.crmcounter-number {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}

/* TITLE */
.crmcounter-title {
    font-size: 15px;
    color: #c6d6df;
    margin: 0;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .crmcounter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .crmcounter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* counter-section end */


/* .crm-service-section start */
.crm-service-section {
    padding: 80px 20px;
    background: #0f172a;
}

.crm-service-container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.crm-service-title {
    text-align: center;
    margin-bottom: 60px;
}

.crm-service-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.crm-service-title p {
    max-width: 700px;
    margin: auto;
    color: #9ca3af;
    line-height: 1.6;
}

/* GRID */
.crm-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.crm-service-card {
    background: #1e293b;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all .35s ease;
    animation: crmFloat 4s ease-in-out infinite;
}

.crm-service-img {
    width: 100%;
    height: 180px;
    /* adjust height as needed */
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    /* rounded top corners */
    margin-bottom: 15px;
}

/* Floating Animation */
@keyframes crmFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Hover */
.crm-service-card:hover {
    transform: translateY(-12px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Title */
.crm-service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Text */
.crm-service-card p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Button */
.crm-service-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 30px;
    transition: .3s;
}

.crm-service-btn:hover {
    background: #2563eb;
}

/* Tablet */
@media (max-width:992px) {

    .crm-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */
@media (max-width:600px) {

    .crm-service-grid {
        grid-template-columns: 1fr;
    }

    .crm-service-title h2 {
        font-size: 28px;
    }

}

/* .crm-service-section end */

/* intro-service-section start */
.intro-service-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9fbff 0%, #e6f0ff 100%);
    font-family: 'Poppins', Arial, sans-serif;
    overflow: hidden;
}

/* Decorative Blob Shape */
.intro-service-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #1c56b5;
    border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    bottom: -80px;
    right: -80px;
    opacity: 0.15;
    z-index: 1;
    transform: rotate(25deg);
    filter: blur(35px);
}

.intro-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    z-index: 2;
    position: relative;
}

.intro-image {
    flex: 1 1 450px;
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 35% 65% 65% 35% / 50% 50% 50% 50%;
    display: block;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.intro-image img:hover {
    transform: scale(1.05) translateY(-10px);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.intro-content {
    flex: 1 1 500px;
}

.sub-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.intro-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.intro-content p {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.intro-content .highlight {
    color: #0d3b66;
    font-weight: 700;
}

/* Divider */
.intro-divider {
    border: none;
    height: 3px;
    width: 60px;
    background-color: #1c56b5;
    margin: 30px 0;
    border-radius: 3px;
}

/* Benefits Cards Grid */
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.benefit-card {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* Button */
.know-more-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(90deg, #1c56b5, #0d3b66);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.know-more-btn:hover {
    background: linear-gradient(90deg, #0d3b66, #1c56b5);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 900px) {
    .intro-container {
        flex-direction: column;
    }

    .intro-image,
    .intro-content {
        flex: 1 1 100%;
    }

    .benefits-cards {
        grid-template-columns: 1fr;
    }
}

/* intro-service-section end */


/* crmservice-highlight-section start */
.crmservice-highlight-section {
    padding: 80px 20px;
    background: #0a0a0a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Dot Pattern Overlay */
.crmservice-highlight-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#1C5685 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    /* subtle effect */
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above dots */
.crmservice-highlight-container,
.crmservice-highlight-wrapper,
.crmservice-highlight-content,
.crmservice-highlight-image {
    position: relative;
    z-index: 1;
}

/* Container */
.crmservice-highlight-container {
    max-width: 1200px;
    margin: auto;
}

/* Wrapper */
.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.5);
}

/* RIGHT CONTENT */
.crmservice-highlight-content {
    flex: 1;
}

/* SMALL TITLE */
.crmservice-small-title {
    display: inline-block;
    padding: 6px 16px;
    background: #1C5685;
    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: #00c3ff;
}

/* DESCRIPTION WITH VERTICAL LINE */
.crmservice-description-box {
    border-left: 4px solid #00c3ff;
    padding-left: 20px;
    margin-bottom: 25px;
}

.crmservice-description-box p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* HORIZONTAL LINE */
.crmservice-divider {
    width: 100%;
    height: 2px;
    background: #222;
    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: #1e1e1e;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid transparent;
    color: #ccc;
}

.crmservice-feature-item i {
    font-size: 20px;
    color: #00c3ff;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.crmservice-feature-item:hover {
    background: #00c3ff;
    color: #0a0a0a;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.crmservice-feature-item:hover i {
    color: #0a0a0a;
}

/* 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 */

/* crmdev-highlight-section start */
.crmdev-highlight-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a, #020617);
    overflow: hidden;
}

/* animated dot layer */
.crmdev-highlight-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: radial-gradient(rgba(255, 255, 255, 0.411) 1px, transparent 1px);
    background-size: 30px 30px;

    opacity: 0.4;

    animation: dotMove 20s linear infinite;
}

/* dot movement */
@keyframes dotMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200px 200px;
    }
}


/* CONTAINER */
.crmdev-highlight-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.crmdev-highlight-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* CONTENT */

.crmdev-highlight-content {
    flex: 1;
}

/* small title */
.crmdev-small-title {
    display: inline-block;
    padding: 7px 18px;
    background: linear-gradient(135deg, #4F8C23, #76b73c);
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    margin-bottom: 15px;
    letter-spacing: .5px;
}

/* main title */
.crmdev-main-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
}

/* description box */
.crmdev-description-box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #E07F22;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    margin-bottom: 25px;
}

.crmdev-description-box p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* .crmdev-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4F8C23, #E07F22);
    margin-bottom: 30px;
    border-radius: 10px;
} */

/* FEATURES GRID */

.crmdev-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* feature card */
.crmdev-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 18px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;

    color: #ffffff;

    transition: all .35s ease;
}

/* icon */
.crmdev-feature-item i {
    font-size: 20px;
    color: #4F8C23;
    transition: .35s;
}

/* hover */
.crmdev-feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
}

.crmdev-feature-item:hover i {
    color: #E07F22;
    transform: scale(1.2) rotate(10deg);
}

/* closing text */
.crmdev-closing-text {
    margin-top: 25px;
    color: #cfcfcf;
    font-size: 15px;
}

/* IMAGE */

.crmdev-highlight-image {
    flex: 1;
    position: relative;
}

.crmdev-highlight-image img {
    width: 100%;
    border-radius: 18px;
    transition: 0.6s ease;
}

/* glowing border */
.crmdev-highlight-image::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 20px;
    /* background: linear-gradient(45deg, #4F8C23, #E07F22); */
    opacity: .25;
    filter: blur(30px);
    z-index: -1;
}

/* hover */
.crmdev-highlight-image img:hover {
    transform: scale(1.05) rotate(.5deg);
}

/* RESPONSIVE */

@media(max-width:992px) {

    .crmdev-highlight-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .crmdev-main-title {
        font-size: 28px;
    }

    .crmdev-description-box {
        text-align: left;
    }

    .crmdev-features {
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px) {

    .crmdev-highlight-section {
        padding: 70px 20px;
    }

    .crmdev-main-title {
        font-size: 24px;
    }

}

/* crmdev-highlight-section end */



/* crm-need-section start */
.crm-need-section {
    padding: 90px 20px;
    background: #111111;
    overflow: hidden;
}

/* CONTAINER */
.crm-need-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    background: linear-gradient(135deg, #1a1a1a, #111);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;

    padding: 40px;
    border-radius: 12px;
    background: #111;
    transition: all 0.4s ease;
}

/* Hover Effect */
.crm-need-container:hover {
    background: linear-gradient(135deg, #1a1a1a, #111);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}

/* IMAGE SIDE */
.crm-need-image {
    flex: 1;
    position: relative;
}

.crm-need-image img {
    width: 100%;
    height: 400px;
    border-radius: 18px;
    transition: 0.5s;
}

/* IMAGE HOVER */
.crm-need-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* CONTENT SIDE */
.crm-need-content {
    flex: 1;
}



/* TITLE */
.crm-need-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.crm-need-description p {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* HIGHLIGHT TEXT */
.crm-need-highlight {
    border-left: 4px solid #E07F22;
    padding-left: 18px;
    color: #ffffff;
    font-weight: 500;
}

/* RESPONSIVE */
@media(max-width:992px) {

    .crm-need-container {
        flex-direction: column;
        text-align: center;
    }

    .crm-need-highlight {
        border-left: none;
        border-top: 4px solid #E07F22;
        padding-left: 0;
        padding-top: 12px;
    }

    .crm-need-title {
        font-size: 26px;
    }

}

@media(max-width:576px) {

    .crm-need-title {
        font-size: 22px;
    }

    .crm-need-description p {
        font-size: 14px;
    }

}

/* crm-need-section end */

/* crm-process-section start */
.crm-process-section {
    padding: 100px 20px;
    background: #0f0f0f;
}

/* CONTAINER */
.crm-process-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.crm-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.crm-process-small {
    display: inline-block;
    padding: 6px 16px;
    background: #4F8C23;
    color: #fff;
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.crm-process-title {
    font-size: 34px;
    color: #ffffff;
}

/* GRID */
.crm-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
/* CARD BASE */
.crm-process-card {
    background: #1a1a1a;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

/* FLOATING ANIMATION */
@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* GLOW ANIMATION LINE */
.crm-process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4F8C23, #E07F22, #4F8C23);
    transition: 0.6s;
}

/* LINE SLIDE EFFECT */
.crm-process-card:hover::before {
    left: 0;
}

/* CARD HOVER */
.crm-process-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

/* NUMBER ANIMATION */
.crm-process-number {
    font-size: 36px;
    font-weight: 700;
    color: #4F8C23;
    margin-bottom: 10px;
    transition: 0.4s;
}

/* NUMBER HOVER */
.crm-process-card:hover .crm-process-number {
    color: #E07F22;
    transform: scale(1.2);
}

/* TITLE */
.crm-process-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* TEXT */
.crm-process-card p {
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.7;
}

/* HOVER EFFECT */
.crm-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* GLOW LINE */
.crm-process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #E07F22;
    transition: .4s;
}

.crm-process-card:hover::before {
    width: 100%;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .crm-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:576px) {

    .crm-process-grid {
        grid-template-columns: 1fr;
    }

    .crm-process-title {
        font-size: 24px;
    }

}

/* crm-process-section end */



/* crm-dark-section start */
.crm-dark-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a, #111, #0f0f0f);
    color: #eaeaea;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* TITLE */
.crm-dark-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

/* TABS */
.crm-dark-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* TAB */
.crm-dark-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: all .35s ease;
    color: #bbb;
    position: relative;
}

/* ICON */
.crm-dark-tab i {
    font-size: 28px;
    color: #ffa500;
    transition: .3s;
}

/* TEXT */
.crm-dark-tab span {
    font-weight: 600;
    font-size: 14px;
}

/* ACTIVE TAB */
.crm-dark-tab.active {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    color: #fff;
}

.crm-dark-tab.active i {
    color: #4fc23f;
    transform: scale(1.2);
}

/* HOVER */
.crm-dark-tab:hover {
    transform: translateY(-3px);
}

.crm-dark-tab:hover i {
    color: #4fc23f;
}

/* DIVIDER */
.crm-dark-tab-divider {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4fc23f, transparent);
}

/* CONTENT AREA */
.crm-dark-content {
    max-width: 1100px;
    margin: auto;
}

/* TAB CONTENT */
.crm-dark-tab-content {
    display: none;
}

.crm-dark-tab-content.active {
    display: block;
    animation: fadeIn .6s ease;
}

/* LIST CARD */
.crm-dark-list {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    list-style: none;
    transition: .35s;
}

/* LIST ITEMS */
.crm-dark-list li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #ddd;
    padding-left: 25px;
    position: relative;
}

/* CUSTOM BULLET */
.crm-dark-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4fc23f;
    font-size: 14px;
}

/* HOVER CARD */
.crm-dark-list:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* FADE ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px) {

    .crm-dark-title {
        font-size: 28px;
    }

    .crm-dark-tab i {
        font-size: 24px;
    }

    .crm-dark-list {
        padding: 25px;
    }

}

@media(max-width:480px) {

    .crm-dark-tabs {
        gap: 15px;
    }

    .crm-dark-tab span {
        font-size: 13px;
    }

    .crm-dark-list li {
        font-size: 14px;
    }

}

/* crm-dark-section end */



/* industry-crm-section start */
.industry-crm-section {
    padding: 80px 20px;
    background: #0f0f0f;
}

.industry-crm-container {
    max-width: 1400px;
    margin: auto;
}

.industry-crm-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: #ffffff;
}

/* GRID */

.industry-crm-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* CARD */

.industry-crm-card {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 18px;
    transition: all .45s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

/* animated gradient border */
.industry-crm-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /* background:linear-gradient(120deg,#0D6CB5,#00c3ff,#0D6CB5); */
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: .4s;
}

/* IMAGE */
.industry-crm-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform .5s ease;
}

/* TITLE */
.industry-crm-card h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    transition: .3s;
}

/* TEXT */
.industry-crm-card p {
    font-size: 13px;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* BUTTON */
.crm-read-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #0D6CB5;
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    text-decoration: none;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

/* button shine animation */
.crm-read-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: .5s;
}

/* HOVER EFFECT */
.industry-crm-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* border glow */
.industry-crm-card:hover::before {
    opacity: 1;
}

/* image zoom */
.industry-crm-card:hover img {
    transform: scale(1.08);
}

/* title color change */
.industry-crm-card:hover h3 {
    color: #00c3ff;
}

/* button hover */
.crm-read-btn:hover {
    background: #00c3ff;
}

.crm-read-btn:hover::before {
    left: 100%;
}

/* RESPONSIVE */

@media (max-width:1400px) {
    .industry-crm-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:1100px) {
    .industry-crm-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:768px) {
    .industry-crm-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-crm-title {
        font-size: 26px;
    }
}

@media (max-width:480px) {
    .industry-crm-grid {
        grid-template-columns: 1fr;
    }
}

/* industry-crm-section end */





/* testimonials-section start */
.testimonial-section {
    background: #0f1b2d;
    padding: 120px 20px 80px;
    overflow: visible;
}


/* Wrapper */
.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Slider */
.testimonial-slider {
    overflow: hidden;
    padding-top: 60px;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
}

/* CARD DARK STYLE */
.testimonial-card {
    background: #1b263b;
    /* dark card */
    border-radius: 20px;
    padding: 70px 25px 40px;
    position: relative;
    flex: 0 0 25%;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    transition: all 0.35s ease;
}

/* Hover effect */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

/* TOP AREA */
.testimonial-top {
    position: absolute;
    top: -50px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* CLIENT IMAGE */
.client-img {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    background: #111827;
}

.client-img img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* QUOTE ICON */
.quote-icon {
    position: absolute;
    bottom: -12px;
    left: 30px;

    width: 38px;
    height: 38px;
    background: #6c63ff;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    z-index: 3;
}

/* GLOW EFFECT */
.quote-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(108, 99, 255, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 1.8s infinite ease-out;
}

/* Glow animation */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* STARS */
.stars {
    color: #6c63ff;
    font-size: 15px;
    margin-top: 55px;
}

/* TEXT */
.testimonial-card p {
    color: #cbd5e1;
    /* light gray */
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-top: 20px;
}

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #ffffff;
    /* white */
}

.testimonial-card span {
    font-size: 13px;
    color: #9ca3af;
}

/* TABLET */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-slider {
        padding-top: 50px;
    }
}

/* testimonials-section end */

/* blog-section start */
.blog-section {
    padding: 100px 20px;
    background: #05080f;
    color: #fff;
}

/* CONTAINER */
.blog-container {
    max-width: 1200px;
    margin: auto;
}

/* WRAPPER */
.blog-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* IMAGE */
.blog-image {
    flex: 1;
}

.blog-image {
    overflow: hidden; 
    border-radius: 16px;
}

.blog-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.blog-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

/* CONTENT */
.blog-content {
    flex: 1;
}

/* TAG */
.blog-tag {
    display: inline-block;
    background: #00c3ff20;
    border: 1px solid #00c3ff;
    color: #00c3ff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* TITLE */
.blog-title {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* DESCRIPTION */
.blog-description {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 40px;
}

/* TIMELINE */
.blog-timeline {
    position: relative;
    padding-left: 40px;
}

/* Vertical Line */
.blog-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #00c3ff40;
}

/* STEP */
.blog-step {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
}

/* NUMBER */
.blog-number {
    width: 100px;
    height: 50px;
    border-radius: 50%;
    background: #070066;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
}

/* STEP CONTENT */
.blog-step-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.blog-step-content p {
    font-size: 14px;
    color: #ffffff;
}

/* RESPONSIVE */
@media(max-width:992px) {

    .blog-wrapper {
        flex-direction: column;
    }

    .blog-title {
        font-size: 26px;
    }

}

/* blog-section end */

/* inner-blog-section start */
.inner-blog-section {
    padding: 80px 20px;
    background: #284354;
}

.inner-blog-container {
    max-width: 1200px;
    margin: auto;
}

.inner-blog-section-title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 50px;
    color: #fff;
}

/* BLOG CARDS GRID */
.inner-blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 30px;
}

/* CARD STYLE */
.inner-blog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ffffff1f;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    background: #1f2b38;
}

.inner-blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* IMAGE */
.inner-blog-image {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.inner-blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.inner-blog-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* CONTENT */
.inner-blog-content {
    padding: 20px;
}

.inner-blog-tag {
    display: inline-block;
    background: #ff9f43;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.inner-blog-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.inner-blog-content p {
    height: 60px;
    font-size: 14px;
    height: auto;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON */
.inner-read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.inner-read-more:hover {
    background: #ff3c00;
}

/* VIEW MORE BUTTON */
.inner-blog-viewmore {
    text-align: center;
    margin-top: 50px;
}

.view-more-blog-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.view-more-blog-btn:hover {
    background: #ff3c00;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:1200px) {
    .inner-blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .inner-blog-cards {
        grid-template-columns: 1fr;
    }
}

/* inner-blog-section end */


/* inner-content-blog start */
.inner-content-blog {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: #1e1e1e;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Hover effect: lift and lighten background slightly */
.inner-content-blog:hover {
    transform: translateY(-5px);
    background-color: #2a2a2a;
    /* Slightly lighter on hover */
}

.inner-content-blog div[data-aos] {
    margin-bottom: 50px;
    transition: transform 0.3s ease-in-out;
}

.inner-content-blog div[data-aos]:hover {
    transform: translateY(-5px);
}

.inner-content-blog .inner-blog-title {
    font-size: 32px;
    color: #feffff;
    margin-bottom: 30px;
}

.inner-content-blog h2 {
    font-size: 24px;
    color: #0077ff;
    font-weight: 700;
}

.inner-content-blog h3 {
    color: #0077ff;
    font-weight: 600;
    font-size: 20px;
}

.inner-content-blog p,
.inner-content-blog ul li {
    font-size: 14px;
    margin-bottom: 15px;
    color: #fff;
}

.inner-content-blog ul {
    padding-left: 20px;
    list-style-type: disc;
}

.inner-content-blog a {
    color: #569326;
    text-decoration: none;
    transition: color 0.3s;
}

.inner-content-blog a:hover {
    text-decoration: underline;
}

.automation-list {
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
}

.automation-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between icon and text */
    color: #e0e0e0;
}

.automation-list li i {
    color: #569326;
    /* Icon color */
    font-size: 18px;
}

.conclusion-section {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    /* subtle gradient */
    padding: 30px 25px;
    border-left: 5px solid #E97E1F;
    /* accent border */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in-out;
    margin-bottom: 50px;
}

.conclusion-section h2 {
    color: #E97E1F;
    margin-bottom: 20px;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conclusion-section p {
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.conclusion-section:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #222222, #333333);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.results-highlight li i {
    color: #569326;
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 992px) {

    .inner-content-blog {
        width: 95%;
        padding: 30px 20px;
    }

    .inner-content-blog .inner-blog-title {
        font-size: 28px;
    }

    .inner-content-blog h2 {
        font-size: 22px;
    }

    .inner-content-blog h3 {
        font-size: 18px;
    }

    .inner-content-blog p,
    .inner-content-blog ul li {
        font-size: 14px;
        line-height: 1.6;
    }

    .conclusion-section {
        padding: 25px 20px;
    }

    .conclusion-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .inner-content-blog {
        width: 95%;
        margin: 25px auto;
        padding: 25px 15px;
        border-radius: 8px;
    }

    .inner-content-blog .inner-blog-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .inner-content-blog h2 {
        font-size: 18px;
    }

    .inner-content-blog h3 {
        font-size: 16px;
    }

    .inner-content-blog p,
    .inner-content-blog ul li {
        font-size: 14px;
        line-height: 1.7;
    }

    .inner-content-blog div[data-aos] {
        margin-bottom: 30px;
    }

    .inner-content-blog ul {
        padding-left: 15px;
    }

    /* automation list fix */
    .automation-list li {
        align-items: flex-start;
        font-size: 14px;
    }

    .automation-list li i {
        font-size: 14px;
        margin-top: 3px;
    }

    /* conclusion section */
    .conclusion-section {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .conclusion-section h2 {
        font-size: 18px;
    }

    .conclusion-section p {
        font-size: 13px;
    }
}

/* inner-content-blog end */


/* hospitalcrm-intro-section start */
.hospitalcrm-intro-section {
    padding: 80px 20px;
    background: #0b0f14;
    position: relative;
    overflow: hidden;
}

/* subtle background glow */
.hospitalcrm-intro-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 108, 181, 0.25) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    filter: blur(80px);
}

.hospitalcrm-intro-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.hospitalcrm-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.hospitalcrm-intro-content {
    flex: 1;
}

.hospitalcrm-small-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #4da3ff;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hospitalcrm-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.hospitalcrm-intro-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #b8c1cc;
    margin-bottom: 15px;
}

/* RIGHT IMAGE */
.hospitalcrm-intro-image {
    flex: 1;
}

.hospitalcrm-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform .4s ease;
}

.hospitalcrm-intro-image img:hover {
    transform: scale(1.03);
}

/* Responsive */
@media(max-width:900px) {

    .hospitalcrm-intro-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hospitalcrm-title {
        font-size: 28px;
    }

}

/* hospitalcrm-intro-section end */

/* hospitalcrm-features-section start */
.hospitalcrm-features-section {
    padding: 90px 20px;
    background: #0b0f14;
    position: relative;
    overflow: hidden;
}

/* glow background */
.hospitalcrm-features-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 108, 181, 0.25)0%, transparent 70%);
    top: -200px;
    right: -200px;
    filter: blur(120px);
}

.hospitalcrm-features-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* TITLE */
.hospitalcrm-section-title {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.hospitalcrm-section-title h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hospitalcrm-section-title p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
}

/* FEATURES GRID */
.hospitalcrm-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* CARD */
.hospitalcrm-feature-card {
    background: #121821;
    padding: 30px;
    border-radius: 12px;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hospitalcrm-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: #16202c;
}

.hospitalcrm-feature-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.hospitalcrm-feature-card p {
    color: #ffffff;
    line-height: 1.7;
    font-size: 14px;
}

/* WHY SECTION */
.hospitalcrm-why-section {
    position: relative;
    max-width: 850px;
    margin: 0 auto 80px;
    padding: 40px 45px;
    border-radius: 14px;

    background: #121821;
    border: 1px solid rgba(255, 255, 255, 0.05);

    text-align: center;

    transition: all 0.4s ease;
    overflow: hidden;
}

/* background glow */
.hospitalcrm-why-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(13, 108, 181, 0.35) 0%,
            transparent 70%);
    top: -150px;
    left: -150px;
    filter: blur(90px);
    opacity: 0.5;
}

/* hover effect */
.hospitalcrm-why-section:hover {
    transform: translateY(-6px);
    background: #16202c;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* heading */
.hospitalcrm-why-section h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 28px;
}

/* paragraph */
.hospitalcrm-why-section p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 14px;
}

/* responsive */
@media(max-width:768px) {

    .hospitalcrm-why-section {
        padding: 30px 25px;
    }

    .hospitalcrm-why-section h2 {
        font-size: 24px;
    }

}

/* BENEFITS */
.hospitalcrm-benefits-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.hospitalcrm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.hospitalcrm-benefit-card {
    background: #121821;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: .4s;
}

.hospitalcrm-benefit-card:hover {
    background: #16202c;
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.hospitalcrm-benefit-card h4 {
    height: 50px;
    font-size: 18px;
    color: #a2cdff;
    margin-bottom: 10px;
}

.hospitalcrm-benefit-card p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:900px) {

    .hospitalcrm-features-grid {
        grid-template-columns: 1fr;
    }

    .hospitalcrm-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:500px) {

    .hospitalcrm-benefits-grid {
        grid-template-columns: 1fr;
    }

    .hospitalcrm-section-title h2 {
        font-size: 26px;
    }

}

/* hospitalcrm-features-section end */

/* contact-section start */
.contact-section {
    padding: 90px 6%;
    background: #0f172a;
}

.contact-container {
    display: flex;
    gap: 40px;
}

/* LEFT SIDE */

.contact-info {
    width: 50%;
}

.contact-title {
    background: #1e293b;
    color: white;
    padding: 16px;
    text-align: center;
    margin-bottom: 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-box {
    background: #111827;
    padding: 30px;
    text-align: center;
    border: 1px solid #1f2937;
    transition: .4s;
}

.contact-box:hover {
    transform: translateY(-6px);
    border-color: #3b82f6;
}

.contact-box i {
    font-size: 28px;
    color: #ffffff !important;
    margin-bottom: 12px;
}

.contact-box h3 {
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-box p {
    color: #ffffff;
    font-size: 14px;
}


/* FORM */

.contact-form-wrapper {
    width: 50%;
    background: #111827;
    padding: 30px;
    border: 1px solid #1f2937;
}

.form-title {
    background: #1e293b;
    color: white;
    padding: 16px;
    text-align: center;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #1f2937;
    background: #0f172a;
    color: white;
    margin-bottom: 15px;
    outline: none;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.form-row {
    display: flex;
    gap: 15px;
}

label {
    display: inline-block;
    color: #fff;
}

.captcha-text {
    color: #9ca3af;
    margin-bottom: 15px;
}

.contact-form button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    background: #2563eb;
}



.captcha-box {
    background: #0f172a;
    border: 1px solid #1f2937;
    padding: 12px;
    margin-bottom: 10px;
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
}

/* RESPONSIVE */

@media(max-width:900px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


/* Popup Modal Styles */
.form-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.9);
}

.form-popup-content {
    background-color: #1e293b;
    margin: 12% auto;
    padding: 30px;
    border: 2px solid #3b82f6;
    width: 90%;
    max-width: 400px;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: popupShow 0.4s ease-out;
}

.form-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #3b82f6;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.form-popup-close:hover {
    color: #60a5fa;
}

/* Icon */
.popup-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

/* Title */
#form-popup-title {
    margin: 0;
    font-size: 22px;
    margin-bottom: 10px;
}

/* Message */
#form-popup-message {
    font-size: 16px;
    color: #e2e8f0;
}

/* Animation */
@keyframes popupShow {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media(max-width:450px) {
    .form-popup-content {
        padding: 20px;
    }

    .popup-icon {
        font-size: 40px;
    }

    #form-popup-title {
        font-size: 20px;
    }
}

/* contact-section end */


/* full-map-section start */
.full-map-section {
    width: 100%;
    height: 400px;
    /* adjust height as needed */
    overflow: hidden;
    position: relative;
}

.full-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* full-map-section end */



/* star-crm-section start */
.star-crm-section {
    background-color: #121212;
    color: #f5f5f5;
    padding: 3rem 1.5rem;
    font-family: 'Inter', sans-serif;
}

/* Container with background and hover effect */
.star-crm-section .container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    /* Background & styling */
    background-color: #1e1e1e;
    /* Slightly lighter than section */
    padding: 2rem;
    /* Space inside the container */
    border-radius: 12px;
    /* Rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Hover transitions */
}

/* Hover Effect */
.star-crm-section .container:hover {
    transform: translateY(-5px);
    /* Slight lift */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    /* Shadow for depth */
}

/* Row container for image + content */
.star-crm-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
    /* Allows stacking on smaller screens */
}

/* Image styling */
.star-crm-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.star-crm-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Content styling */
.star-crm-content {
    flex: 1;
    text-align: left;
    min-width: 280px;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 900px) {
    .star-crm-row {
        flex-direction: column-reverse;
        /* Text first, then image */
    }

    .star-crm-image,
    .star-crm-content {
        width: 100%;
        text-align: center;
    }
}

/* Headings (All h2)*/
.star-crm-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.star-crm-section h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

/* Paragraphs*/
.star-crm-section p {
    text-align: left;
    line-height: 1.8;
    font-size: 14px;
}

/* Button Styles */
.star-crm-section .cta-button {
    text-align: center;
    margin-top: 2rem;
}

.star-crm-section .cta-button {
    text-align: center;
    /* Center button horizontally */
    margin-top: 2rem;
}


.cta-button {
    text-align: center;
    /* Center the button horizontally inside the container */
    margin-top: 2rem;
    /* Space above the button */
}

.cta-button a {
    display: inline-block;
    background-color: #1e40af;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    /* Remove fixed margin-left */
}

.cta-button a:hover {
    background-color: #1e3a8a;
    /* Darker blue */
    transform: translateY(-2px);
    /* Slight lift */
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .star-crm-title,
    .star-crm-section h2 {
        font-size: 2rem;
    }

    .star-crm-section p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    .star-crm-section h2 {
        font-size: 24px;
    }

    .star-crm-section h3 {
        font-size: 20px;
    }

}

@media (max-width: 480px) {
    .star-crm-section h2 {
        font-size: 20px;
    }

    .star-crm-section h3 {
        font-size: 18px;
    }

    .star-crm-section .cta-button a {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* star-crm-section end */


/* cta-section start */
.cta-section {
    padding: 80px 20px;
    background: #0d1b35;
    /* dark background */
    color: #f0f0f0;
}

.cta-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* LEFT SIDE */
.cta-left {
    flex: 1 1 400px;
}

.cta-small {
    font-size: 0.9rem;
    color: #ff9f43;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-left h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-left p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-social span {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    margin-right: 10px;
    background: #1f2b44;
    color: #ffffff;
    border-radius: 50%;
    transition: 0.3s;
}

.cta-social a:hover {
    background: #ff9f43;
    color: #000;
}

.cta-social p a {
    font-size: 0.9rem;
    color: #ff9f43;
    text-decoration: underline;
}

.cta-social p a:hover {
    color: #ff6b00;
}

/* RIGHT SIDE FORM */
.cta-right {
    flex: 1 1 500px;
    background: #1f2b44;
    padding: 30px;
    border-radius: 12px;
}

.cta-right h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.cta-right p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #d0d0d0;
}

.cta-form .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: none;
    outline: none;
    background: #0d1b35;
    color: #f0f0f0;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: #888;
}

.cta-form button.cta-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-form button.cta-btn:hover {
    background: #0056b3;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .cta-container {
        flex-direction: column;
    }

    .cta-right {
        margin-top: 30px;
    }
}

@media(max-width: 768px) {
    .cta-left h2 {
        font-size: 22px;

    }
}


/* CTA Popup Modal */
.cta-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.9);
}

.cta-popup-content {
    background-color: #1f2b44;
    margin: 12% auto;
    padding: 30px;
    border: 2px solid #007bff;
    width: 90%;
    max-width: 400px;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: popupShow 0.4s ease-out;
}

.cta-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #007bff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.cta-popup-close:hover {
    color: #00bfff;
}

.cta-popup-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

#cta-popup-title {
    margin: 0;
    font-size: 22px;
    margin-bottom: 10px;
}

#cta-popup-message {
    font-size: 16px;
    color: #e2e8f0;
}

@keyframes popupShow {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* cta-section end */

/* Footer-start */
.main-footer {
    padding: 60px 0 20px;
    color: #ffffff;
    background: linear-gradient(to right, #264154, #000000);
}



.footer-container {
    width: 1300px;
    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 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 12px;
    display: inline-block;
}

/* Blue underline */
/* .footer-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background: #684DF4;
} */

/* Circle at end */
/* .footer-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 120px;
    width: 10px;
    height: 10px;
    background: #684DF4;
    border-radius: 50%;
} */

.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;
    transition: all 0.3s ease;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* HOVER ON FULL LIST ITEM */
.footer-links li:hover i {
    transform: translateX(5px);
    color: #fff;
    /* your hover color */
}

.footer-links li:hover a {
    color: #fff;
    padding-left: 5px;
}

/* ===== 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;
}

.blog-title-center {
    margin-left: -130px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-row {
    display: grid;
    margin-bottom: 40px;
}


/* ===== FOOTER LINK HOVER EFFECT ===== */
.footer-links li {
    transition: all 0.3s ease;
}

/* ICON */
.footer-links li i {
    transition: transform 0.3s ease, color 0.3s ease;
}

/* TEXT */
.footer-links li a {
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.footer-links li:hover i {
    transform: translateX(6px);
    color: #fff;
}

.footer-links li:hover a {
    color: #fff;
    padding-left: 6px;
}

/* Row 1 - 4 Columns */
.row-1 {
    grid-template-columns: repeat(4, 1fr);
}

/* Row 2 - 2 Columns */
.row-2 {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ===== BLOG GRID (2 PER ROW) ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

.blog-grid li {
    display: block;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 992px) {
    .row-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .row-2 {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .row-1,
    .row-2 {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title-center {
    margin-right: 165px;

}
}


/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background-color: #000000;
    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;
}