@import url('https://fonts.googleapis.com/css2?family=Montserrat: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. VARIABLES, RESET & BASE STYLES
   ========================================================================== */
:root {
    --primary: #112651;
    --accent: #2DB77B;
    --accent-soft: #ecfdf5;
    --bg: #f8fafc;
    --border: #e2e8f0;
    --text: #0f172a;
    --muted: #64748b;
    --radius: 22px;
    
    /* Services grid palette variables */
    --primary-glow: rgba(45, 183, 123, 0.25);
    --navy-deep: #0a192f;
    --navy-light: #172a45;
    --text-muted: #64748b;
    --text-muted-dark: #94a3b8;
    --border-color: #e2e8f0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #0c0c0c;
    background-color: #ffffff;
    overflow-x: hidden;
}

.layout_padding {
    padding: 70px 0;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
}

.heading_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    margin-bottom: 30px;
    font-size: 3.5rem;
    font-weight: bold;
}

.heading_container h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    background: #2DB77B;
    margin: 10px auto 10px;
}

.heading_container h2 span {
    color: #2DB77B;
}

.heading_container p {
    margin-bottom: 30px;
    font-size: larger;
}

.heading_container.heading_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.heading_container.heading_center h3 {
    position: relative;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:hover,
a:focus {
    color: initial;
}

.btn,
.btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ==========================================================================
   2. HEADER & NAVIGATION SECTION
   ========================================================================== */
.header_section {
    padding: 0;
}

.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}

.custom_nav-container {
    padding: 0;
}

.custom_nav-container .navbar-nav {
    margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 20px;
    color: #112651;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.custom_nav-container .navbar-nav .nav-item .nav-link svg {
    width: 17px;
    height: auto;
    fill: #000000;
    margin-bottom: 2px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
    color: #2DB77B;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link svg,
.custom_nav-container .navbar-nav .nav-item.active .nav-link svg {
    fill: #2DB77B;
}

.custom_nav-container .navbar-toggler {
    outline: none;
    padding: 0;
    width: 37px;
    height: 42px;
    transition: all 0.3s ease;
}

.custom_nav-container .navbar-toggler span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #000000;
    margin: 7px 0;
    position: relative;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    top: -10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom_nav-container .navbar-toggler span::after {
    top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
    transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
    transform: rotate(90deg);
    top: 0;
}

/* Dropdown Menu Layout */
li.nav-item ul,
.custom_nav-container .navbar-nav .nav-item .dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    margin-left: 0;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
}

li.nav-item ul li,
.custom_nav-container .navbar-nav .nav-item .dropdown-menu li {
    float: left;
    width: 100%;
    margin: 6px 0;
}

li.nav-item ul li a,
.custom_nav-container .navbar-nav .nav-item .dropdown-menu li a {
    color: #112651;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

li.nav-item ul li a:hover,
li.nav-item ul li a:focus,
.custom_nav-container .navbar-nav .nav-item .dropdown-menu li a:hover,
.custom_nav-container .navbar-nav .nav-item .dropdown-menu li a:focus {
    color: #2DB77B;
}

/* Desktop Hover Transition for Dropdowns */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease-in-out;
        margin-top: 10px;
    }

    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
}

/* Mobile Dropdown Fixes */
@media (max-width: 991px) {
    .custom_nav-container .navbar-nav .nav-item .dropdown-menu,
    li.nav-item ul {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
        margin: 10px auto !important;
        padding: 0 !important;
        background: transparent !important;
        text-align: center !important;
        float: none !important;
    }

    .custom_nav-container .navbar-nav .nav-item .dropdown-menu li,
    li.nav-item ul li {
        float: none !important;
        width: 100% !important;
        text-align: center !important;
        margin: 5px 0 !important;
    }

    .custom_nav-container .navbar-nav .nav-item .dropdown-menu li a,
    li.nav-item ul li a {
        display: block !important;
        text-align: center !important;
        padding: 8px 0 !important;
        width: 100% !important;
    }
}

/* ==========================================================================
   3. HERO & SLIDER SECTION (Carousel Slider & Dashboard Carousel & Zoom Modal)
   ========================================================================== */
.hero_area {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.slider_section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
    padding: 5px 0 120px 0;
}

.slider_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_section #customCarousel1 {
    width: 100%;
    position: unset;
}

.slider_section .detail-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
}

.slider_section .detail-box h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.1;
    margin: 5px 0 0 0;
}

.slider_section .detail-box #g-color {
    color: #2DB77B;
    font-size: inherit;
}

.slider_section .btn-box {
    margin-top: auto;
}

.slider_section .detail-box a {
    display: inline-block;
    padding: 14px 50px;
    background-color: #112651;
    border: 2px solid #2DB77B;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.slider_section .detail-box a:hover {
    background: transparent;
    color: #2DB77B;
}

.slider_section .img-box img {
    width: 100%;
}

.slider_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slider_bg_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top right;
    object-position: top right;
}

.hero-content {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(17, 38, 81, .95), rgba(10, 25, 45, .85));
}

.hero-content::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: #2DB77B;
    opacity: .08;
    border-radius: 50%;
    bottom: -220px;
    left: -180px;
    pointer-events: none;
}

.hero-tag {
    display: inline-block;
    background: #2DB77B;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .8px;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.hero-desc {
    font-size: 1.12rem;
    color: #d8e4ef;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-desc strong {
    color: #2DB77B;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: start;
    gap: 18px;
    margin-bottom: 35px;
}

.hero-features .feature-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    background: #2DB77B;
    color: #fff;
}

.hero-features .feature-item:hover {
    background-color: #112651;
    border-color: 0 15px 35px rgba(45, 183, 123, .35);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(45, 183, 123, .35);
}

.hero-features .feature-item i {
    background: #fff;
    color: #112651;
}

.hero-features .feature-item:hover i {
    background: #fff;
    color: #112651;
}

.hero-features .feature-item span {
    color: #fff;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 18px;
    border-radius: 16px;
    transition: .35s;
}

.feature-item:hover {
    transform: translateY(-6px);
    background: #2DB77B;
}

.feature-item i {
    width: 48px;
    height: 48px;
    background: #2DB77B;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.feature-item:hover i {
    background: #fff;
    color: #112651;
    transform: rotate(8deg);
}

.feature-item span {
    font-weight: 600;
}

.guarantee-box {
    background: rgba(255, 255, 255, .07);
    border-left: 5px solid #2DB77B;
    padding: 22px;
    border-radius: 16px;
    margin-bottom: 35px;
}

.guarantee-box h5 {
    color: #2DB77B;
    font-weight: 700;
    margin-bottom: 12px;
}

.guarantee-box p {
    color: #d9e4ee;
    line-height: 1.7;
    margin: 0;
}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    background: #2DB77B;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: 0.4s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(45, 183, 123, 0.4);
    transform: translateY(-2px);
}

@media(max-width:991px) {
    .hero-content {
        padding: 35px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {
    .hero-content {
        padding: 28px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-btn {
        width: 100%;
    }
}

/* SaaS Image Slider Container & Track */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.image-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.clickable-img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.clickable-img:hover {
    transform: scale(1.01);
}

/* Modal Popup Overlay */
.image-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(5px);
}

/* Modal Image Content */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-in-out;
}

/* Modal Navigation Arrows */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    user-select: none;
    z-index: 10000;
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Animation */
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #bbb;
}

/* Navigation Buttons */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s;
    z-index: 10;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* Dots Indicators */
.dots-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* ==========================================================================
   4. WHY CHOOSE US SECTION (Modern cards)
   ========================================================================== */
.why_section {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.why_section .row {
    margin-top: 15px;
}

.why_section .box {
    text-align: center;
    margin-top: 30px;
    background: #112651;
    padding: 40px 30px;
    border-radius: 20px;
    color: #10b981;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -15px rgba(17, 38, 81, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.why_section .box .img-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(45, 183, 123, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #2DB77B;
}

.why_section .box .img-box svg {
    width: 38px;
    height: 38px;
    fill: #112651;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why_section .box .detail-box {
    width: 100%;
}

.why_section .box .detail-box h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.why_section .box .detail-box p {
    font-size: 0.95rem;
    color: #2DB77B;
    line-height: 1.6;
    margin-bottom: 0;
}

.why_section .box:hover {
    transform: translateY(-8px);
    border-color: #2DB77B;
    box-shadow: 0 20px 40px -15px rgba(45, 183, 123, 0.15), 0 0 0 1px rgba(45, 183, 123, 0.1);
}

.why_section .box:hover .img-box {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 20px rgba(45, 183, 123, 0.3);
}

.why_section .box:hover .img-box svg {
    fill: #ffffff;
}

/* ==========================================================================
   5. ARRIVAL SECTION (OutboundScale Whatsapp CTA)
   ========================================================================== */
.arrival_section {
    background-color: var(--border-color);
    margin-bottom: 40px;
}

.arrival_section .heading_container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #002c3e;
    margin-bottom: 20px;
}

.arrival_section .heading_container h2 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
}

.arrival_section .box {
    padding: 80px 45px;
    position: relative;
    text-align: center;
}

.arrival_section .chat {
    display: inline-block;
    padding: 10px 45px;
    background-color: #2DB77B;
    border: 1px solid #2DB77B;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.arrival_section .chat:hover {
    background-color: transparent;
    border: 2px solid #112651;
    color: #112651;
}

.arrival_section a {
    color: #112651;
    font-weight: 700;
    font-size: 14px;
}

.detail-box h5 {
    font-size: 21px;
    font-weight: 700;
}

/* ==========================================================================
   6. CLIENT / TESTIMONIAL SECTION
   ========================================================================== */
.client_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin-top: 55px;
}

.client_section .box .img_container {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
}

.client_section .box .img_container .img-box {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    margin-right: -1px;
}

.client_section .box .img_container .img-box .img_box-inner {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.client_section .box .img_container .img-box .img_box-inner img {
    width: 100%;
}

.client_section .box .detail-box {
    margin-top: 25px;
}

.client_section .box .detail-box h5 {
    font-size: 20px;
    font-weight: 600;
}

.client_section .box .detail-box h6 {
    font-size: 15px;
    color: #999998;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
    top: 43%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    width: auto;
    margin: 0 5px;
    width: 50px;
    height: 50px;
    color: #ffffff;
    background-color: #112651;
    border-radius: 100%;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
    background-color: #2DB77B;
}

.client_section .carousel-control-prev {
    left: 25%;
}

.client_section .carousel-control-next {
    right: 25%;
}

/* ==========================================================================
   7. PRICING CALCULATOR SECTION (FIXED ALIGNMENT)
   ========================================================================== */

.price {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.calculator-card {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    padding: 45px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(17, 38, 81, 0.08);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.calculator-card h2 {
    text-align: center;
    color: var(--primary);
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.calculator-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 35px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* --- FLEXBOX ALIGNMENT FIX FOR COLUMNS --- */
.calculator-column {
    display: flex;
    flex-direction: column;
}

.calculator-section {
    display: flex;
    flex-direction: column;
    height: 100%; /* Spans full column height */
}

.calculator-column:first-child {
    border-right: 1px solid var(--border);
    padding-right: 35px;
}

.calculator-column:last-child {
    padding-left: 35px;
}

.calc-title {
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-title i {
    color: var(--accent);
}

.calculator-card label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.calculator-card select {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0 15px;
    font-weight: 600;
    color: var(--primary);
    background-color: #ffffff;
}

.calculator-card select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

input[type=range] {
    width: 100%;
    accent-color: var(--accent);
    cursor: pointer;
}

.qty-input-box {
    width: 80px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    background: #ffffff;
}

/* --- LIGHT GREEN PRICE BOX (PUSHES TO BOTTOM TO STAY IN LINE) --- */
.price-box {
    margin-top: auto; /* Pushes price box down automatically */
    padding: 24px;
    background: var(--primary);
    border-radius: 18px;
    text-align: center;
}

.price-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.price-box h2 {
    text-align: center;
    margin: 10px 0 0;
    font-size: 46px;
    font-weight: 800;
    color: var(--accent);
}

.price-box small {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
}

/* --- SUBTOTAL ROW --- */
.subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed var(--border);
}

.subtotal-row strong {
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
}

/* --- DARK TOTAL BOX --- */
.total-box {
    grid-column: 1 / -1;
    margin-top: 15px;
    padding: 35px 20px;
    background: var(--primary);
    border-radius: 18px;
    text-align: center;
    border: none;
}

.total-label {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.total-box h2 {
    margin: 12px 0 6px;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
}

.total-box small {
    color: var(--text-muted-dark);
    font-size: 18px;
    font-weight: 400;
}

.total-note {
    color: var(--text-muted-dark);
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }

    .calculator-column:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 35px;
    }

    .calculator-column:last-child {
        padding-left: 0;
    }

    .price-box {
        margin-top: 25px; /* Resets auto margin on stacked mobile screens */
    }
}

/* ==========================================================================
   8. SERVICES GRID SECTION (Premium cards & ribbon details)
   ========================================================================== */
.card-container.service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

.card {
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 18px;
    width: 100%;
}

.card-header .card-badge {
    position: absolute;
    right: 0;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
}

.card-tag {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.card-content {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.read-more-btn {
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    margin-left: 4px;
}

.card-footer {
    margin-top: 20px;
    padding-top: 18px;
}

.card-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 11px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.card-btn svg {
    transition: transform 0.3s ease;
}

.card-btn:hover svg {
    transform: translateX(4px);
}

/* THEME 1: STANDARD CARD (VIBRANT GREEN THEME) */
.card-standard {
    background: linear-gradient(135deg, #2db77b 0%, #1a9e62 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px -15px rgba(45, 183, 123, 0.3);
}

.card-standard .card-tag {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.card-standard .card-badge {
    background: var(--navy-deep);
    color: #ffffff;
}

.card-standard .card-title {
    color: #ffffff;
}

.card-standard .card-content {
    color: rgba(255, 255, 255, 0.85);
}

.card-standard .read-more-btn {
    color: var(--navy-deep);
}

.card-standard .read-more-btn:hover {
    color: #ffffff;
}

.card-standard .card-footer {
    border-top: 1px solid var(--navy-deep);
}

.card-standard .card-btn {
    background: var(--navy-deep);
    color: #ffffff;
}

.card-standard .card-btn:hover {
    background-color: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(2, 12, 27, 0.3);
}

.card-standard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(45, 183, 123, 0.5);
}

/* THEME 2: RECOMMENDED CARD (DEEP BLUE THEME) */
.card-featured {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px -15px var(--primary);
}

.card-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1.2px;
    background: linear-gradient(to bottom right, var(--primary) 20%, transparent 60%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.card-featured .card-tag {
    background-color: var(--muted);
    color: #ffffff;
    border: 1px solid rgba(45, 183, 123, 0.2);
}

.card-featured .card-badge {
    background: var(--primary);
    color: var(--navy-deep);
}

.card-featured .card-title {
    color: #ffffff;
}

.card-featured .card-content {
    color: var(--text-muted-dark);
}

.card-featured .read-more-btn {
    color: var(--accent);
}

.card-featured .read-more-btn:hover {
    color: #3ae49b;
}

.card-featured .card-footer {
    border-top: 1px solid var(--accent);
}

.card-featured .card-btn {
    background: var(--accent);
    color: var(--navy-deep);
}

.card-featured .card-btn:hover {
    background-color: #3ae49b;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(45, 183, 123, 0.4);
}

.card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(2, 12, 27, 0.45), 0 0 20px var(--primary-glow);
}

.card-featured:hover::before {
    opacity: 1;
}

/* Ribbon badges */
.corner-ribbon {
    position: absolute;
    top: 30px;
    right: -32px;
    width: 150px;
    background: var(--accent);
    color: var(--navy-deep);
    text-align: center;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 0;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 10;
    pointer-events: none;
    transition: background-color 0.3s ease;
}

.card-featured:hover .corner-ribbon {
    background-color: #3ae49b;
}

/* ==========================================================================
   9. TRADITIONAL VS MODERN COMPARISON SECTION
   ========================================================================== */
.comparison-section {
    margin-top: 80px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-column h3 {
    font-size: 1.4rem;
    padding-bottom: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.traditional-heading {
    color: #e53e3e;
    border-bottom: 2px solid #fed7d7;
}

.modern-heading {
    color: #10b981;
    border-bottom: 2px solid #10b981;
}

.comparison-card {
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
}

.pain-card {
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(229, 62, 98, 0.1);
    border-color: #feb2b2;
}

.solution-card {
    background: #ebf8ff;
    border: 1px solid #bee3f8;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(49, 130, 206, 0.15);
    border-color: #10b981;
}

.card-title {
    display: block;
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.pain-card .card-title {
    color: #c53030;
}

.solution-card .card-title {
    color: #10b981;
}

.card-text {
    color: #4a5568;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   10. FOOTER & COPYRIGHT SECTION
   ========================================================================== */
footer {
    background: #d8e4ef;
    padding: 5px 0 0 0 ;
}

.logo_footer {
    margin-bottom: 30px;
}

.information_f p {
    margin-bottom: 1.2rem;
    line-height: 25px;
    font-size: 15px;
}

.widget_menu h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.widget_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_menu ul li {
    float: left;
    width: 100%;
}

.widget_menu ul li a {
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
    float: left;
    width: 100%;
    margin-top: 5px;
}

.widget_menu {
    float: left;
    width: 100%;
}

.cpy_ {
    background: #112651;
    text-align: center;
    padding: 20px 0;
}

.cpy_ p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.cpy_ p a {
    margin: 0;
    color: #2DB77B;
    font-size: 15px;
    font-weight: 400;
}