@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: #080808;
}





/* 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;
}


#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #020617;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .6s ease, visibility .6s ease;
}

/* box */
.loader-box {
    text-align: center;
}

/* logo */
.loader-logo {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

/* loading bars */
.loading-bars {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* bar */
.loading-bars span {
    width: 8px;
    height: 40px;
    background: #00c3ff;
    border-radius: 6px;
    animation: barAnim 1s infinite ease-in-out;
}

/* delay */
.loading-bars span:nth-child(2) {
    animation-delay: .1s;
}

.loading-bars span:nth-child(3) {
    animation-delay: .2s;
}

.loading-bars span:nth-child(4) {
    animation-delay: .3s;
}

/* animation */
@keyframes barAnim {

    0%,
    100% {
        transform: scaleY(.4);
        opacity: .4;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* hide effect */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}


/* Top Header */
/* Top Header */
.top-header {
    background: #ffffff;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Container */
.top-container {
    max-width: 1400px;
    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: #000000;
    font-size: 15px;
}

/* Divider */
.top-left .divider {
    color: #000000;
}

/* 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%);
    }
}

/* ===============================
   LARGE SCREENS (1200px+)
=================================*/
@media (min-width: 1200px) {
    .top-header {
        padding: 15px 40px;
    }
}

/* ===============================
   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: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .top-left {
        display: none;
        /* hide left info */
    }

    .top-right {
        text-align: center;
        width: 100%;
    }
}

/* ===============================
   MOBILE (Below 768px)
=================================*/
@media (max-width: 767px) {
    .top-header {
        padding: 10px 15px;
        font-size: 13px;
    }

    .top-right {
        font-size: 13px;
    }
}

/* ===============================
   SMALL MOBILE (Below 480px)
=================================*/
@media (max-width: 480px) {
    .top-header {
        padding: 8px 10px;
        font-size: 12px;
    }

    .top-right {
        font-size: 12px;
    }
}

/* ================= NAVBAR ================= */

/* NAVBAR */
.navbar {
    background: black;
    width: 100%;
    position: relative;
    z-index: 999;
    transition: all 0.35s ease;
}

/* Fixed Navbar */
.navbar.fixed {
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

/* 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;
    background: linear-gradient(135deg, #1C5685, #0d3c61);
    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 */
.center-nav .nav-link.active::after {
    width: 100%;
}

.center-nav .nav-link:hover i {
    transform: rotate(-8deg) scale(1.1);
}

/* Active underline */
.center-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Show only for active */
.center-nav .nav-link.active::after {
    width: 60%;
}

/* 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 */


.consult-btn {
    background: #4F8C23;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 6px;

    transition: all 0.3s ease;
}

.consult-btn:hover {
    background: #3a6b1a;
    color: #fff;
}

.btn-consult {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;

    width: 100%;
    text-align: center;

    background: #4F8C23;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.btn-consult i {
    font-size: 16px;
}

.btn-consult:hover {
    background: #3a6b1a;
    color: #fff;
}

/* 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: #fff;
    color: #0d3c61;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 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;
    text-align: center;
}

/* 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);
    margin-top: 10px;
}

/* 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;
    }
}

/* Navbar-End */


/* hero-section start */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* PARTICLE BACKGROUND */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 0;
}

/* BLOB SHAPE */
/* .hero::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: #104067;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.5;
    z-index: 1;
} */

/* CONTAINER */
.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
}

.sub-title {
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h2 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 20px;
}

.hero-content p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

/* BUTTON AREA */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary {
    background: #ff4d3d;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: #e63c2d;
}

.call-info .phone {
    color: #ffffff;
    font-weight: 700;
    display: block;
}

.call-info small {
    color: #666;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 50% 0 50% 0;
}

/* TABLET */
@media (max-width:992px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-buttons {
        justify-content: center;
    }

}

/* MOBILE */
@media (max-width:768px) {

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

}

/* SMALL MOBILE */
@media (max-width:480px) {

    .hero-content h1 {
        font-size: 18px;
    }

}

/* hero-section end */

/* .features-section start */
.features-section {
    padding: 80px 20px 115px 20px;
    background: #000000;
}

.features-container {
    max-width: 900px;
    height: 100%;
    margin: auto;
    text-align: center;
}

.features-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.feature-card {
    position: relative;
    background: #161616;
    padding: 35px;
    /* border-radius:8px; */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
}

/* 1nd card */
.feature-card:nth-child(1) {
    text-align: right;
}

/* Vertical Line */
.feature-card:nth-child(1)::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -80px;
    width: 2px;
    height: 80px;
    background: #161616;
}

/* Dot */
.feature-card:nth-child(1)::after {
    content: "";
    position: absolute;
    left: -3px;
    top: -85px;
    width: 10px;
    height: 10px;
    background: #E73D2E;
    border-radius: 50%;
}


/* 2nd card */
.feature-card:nth-child(2) {
    text-align: left;
}

/* Vertical Line */
.feature-card:nth-child(2)::before {
    content: "";
    position: absolute;
    right: -80px;
    top: 50%;
    width: 80px;
    height: 2px;
    background: #161616;
}

/* Dot */
.feature-card:nth-child(2)::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: 109px;
    width: 10px;
    height: 10px;
    background: #E73D2E;
    border-radius: 50%;
}


/* 3nd card */
.feature-card:nth-child(3) {
    text-align: right;
}

/* Vertical Line */
.feature-card:nth-child(3)::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 50%;
    width: 80px;
    height: 2px;
    background: #161616;
}

/* Dot */
.feature-card:nth-child(3)::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: 109px;
    width: 10px;
    height: 10px;
    background: #E73D2E;
    border-radius: 50%;
}



/* 4nd card */
.feature-card:nth-child(4) {
    text-align: left;
}

/* Vertical Line */
.feature-card:nth-child(4)::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: -80px;
    width: 2px;
    height: 80px;
    background: #161616;
}

/* Dot */
.feature-card:nth-child(4)::after {
    content: "";
    position: absolute;
    right: -3px;
    bottom: -85px;
    width: 10px;
    height: 10px;
    background: #E73D2E;
    border-radius: 50%;
}


/* Icon */
.feature-icon {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Title */
.feature-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.feature-card-text {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

/* Responsive adjustments: ignore child-specific styling and stack cards */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 1 card per row */
        gap: 25px;
    }

    /* Remove all positional pseudo-elements for vertical lines and dots */
    .feature-card::before,
    .feature-card::after {
        content: none !important;
    }

    /* Make all text left-aligned for consistency */
    .feature-card {
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 15px 10px;
    }

    .feature-icon {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .feature-card-title {
        font-size: 14px;
    }

    .feature-card-text {
        font-size: 12px;
    }
}

/* .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: 30px;
    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  */
.about-section {
    position: relative;
    background: #000;
    padding: 150px 20px;
    overflow: hidden;
}

/* wave layer 1 */
.about-section::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;

    background: radial-gradient(circle at 50% 50%, rgba(184, 184, 184, 0.199), transparent 60%);
    animation: waveMove 18s linear infinite;

    z-index: 0;
}

/* wave layer 2 */
.about-section::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;

    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03), transparent 60%);
    animation: waveMoveReverse 22s linear infinite;

    z-index: 0;
}

/* animations */
@keyframes waveMove {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes waveMoveReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* keep content above animation */
.about-wrapper {
    position: relative;
    z-index: 2;

    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* IMAGE AREA */

.about-image-area {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.about-main-image {
    width: 70%;
}

.about-main-image img {
    width: 100%;
    height: 500px;
    background: #fff;
    padding: 10px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
    transition: all 0.4s ease;
}

/* Hover Effect */
.about-main-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* overlay top */

.about-overlay1-image {
    position: absolute;
    top: -120px;
    right: -20px;
    width: 80%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.about-overlay1-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.about-overlay1-image img:hover {
    transform: scale(1.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* overlay bottom */

.about-overlay-image {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 80%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.about-overlay-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* CONTENT AREA */

.about-content-area {
    flex: 1.2;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.about-description {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 25px;
}

/* FEATURES */

.about-features-list {
    text-align: left;
    list-style: none;
    padding: 0;
}

.about-features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #fff;
}

.about-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3d7c12;
}

/* BUTTON */

.about-appointment-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    background: #1C5685;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: .3s;
}

.about-appointment-link:hover {
    background: #012644;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */

@media (max-width: 992px) {

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-image-area {
        min-height: auto;
    }

    .about-main-image {
        width: 60%;
        margin: auto;
    }

    .about-overlay1-image {
        top: -50px;
        right: 0;
        width: 65%;
    }

    .about-overlay-image {
        bottom: -40px;
        right: 0;
        width: 65%;
    }

}

/* Mobile */

@media (max-width:600px) {

    .about-section {
        padding: 100px 20px;
    }

    .about-title {
        font-size: 20px;
    }

    .about-main-image {
        width: 85%;
    }

    .about-overlay1-image,
    .about-overlay-image {
        position: relative;
        width: 90%;
        top: auto;
        bottom: auto;
        right: auto;
        margin: 20px auto;
    }


}

/* about-us-section end  */

/* crm-pune-section start */
.crm-pune-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-pune-section:hover {
    background: linear-gradient(135deg, #1b263b, #0d1b2a, #1b263b);
    transform: translateY(-5px);
}

.crm-pune-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.crm-pune-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.crm-pune-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.crm-pune-features li {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
}

.crm-pune-features li i {
    color: #00c3ff;
    font-size: 1.2em;
}

/* --- Responsive Adjustments --- */

/* Tablets (width <= 992px) */
@media (max-width: 992px) {
    .crm-pune-section {
        padding: 50px 15px;
    }

    .crm-pune-container h2 {
        font-size: 24px;
    }

    .crm-pune-container p,
    .crm-pune-features li {
        font-size: 15px;
    }

    .crm-pune-features li i {
        font-size: 1.1em;
    }
}

/* Mobile (width <= 480px) */
@media (max-width: 480px) {
    .crm-pune-section {
        padding: 40px 10px;
    }

    .crm-pune-container h2 {
        font-size: 20px;
        text-align: center;
    }

    .crm-pune-container p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .crm-pune-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .crm-pune-features li {
        font-size: 14px;
    }

    .crm-pune-features li i {
        font-size: 1em;
    }
}

/* crm-pune-section end */

/* who-we-are-section start */
.who-we-are-section {
    padding: 100px 20px;
    background: #0b0f14;
    position: relative;
    overflow: hidden;
}

/* dotted background */
.who-we-are-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#2b2f36 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.35;
    z-index: 0;
}

/* container */
.who-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Left Content */
.who-content {
    flex: 1;
}

.who-subtitle {
    font-size: 16px;
    color: #00c3ff;
    font-weight: 600;
    margin-bottom: 10px;
}

.who-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.who-title span {
    color: #00c3ff;
}

.who-desc {
    color: #b8c3cf;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    font-weight: 500;
    color: #d5dde6;
}

/* Skills Section */
.skills-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

/* Floating Animation */
@keyframes floatMove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Skill Box */
.skill-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #121821;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s ease;
    border: 1px solid #1e2733;
    animation: floatMove 6s ease-in-out infinite;
}

.skill-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* animation delay */
.skill-box:nth-child(1) {
    animation-delay: 0s;
}

.skill-box:nth-child(2) {
    animation-delay: 1s;
}

.skill-box:nth-child(3) {
    animation-delay: 2s;
}

.skill-box:nth-child(4) {
    animation-delay: 3s;
}

/* Progress Ring */
.progress-ring {
    width: 210px;
    height: 75px;
    border-radius: 50%;
    background: conic-gradient(#00c3ff 0% 90%, #2a3442 90% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-ring span {
    position: absolute;
    background: #0b0f14;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
}

/* Skill Text */
.skill-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.skill-text p {
    color: #a9b4c2;
    font-size: 14px;
}

/* Right Image */
.who-image {
    flex: 1;
}

.who-image img {
    width: 100%;
    border-radius: 20px;
    animation: floatMove 7s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {

    .who-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .expertise-grid {
        text-align: left;
        grid-template-columns: 1fr;
    }

    .skills-section {
        grid-template-columns: 1fr;
    }

    .skill-box {
        flex-direction: column;
        text-align: center;
    }

    .progress-ring {
        width: 70px;
        height: 75px;

    }
}

@media (max-width: 750px) {
    .progress-ring {
        width: 70px;
        height: 75px;

    }

    .who-title {
        font-size: 22px;
    }
}

/* who-we-are-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;
}

/* LEFT IMAGE */
.intro-wcu-left {
    flex: 1;
}

.intro-wcu-left img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;


    filter: brightness(85%) contrast(110%);
}


.intro-wcu-right {
    flex: 1;
}

/* TITLE */
.intro-wcu-title {
    font-size: 32px;
    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: 18px;
    }

    .intro-wcu-subtitle {
        font-size: 16px;
    }
}

/* intro-wcu-section end */


/* whychoose-section start */
.whychoose-section {
    padding: 80px 20px;
    background: #0b0f14;
    position: relative;
}

/* heading */
.whychoose-heading {
    text-align: center;
    margin-bottom: 60px;
}

.whychoose-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #00c3ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.whychoose-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.whychoose-title span {
    color: #00c3ff;
}

/* container */
.whychoose-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* card */
.whychoose-card {
    background: #121821;
    padding: 40px 30px;
    border-radius: 25px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid #1f2a36;

    animation: cardMove 6s ease-in-out infinite;
}

@keyframes cardMove {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-8px) translateX(3px);
    }

    50% {
        transform: translateY(-12px) translateX(0px);
    }

    75% {
        transform: translateY(-8px) translateX(-3px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

.whychoose-card:nth-child(1) {
    animation-delay: 0s;
}

.whychoose-card:nth-child(2) {
    animation-delay: 1.5s;
}

.whychoose-card:nth-child(3) {
    animation-delay: 3s;
}

.whychoose-card:nth-child(4) {
    animation-delay: 0.8s;
}

.whychoose-card:nth-child(5) {
    animation-delay: 2.2s;
}

.whychoose-card:nth-child(6) {
    animation-delay: 4s;
}

.whychoose-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* number */
.whychoose-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 42px;
    font-weight: 700;
    color: #00c3ff;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.whychoose-card:hover .whychoose-number {
    font-size: 60px;
    opacity: 1;
}

/* icon wrapper */
.whychoose-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}

/* outline */
.whychoose-icon-outline {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #00c3ff;
    border-radius: 50%;
    top: -8px;
    left: -8px;
    opacity: 0.6;
}

/* icon */
.whychoose-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1a6dff, #00c3ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* content */
.whychoose-card h3 {
    height: 40px;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
}

.whychoose-card p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* link */
.whychoose-link {
    font-size: 14px;
    text-decoration: none;
    color: #00c3ff;
    font-weight: 600;
    transition: 0.3s;
}

.whychoose-link:hover {
    letter-spacing: 1px;
}

/* responsive */
@media (max-width: 992px) {

    .whychoose-section {
        padding: 60px 15px;
    }

    .whychoose-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .whychoose-title {
        font-size: 30px;
    }

    .whychoose-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {

    .whychoose-section {
        padding: 50px 15px;
    }

    .whychoose-heading {
        margin-bottom: 40px;
    }

    .whychoose-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .whychoose-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .whychoose-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .whychoose-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .whychoose-icon-wrap {
        width: 70px;
        height: 70px;
    }

    .whychoose-icon {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

    .whychoose-number {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }

    .whychoose-card:hover .whychoose-number {
        font-size: 40px;
    }

    .whychoose-card h3 {
        font-size: 18px;
    }

    .whychoose-card p {
        font-size: 13px;
    }
}

/* whychoose-section end */

/* mission-section start */
.mission-section {
    padding: 100px 20px;
    background: #0b0f14;
    position: relative;
    overflow: hidden;
}

/* subtle dotted background */
.mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#1f2a36 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.35;
}

/* container */
.mission-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;

    background: linear-gradient(135deg, #121821, #0f141b);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #1f2a36;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: 0.4s ease;

    position: relative;
    z-index: 2;
}

/* hover animation */
.mission-container:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

/* floating animation */
@keyframes floatMove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Left Image */
.mission-left {
    flex: 1;
}

.mission-left img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;

    animation: floatMove 6s ease-in-out infinite;
}

/* Right Content */
.mission-right {
    flex: 1;
}

.mission-subtitle {
    color: #00c3ff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.mission-right h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.mission-main-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.mission-description {
    text-align: left;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* list */
.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #c9d3df;
}

.mission-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00c3ff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {

    .mission-section {
        padding: 70px 15px;
    }

    .mission-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 25px;
    }

    .mission-right h2 {
        font-size: 30px;
    }

    .mission-main-text {
        font-size: 16px;
    }

    .mission-description {
        font-size: 14px;
    }

    .mission-left img {
        margin-bottom: 10px;
        max-height: 350px;
        object-fit: cover;
    }

    .mission-list {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 576px) {

    .mission-section {
        padding: 50px 12px;
    }

    .mission-container {
        padding: 30px 18px;
        border-radius: 15px;
        gap: 25px;
    }

    .mission-subtitle {
        font-size: 12px;
    }

    .mission-right h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .mission-main-text {
        font-size: 15px;
    }

    .mission-description {
        font-size: 14px;
    }

    .mission-left img {
        max-height: 250px;
        border-radius: 12px;
    }

    .mission-list li {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/* mission-section end */


/* approach-section start */
.approach-section {
    padding: 120px 20px;
    background: #0b0f14;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* dotted background */
.approach-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#1f2a36 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.35;
}

/* container */
.approach-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: #00c3ff;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #ffffff;
}

/* GRID */
.approach-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CURVE SVG */
.curve-svg {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 0;
}

.curve-svg path {
    fill: none;
    stroke: #00c3ff;
    stroke-width: 3;
    stroke-dasharray: 10;
}

/* CARD ITEM */
.approach-item {
    position: relative;
    z-index: 2;
}

/* NUMBER CIRCLE */
.number {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 45px;
    height: 45px;
    background: #3d7c12;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: numberGlow 2s infinite ease-in-out;
    z-index: 3;
}

/* number glow animation */
@keyframes numberGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 195, 255, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 195, 255, 0.8);
        transform: scale(1.15);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 195, 255, 0.4);
        transform: scale(1);
    }
}

/* floating animation */
@keyframes cardFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* CARD DESIGN */
.approach-card {
    background: #121821;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #1f2a36;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: 0.4s ease;

    height: 100%;

    animation: cardFloat 6s ease-in-out infinite;
}

/* different delay for natural movement */
.approach-item:nth-child(1) .approach-card {
    animation-delay: 0s;
}

.approach-item:nth-child(2) .approach-card {
    animation-delay: 1s;
}

.approach-item:nth-child(3) .approach-card {
    animation-delay: 2s;
}

.approach-item:nth-child(4) .approach-card {
    animation-delay: 3s;
}

.approach-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.approach-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #00c3ff;
}

.approach-card p {
    text-align: left;
    font-size: 14px;
    color: #c9d3df;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .approach-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .curve-svg {
        display: none;
    }

}

@media (max-width: 576px) {

    .approach-wrapper {
        grid-template-columns: 1fr;
    }

    .curve-svg {
        display: none;
    }

    .number {
        left: 10px;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

/* approach-section end */


/* counter-section start */
.counter-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a0a0a 0%, #05070a 100%);
    padding: 100px 5%;
    font-family: 'Segoe UI', Roboto, sans-serif;
    min-height: 400px;
    z-index: 0;
}

/* ===========================
   Floating Particle Background
=========================== */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-animation span {
    position: absolute;
    display: block;
    background: rgba(76, 201, 240, 0.3);
    border-radius: 50%;
    animation: floatParticles 20s linear infinite;
}

/* Particle positions, sizes, delays */
.bg-animation span:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-animation span:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 20%;
    left: 25%;
    animation-delay: 3s;
}

.bg-animation span:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 30%;
    left: 50%;
    animation-delay: 6s;
}

.bg-animation span:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 40%;
    left: 70%;
    animation-delay: 2s;
}

.bg-animation span:nth-child(5) {
    width: 7px;
    height: 7px;
    top: 50%;
    left: 80%;
    animation-delay: 5s;
}

.bg-animation span:nth-child(6) {
    width: 9px;
    height: 9px;
    top: 60%;
    left: 15%;
    animation-delay: 4s;
}

.bg-animation span:nth-child(7) {
    width: 5px;
    height: 5px;
    top: 70%;
    left: 40%;
    animation-delay: 1s;
}

.bg-animation span:nth-child(8) {
    width: 11px;
    height: 11px;
    top: 80%;
    left: 60%;
    animation-delay: 7s;
}

.bg-animation span:nth-child(9) {
    width: 6px;
    height: 6px;
    top: 25%;
    left: 75%;
    animation-delay: 6s;
}

.bg-animation span:nth-child(10) {
    width: 8px;
    height: 8px;
    top: 35%;
    left: 10%;
    animation-delay: 8s;
}

/* Particle animation */
@keyframes floatParticles {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translate(50px, -20px) scale(1.1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-30px, 40px) scale(0.9);
        opacity: 0.5;
    }

    75% {
        transform: translate(70px, 20px) scale(1.05);
        opacity: 0.7;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
}

/* ===========================
   Stats Wrapper & Text
=========================== */
.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    /* keep cards above background */
}

.stats-text-content {
    flex: 1;
    min-width: 300px;
}

.stats-text-content h2 {
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.stats-text-content p {
    color: #94a3b8;
    font-size: 14px;
    color: #fff;
    max-width: 450px;
}

/* ===========================
   Stats Grid & Cards
=========================== */
.stats-grid-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-width: 320px;
}

.stat-card-item {
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.15), rgba(0, 0, 0, 0.15));
    backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: none;
    /* remove old border */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(40px);
}

/* Hover effect */
.stat-card-item:hover {
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.25), rgba(0, 0, 0, 0.25));
    transform: translateY(-10px) scale(1.05);
    /* box-shadow: 0 15px 40px rgba(76, 201, 240, 0.4); */
}

/* Number styling */
.count-num {
    font-size: 3rem;
    font-weight: 800;
    color: #00c3ff;
}

/* Plus sign */
.plus-sign {
    font-size: 1.8rem;
    color: #00c3ff;
    margin-left: 4px;
}

/* Label styling */
.stat-label {
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: 12px;
    text-transform: uppercase;
}

/* JS Reveal Animation */
.stat-card-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Mobile Responsiveness
=========================== */
@media (max-width: 768px) {
    .stats-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .stats-text-content h2 {
        font-size: 18px;
    }

    .stats-text-content p {
        margin: 0 auto;
        font-size: 14px;
    }

    .stats-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .count-num {
        font-size: 30px;

    }

    .stat-label {
        font-size: 10px;
    }

}

/* counter-section end */

/* services-section start */
.services-section {
    padding: 80px 20px;
    background: #0a0a0a;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #ffffff;
}

.services-header p {
    text-align: center;
    font-size: 16px;
    color: #bbb;
    margin-bottom: 50px;
}

/* Grid layout for cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card styling */
.service-card {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

    /* Floating animation */
    animation: float 6s ease-in-out infinite;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Floating keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Card Hover Animation */
.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 195, 255, 0.1), rgba(13, 108, 181, 0.1));
    transition: all 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

/* Card content */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00c3ff;
}

.service-card p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Learn More button */
.service-card a {
    display: inline-block;
    /* inline-block to allow left alignment */
    padding: 10px 18px;
    /* button size */
    background: #00c3ff;
    /* button color */
    color: #0a0a0a;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    /* text inside button */
    margin-top: auto;
    /* pushes button to bottom if card grows */
}

.service-card a:hover {
    background: #00ffff;
    color: #111;
    transform: scale(1.05);
}

/* Card Image */
.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
    filter: grayscale(0%) brightness(100%);
    transition: all 0.5s ease;
}

/* Image hover effect */
.service-card:hover .service-card-img {
    filter: grayscale(100%) brightness(40%);
    transform: scale(1.05);
}

/* Responsive text and layout */
@media (max-width: 1024px) {
    .services-header h2 {
        font-size: 32px;
    }

    .services-header p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 28px;
    }

    .services-header p {
        font-size: 14px;
    }

    .service-card h3 {
        font-size: 18px;

    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 24px;
    }

    .services-header p {
        font-size: 13px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .services-card-img {
        height: 150px;
    }
}

/* services-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: 80px 20px;
    background: #111111;
    overflow: hidden;
}

/* WAVE LAYER 1 */
.crmdev-highlight-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: waveMove1 25s linear infinite;
    z-index: 0;
}

/* WAVE LAYER 2 */
.crmdev-highlight-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: waveMove2 30s linear infinite reverse;
    z-index: 0;
}

/* WAVE ANIMATION */
@keyframes waveMove1 {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    50% {
        transform: translateX(-50px) translateY(30px) rotate(10deg);
    }

    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

@keyframes waveMove2 {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    50% {
        transform: translateX(50px) translateY(-20px) rotate(-10deg);
    }

    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

/* Ensure all content is above waves */
.crmdev-highlight-container,
.crmdev-highlight-wrapper,
.crmdev-highlight-content,
.crmdev-highlight-image {
    position: relative;
    z-index: 1;
}

.crmdev-highlight-container {
    max-width: 1200px;
    margin: auto;
}

.crmdev-highlight-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.crmdev-highlight-content {
    flex: 1;
}

/* SMALL TITLE */
.crmdev-small-title {
    display: inline-block;
    padding: 6px 16px;
    background: #4F8C23;
    /* Keep accent green */
    color: #ffffff;
    font-size: 13px;
    border-radius: 30px;
    margin-bottom: 15px;
}

/* MAIN TITLE */
.crmdev-main-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    /* White text */
}

/* DESCRIPTION BOX */
.crmdev-description-box {
    border-left: 4px solid #E07F22;
    /* Orange accent */
    padding-left: 20px;
    margin-bottom: 25px;
}

.crmdev-description-box p {
    color: #ffffff;
    /* Lighter gray text */
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* DIVIDER */
.crmdev-divider {
    width: 100%;
    height: 2px;
    background: #ffffff;
    /* Darker divider */
    margin-bottom: 25px;
}

/* FEATURES GRID */
.crmdev-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* FEATURE ITEM */
.crmdev-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    padding: 16px 18px;
    background: #1a1a1a;
    /* Dark card */
    border-radius: 12px;
    transition: 0.4s ease;
    cursor: pointer;
}

.crmdev-feature-item i {
    font-size: 20px;
    color: #4F8C23;
    /* Green accent */
    transition: 0.4s ease;
}

/* HOVER */
.crmdev-feature-item:hover {
    background: #222222;
    /* Slightly lighter on hover */
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    /* Darker shadow for dark theme */
}

.crmdev-feature-item:hover i {
    color: #E07F22;
    /* Orange on hover */
}

/* CLOSING TEXT */
.crmdev-closing-text {
    margin-top: 25px;
    font-weight: 500;
    color: #cccccc;
    /* Lighter text */
}

/* RIGHT IMAGE */
.crmdev-highlight-image {
    flex: 1;
}

.crmdev-highlight-image img {
    width: 100%;
    border-radius: 16px;
    transition: 0.5s ease;
}

.crmdev-highlight-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    /* Darker shadow */
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .crmdev-highlight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .crmdev-features {
        grid-template-columns: 1fr;
    }

    .crmdev-main-title {
        font-size: 24px;
    }
}

/* crmdev-highlight-section end */


/* crm-dual-section start  */
.crm-dual-section {
    padding: 80px 20px;
    background: #111111;
    /* dark background */
}

.crm-dual-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

/* LEFT + RIGHT BOX */
.crm-dual-left,
.crm-dual-right {
    flex: 1 1 48%;
    background: #1a1a1a;
    /* dark card background */
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* darker shadow */
    transition: all 0.4s ease;
}

/* Hover Effect */
.crm-dual-left:hover,
.crm-dual-right:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

/* Title */
.crm-dual-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    /* white text */
}

/* Paragraph */
.crm-dual-text {
    font-size: 14px;
    line-height: 1.8;
    color: #ffffff;
    /* light gray text */
    margin-bottom: 15px;
}

/* Highlight Text */
.crm-dual-highlight {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
    display: inline-block;
    padding: 6px 14px;
    background: #4F8C23;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: default;
}

/* Hover effect */
.crm-dual-highlight:hover {
    background: #E07F22;
    color: #ffffff;
    transform: scale(1.05);
}

/* Process Steps */
.crm-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Step Box */
.crm-step-box {
    background: #222222;
    /* dark step box */
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #4F8C23;
    /* bright accent */
    transition: all 0.3s ease;
}

.crm-step-box:hover {
    background: #2a2a2a;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
}

.crm-step-box h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    /* highlight heading */
}

.crm-step-box p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .crm-process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .crm-dual-container {
        flex-direction: column;
    }

    .crm-dual-left,
    .crm-dual-right {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .crm-dual-title {
        font-size: 22px;
    }

    .crm-dual-text {
        font-size: 15px;
    }

    .crm-dual-left,
    .crm-dual-right {
        padding: 25px;
    }
}

/* crm-dual-section end */

/* crm-dark-section start */
.crm-dark-section {
    padding: 80px 20px;
    background: #0d0d0d;
    /* dark full section */
    color: #e0e0e0;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Title */
.crm-dark-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

/* Tabs */
.crm-dark-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.crm-dark-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #bbbbbb;
}

.crm-dark-tab i {
    font-size: 2em;
    color: #ffa500;
    /* gold accent */
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.crm-dark-tab.active i,
.crm-dark-tab:hover i {
    color: #4fc23f;
    /* green hover accent */
    transform: scale(1.3);
}

.crm-dark-tab span {
    font-weight: 600;
    color: inherit;
}

/* Divider */
.crm-dark-tab-divider {
    display: inline-block;
    width: 80px;
    height: 3px;
    background-color: #4fc23f;
    border-radius: 2px;
    align-self: center;
}

/* Content Panels */
.crm-dark-content {
    max-width: 1100px;
    margin: auto;
}

.crm-dark-tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.crm-dark-tab-content.active {
    display: block;
}

/* Lists */
.crm-dark-list {
    background-color: #1a1a1acc;
    /* dark semi-transparent card */
    padding: 25px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    list-style: disc inside;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crm-dark-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #dddddd;
}

/* Hover effect */
.crm-dark-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .crm-dark-tab i {
        font-size: 1.8em;
    }

    .crm-dark-tab-divider {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .crm-dark-tab span {
        font-size: 0.9em;
    }

    .crm-dark-list li {
        font-size: 0.9em;
    }
}

/* crm-dark-section end */


/* faq-section start */
.faq-section {
    padding: 80px 20px;
    background: #121212;
}

.faq-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 20px;
    background: #1a1a1a;
    /* Dark background for the container */
    border-radius: 12px;
}


.faq-image img {
    max-width: 100%;
    width: 400px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.faq-image img:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    /* Subtle shadow */
}

.faq-content {
    flex: 1;
    min-width: 300px;
}

.faq-content h2 {
    font-size: 36px;
    text-align: center !important;
    margin-bottom: 30px;
    text-align: left;
    color: #ffffff;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
}

.faq-question {
    width: 100%;
    padding: 15px;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    color: #f0f0f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
    color: #f0f0f0;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* adjust as needed */
    padding: 10px 15px;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* faq-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 */


/* blog-intro-section start */
.blog-intro-section {
    padding: 60px 20px;
    background: #0a0a0a;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.blog-intro-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #111, #0d0d0d, #1a1a1a, #0d0d0d);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    z-index: 0;
}

/* Animate gradient */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Make container above the background */
.blog-intro-container {
    position: relative;
    /* above animated background */
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;

    padding: 40px;
    background: #111;
    /* card background */
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

/* Floating keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hover effect for card */
.blog-intro-container:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    background: #1a1a1a;
}

/* Image */
.blog-intro-image {
    flex: 1 1 45%;
    overflow: hidden;
    border-radius: 16px;
}

.blog-intro-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.4s ease;
    filter: grayscale(0%);
}

.blog-intro-image:hover img {
    transform: scale(1.08);
    filter: grayscale(100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* Content */
.blog-intro-content {
    flex: 1 1 50%;
    color: #ccc;
}

.blog-intro-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-intro-small-title {
    background-color: #00c3ff;
    color: #0a0a0a;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
}

.blog-intro-btn {
    display: inline-block;
    background-color: #00c3ff;
    color: #0a0a0a;
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.blog-intro-btn:hover {
    background-color: #00ffff;
    transform: scale(1.05);
}

/* Heading */
.blog-intro-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00c3ff;
}

.blog-intro-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ccc;
}

/* List with icons */
.blog-list-with-icons {
    list-style: none;
    padding-left: 0;
    color: #ccc;
}

.blog-list-with-icons li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
    cursor: pointer;
    transition: color 0.3s ease;
}

.blog-list-with-icons li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    color: #00c3ff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.blog-list-with-icons li:hover i {
    transform: scale(1.3);
    color: #00ffff;
}

.blog-list-with-icons li:hover {
    color: #00ffff;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-intro-container {
        flex-direction: column;
        gap: 30px;
    }

    .blog-intro-image,
    .blog-intro-content {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .blog-intro-content h2 {
        font-size: 24px;
    }

    .blog-intro-small-title,
    .blog-intro-btn {
        font-size: 0.8em;
        padding: 4px 10px;
    }
}

/* blog-intro-section end */

/* inner-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 */

/* 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 */

/* 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 {
    position: relative;
    /* Needed for pseudo-element positioning */
    overflow: hidden;
    padding: 80px 20px;
    background-color: #000;
    color: #fff;
}

/* Dotted background behind content */
/* animated grid */
.blog-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-color: #0a0a0a;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);

    background-size: 40px 40px;

    animation: gridMove 15s linear infinite;

    z-index: 0;
}

/* keep content above */
.blog-section>* {
    position: relative;
    z-index: 2;
}

/* animation */
@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 80px 80px;
    }
}


.blog-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 60px 15px; */
    font-family: Arial, sans-serif;
}

.header-area {
    text-align: center;
    margin-bottom: 50px;
}

.blue-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* ===============================
   MAIN LAYOUT
================================= */

.main-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ===============================
   IMAGE WRAPPER
================================= */

.img-wrapper,
.small-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    /* important for outside badge */
    margin-bottom: 30px;
    /* space for badge */
}

.img-wrapper img,
.small-img-wrapper img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* ===============================
   BADGE STYLE
================================= */

.badge {
    position: absolute;
    bottom: -15px;
    /* outside image */
    left: 20px;
    background: #1a6dff;
    color: #fff;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ===============================
   FEATURED POST (LEFT)
================================= */

.large-post {
    flex: 1;
}

.large-post h2 {
    font-size: 24px;
    margin: 15px 0 10px;
    line-height: 1.4;
}

.post-meta {
    color: #ffffff;
    font-size: 14px;
    margin-top: 5px;
}

.description {
    color: #ffffff;
    line-height: 1.7;
    margin-top: 10px;
}

/* ===============================
   SIDEBAR POSTS (RIGHT)
================================= */

.side-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.small-post {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.small-img-wrapper {
    flex: 0 0 180px;
}

/* Dark overlay effect */
.small-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

/* Hover Effects */
.small-img-wrapper:hover img {
    transform: scale(1.08);
}

.post-info h3 {
    font-size: 17px;
    margin: 5px 0 0 0;
    line-height: 1.5;
}

/* Know More Button */
.know-more-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    background: #1a6dff;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background: #0f4fd1;
    transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 992px) {
    .main-layout {
        flex-direction: column;
    }

    .side-list {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .blog-container {
        padding: 40px 15px;
    }

    .header-area h1 {
        font-size: 26px;
    }

    .small-post {
        flex-direction: column;
    }

    .small-img-wrapper {
        width: 100%;
        flex: none;
    }

    .badge {
        bottom: -12px;
        left: 15px;
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* blog-section 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: 45px;
    font-size: 20px;
    font-weight: 600;
    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 {
    background-color: #0a0a0a;
    color: white;
    padding: 80px 5%;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Side: Contact Info Card */
.contact-info {
    flex: 1 1 100;
    min-width: 280px;
    background-color: #1e1e1e;
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    background-color: #252525;
    filter: brightness(1.1);
}

.title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 30px;
}

.dot {
    color: #1df27d;
}

.info-block {
    margin-bottom: 25px;
    border-left: 3px solid #1df27d;
    padding-left: 20px;
}

.info-block a {
    color: #fff;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #1df27d;
}

.label {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Right Side: Map */
.map-wrapper {
    flex: 1;
    min-width: 300px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-5px);
    filter: brightness(1.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media(max-width:900px) {
    .contact-container {
        flex-direction: row;
    }

    .title {
        font-size: 40px;
    }

    /* Map takes full width */
    .map-wrapper {
        width: 100%;
        height: 300px; /* You can adjust height if needed */
        margin-top: 30px; /* Add spacing from contact card */
    }
}
/* contact-section end */

/* cta-section start */
.cta-section {
    background: #121B28;
    color: #fff;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    position: relative;
}

.cta-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-left h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.cta-right {
    display: flex;
}

.cta-btn {
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    background: #00c3ff;
    color: #0a0a0a;
    border: none;
}

.cta-btn:hover {
    filter: brightness(1.1);
}

/* Popup Form */
.popup-form-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-form {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    color: #fff;
    position: relative;
}

.popup-form h3 {
    margin-bottom: 20px;
    color: #00c3ff;
}

.popup-form input {
    width: 100%;
    padding: 12px 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    background: #0a0a0a;
    color: #fff;
}

.popup-form input:focus {
    outline: none;
    border: 1px solid #00c3ff;
}

.popup-form button {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: #00c3ff;
    color: #0a0a0a;
    font-weight: 600;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #0a0a0a;
    color: #fff;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    .cta-right {
        justify-content: center;
        margin-top: 20px;
    }

    .cta-left h2 {
        font-size: 22px;
    }

    .cta-left h3 {
        font-size: 16px;
    }
}



/* Success Popup Background */
.form-success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Box */
.form-success-box {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    width: 320px;
    text-align: center;
    position: relative;
    animation: popupScale 0.35s ease;
}

@keyframes popupScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success-box h3 {
    margin-bottom: 10px;
}

.form-success-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* OK Button */
.form-success-box button {
    padding: 8px 20px;
    background: #0D6CB5;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Close Icon */
.form-success-close {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 22px;
    cursor: pointer;
}

/* cta-section end */


/* Footer-start */
.main-footer {
    padding: 60px 0 20px;
    color: #ffffff;
    background-color: #050002;
    /* Nearly black base */

    background-image:
        /* Layer 1: Global darkening for better text contrast */
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.85) 100%),
        /* Layer 2: Muted 3D ridges */
        repeating-linear-gradient(-45deg,
            #000000 0px,
            #000000 6px,
            /* Wide black gap */
            #110003 7px,
            /* Very dark shadow */
            #33010c 18px,
            /* Muted mid-tone red */
            #33000b 24px,
            /* Muted peak (not neon) */
            #33000c 30px,
            /* Muted mid-tone back down */
            #1a0005 41px,
            /* Very dark shadow end */
            #000000 42px
            /* Total ridge width */
        );

    /* Softens the gradient transitions to look more like a photo */
    filter: contrast(110%) brightness(90%);
}



.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;
    }
}


/* ===== 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;
}