:root {
    --primary-color: #4a5568;
    --secondary-color: #3182ce;
    --accent-color: #38b2ac;
    --dark-color: #3182ce;
    --light-color: #f7fafc;
    --text-light: #e2e8f0;
    --gui-bg: linear-gradient(135deg, rgba(49, 130, 206, 0.8) 0%, rgba(56, 178, 172, 0.8) 100%);
    --gui-sidebar: #2d3748;
    --gui-active: #3182ce;
   /* --gradient: linear-gradient(135deg, #4a5568 0%, #2d3748 100%); */
    --gradient: linear-gradient(135deg, rgba(49, 130, 206, 0.8) 0%, rgba(56, 178, 172, 0.8) 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    font-size:10px;
}

p {
    font-size: 12px;
}
.services {
    display: flex;
    gap: 20px;

}
/* ===========================================
   NAVBAR MOBILE MENU FIX
   =========================================== */

/* Base Navbar Styles */
.navbar {
    background: #eee !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    padding: 10px 0 !important; 
    border-bottom: 3px solid #3182ce;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1030 !important;
    margin: 0 !important;
}


/* Brand - Always Visible */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
    display: flex !important;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    order: 1;
    z-index: 1031;
}

/* Base Logo Styling */
.navbar-brand img {
    height: 50px;
    width: auto;
    /* margin-right: 10px; - Removed as requested */
    display: block !important;
    
    /* Bold Enhancement Filters */
    filter: 
        contrast(1.3) 
        brightness(1.1) 
        saturate(1.2) 
        drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
    
    /* Smooth Transitions */
    transition: all 0.3s ease;
    
    /* Positioning */
    vertical-align: middle;
    object-fit: contain;
}

/* Desktop Navigation - Horizontal Layout */
@media (min-width: 768px) {
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
        justify-content: flex-end;
        order: 2;
    }
    
    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        list-style: none;
        font-size: 14px;
        margin: 0;
        padding: 0;
        align-items: center;
    }
    
    .nav-item {
        display: flex;
    }
    
    .nav-link {
        font-weight: 500;
        color: rgba(var(--bs-link-color-rgb), 0.9) !important;

        transition: all 0.3s ease;
        position: relative;
        padding: 0.7rem 1rem !important;
        border-radius: 8px;
        margin: 0 2px;
        text-decoration: none;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: white !important;
        background: #3182ce;
        transform: translateY(-2px);
        text-decoration: none;
    }
}

/* Image Slider Section */
.image-slider-section {
    padding: 30px 0;
    background: var(--light-color);
}

.image-slider {
    position: relative;
    max-height: 480px; /* Adjust as needed */
    max-width: 768px; /* Adjust as needed */

    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    background-color: #fff;
}

.slider-inner {
    display: flex;
    height: 480px; /* Fixed height for the slider */
    position: relative;
}

.slider-image {
    width: 100%;
    height: 100%;
    display: none;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-image.active {
    display: block;
    opacity: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 5px;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0,0,0,0.8);
}

.slider-nav.prev { left: 15px; }
.slider-nav.next { right: 15px; }

.slider-dots {
    text-align: center;
    padding: 20px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dot.active, .dot:hover {
    background-color: var(--secondary-color);
}
/* Mobile Navigation - Collapsible Menu */
@media (max-width: 767px) {
    /* Show hamburger menu */
    .navbar-toggler {
        padding: 0.25rem 0.5rem !important;
        font-size: 1.25rem !important;
        background-color: transparent !important;
        border: 1px solid rgba(255,255,255,0.3) !important;
        border-radius: 0.25rem !important;
        color: white !important;
        cursor: pointer !important;
        display: block !important;
        order: 3 !important;
        z-index: 1031 !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: 2px solid rgba(255,255,255,0.5) !important;
    }
    
    .navbar-toggler-icon {
        display: inline-block !important;
        width: 1.5em !important;
        height: 1.5em !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: 100% !important;
    }
    
    /* Hide collapsed menu by default */
    .navbar-collapse {
        display: none !important;
        width: 100% !important;
        margin-top: 1rem !important;
        order: 4 !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(74, 85, 104, 0.95) !important;
        border-radius: 0 0 10px 10px !important;
        padding: 15px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
        backdrop-filter: blur(15px) !important;
    }
    
    /* Show menu when toggled */
    .navbar-collapse.show {
        display: block !important;
    }
    
    /* Mobile menu navigation */
    .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .nav-item {
        width: 100% !important;
        margin: 3px 0 !important;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0 !important;
        border-radius: 8px !important;
        width: 100% !important;
        text-align: left !important;
        font-size: 0.95rem !important;
        
        text-decoration: none !important;
        display: block !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: white !important;
        background: rgba(49, 130, 206, 0.8) !important;
        text-decoration: none !important;
        transform: none !important;
    }
    
    .nav-link i {
        margin-right: 8px !important;
        width: 16px !important;
        text-align: center !important;
    }
    
    /* Adjust body margin for mobile */
    body {
        margin-top: 70px !important;
    }
    
    /* Brand adjustments for mobile */
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .navbar-brand img {
        height: 32px !important;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 575px) {
    .navbar {
        padding: 0.5rem 0 !important;
    }
    
    .navbar .container {
        padding: 0 10px !important;
    }
    
    .navbar-brand {
        font-size: 1.4rem !important;
    }
    
    .navbar-brand img {
        height: 30px !important;
        margin-right: 8px !important;
    }
    
    .navbar-toggler {
        font-size: 1.1rem !important;
        padding: 0.2rem 0.4rem !important;
    }
    
    .navbar-collapse {
        padding: 12px !important;
        margin-top: 0.8rem !important;
    }
    
    .nav-link {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    body {
        margin-top: 65px !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0 !important;
    }
    
    .navbar .container {
        padding: 0 8px !important;
    }
    
    .navbar-brand {
        font-size: 1.3rem !important;
    }
    
    .navbar-brand img {
        height: 28px !important;
        margin-right: 6px !important;
    }
    
    .navbar-toggler {
        font-size: 1rem !important;
        padding: 0.15rem 0.3rem !important;
    }
    
    .navbar-collapse {
        padding: 10px !important;
        margin-top: 0.5rem !important;
        border-radius: 0 0 8px 8px !important;
    }
    
    .nav-link {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.85rem !important;
    }
    
    body {
        margin-top: 60px !important;
    }
}

/* ===========================================
   ANIMATION AND INTERACTION FIXES
   =========================================== */

/* Smooth menu animation */
@media (max-width: 767px) {
    .navbar-collapse {
        transition: all 0.3s ease !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }
    
    .navbar-collapse.show {
        max-height: 460px !important;
        overflow: visible !important;
    }
    
    .navbar-nav {
        opacity: 0 !important;
        transform: translateY(-10px) !important;
        transition: all 0.3s ease 0.1s !important;
    }
    
    .navbar-collapse.show .navbar-nav {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden !important;
}

/* ===========================================
   SCROLLED STATE NAVBAR
   =========================================== */

.navbar.scrolled {
   /* background: rgba(74, 85, 104, 0.98) !important; */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    padding: 0.5rem 0 !important;
}

@media (max-width: 767px) {
    .navbar.scrolled {
        padding: 0.4rem 0 !important;
    }
}

@media (max-width: 575px) {
    .navbar.scrolled {
        padding: 0.3rem 0 !important;
    }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

/* Hide desktop elements on mobile */
@media (max-width: 767px) {
    .d-none-mobile {
        display: none !important;
    }
}

/* Show mobile elements only */
@media (min-width: 768px) {
    .d-mobile-only {
        display: none !important;
    }
}

/* Force navbar to stay on top */
.navbar-fixed-top {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
}
/* ===========================================
   CONTAINER LAYOUT FIX
   =========================================== */

/* Reset the problematic container rule */
.container {

    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    /* Remove the problematic margin that was pushing content */
}



/* Hero row layout fix */
.hero .row {
    display: flex !important;
    align-items: center !important;
}

/* Left side content (hero content) */
.hero .col-lg-4 {
    flex: 0 0 40% !important;
    max-width: 40% !important;
    padding: 0 15px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Right side content (slider) */
.hero .col-lg-8 {
    flex: 0 0 15% !important;
    max-width: 55% !important;
    display: flex !important;

}

/* Ensure hero content stays on the left */
.hero-content {
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-content h1 {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    line-height: 1.2 !important;
   
}

.hero-content p {
    font-size: 1.1rem !important;
    opacity: 0.9 !important;
    margin: 0 0 2rem !important;
    line-height: 1.6 !important;
    
}

/* Button container alignment */
.hero .d-flex {
    display: flex !important;
    justify-content: flex-start !important;
    flex-direction: column;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    margin-top: 2rem !important;
}

/* ADD these CSS rules to restore the slider container while keeping compact content */

/* Ensure slider container is visible and properly positioned */
.liquid-slider {
    position: relative !important;
    height: 450px !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    border: 2px solid rgba(0, 212, 255, 0.3) !important;
    background: rgba(0, 0, 0, 0.1) !important; /* Ensure it has a background */
    display: block !important; /* Make sure it's displayed */
    width: 1200px !important;
    max-width: 700px !important; /* Limit maximum width */
    margin: 0 auto !important; /* Center the slider */
}

/* Ensure slides are properly positioned within the container */
.liquid-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0 !important;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: scale(0.9) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Active slide styling */
.liquid-slide.active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 2 !important;
}


/* Ensure slide content is properly styled and shows all elements */
.slide-content {
    text-align: center !important;
    z-index: 10 !important;
    padding: 10px !important;
    max-width: 100% !important;
    font-size: 35px;
    height: 100%;
    width: 100% !important;
    gap:10px;
    opacity: 1 !important;
    transition: opacity 1s ease !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

/* Ensure navigation arrows are visible */
.nav-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 212, 255, 0.9) !important;
    border: none !important;
    color: white !important;
    padding: 15px 18px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    z-index: 100 !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    display: block !important;
}

.nav-arrow.prev { 
    left: 20px !important; 
}

.nav-arrow.next { 
    right: 20px !important; 
}

/* Ensure control dots are visible */
.slider-controls {
    position: absolute !important;
    bottom: 5px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 15px !important;
    z-index: 100 !important;
}

.control-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
    display: block !important;
}

.control-dot.active {
    background: #00d4ff !important;
    border-color: white !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8) !important;
    transform: scale(1.3) !important;
}

.h3, h3 {
        font-size: 1rem;
    }
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1rem;
    }
}
/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */

/* Tablet and below - stack vertically */
@media (max-width: 991px) {
    .hero .row {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .hero .col-lg-4,
    .hero .col-lg-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 30px !important;
    }
    
    .hero-content {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .hero .d-flex {
        justify-content: center !important;
    }
    
   
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .hero .container {
        padding: 0 10px !important;
        gap: 20px !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
    
    .liquid-slider {
        height: 480px !important;
        max-width: 95% !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 250px !important;
        margin: 5px auto !important;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .hero .container {
        padding: 0 8px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
    }
    
}

/* ===========================================
   ADDITIONAL LAYOUT FIXES
   =========================================== */

/* Ensure proper spacing between sections */
.section-padding {
    padding: 20px 0 !important;
}

/* Fix any remaining container issues */
.container-fluid {
    width: 100% !important;
    max-width: none !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 !important;
}

/* Ensure navbar doesn't interfere */
body {
    margin-top: 70px !important;
    padding-top: 0 !important;
}

/* Make sure the hero section positioning is correct */
.hero {
    background-color: #f1f1f1 !important;
   /* background: linear-gradient(135deg, rgba(49, 130, 206, 0.8) 0%, rgba(56, 178, 172, 0.8) 100%) ; */
    padding: 30px 0 30px !important;
    color: var(--dark-color);
    position: relative !important;
    overflow: hidden !important;
    min-height: 20vh !important;
    max-height: fit-content;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* ===========================================
   SPECIFIC SECTION CONTAINER FIXES
   =========================================== */



/* Feature Grid Container */
.feature-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
}


/* ===========================================
   ROW AND COLUMN FIXES
   =========================================== */

/* Row responsive fixes */
.row {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
    gap: 15px 0px;
    width: calc(100% + 30px) !important;
}

@media (max-width: 767px) {
    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
        width: calc(100% + 20px) !important;
    }
    
    [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 480px) {
    .row {
        margin-left: -8px !important;
        margin-right: -8px !important;
        width: calc(100% + 16px) !important;
    }
    
    [class*="col-"] {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

@media (max-width: 375px) {
    .row {
        margin-left: -6px !important;
        margin-right: -6px !important;
        width: calc(100% + 12px) !important;
    }
    
    [class*="col-"] {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

/* ===========================================
   COLUMN SYSTEM RESPONSIVE
   =========================================== */

/* Base column behavior */
[class*="col-"] {
    width: 40% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
}

@media (min-width: 1200px) {
    .row  .options .col-lg-6 {
        width: 60% !important;
    }
    .row  .options .mb-4  {
        margin-bottom: 0.5rem !important;
    }
}
/* Large screens and up */
@media (min-width: 1200px) {
    .col-lg-1 { width: 8.333333% !important; }
    .col-lg-2 { width: 16.666667% !important; }
    .col-lg-3 { width: 25% !important; }
    .col-lg-4 { width: 33.333333% !important; }
    .col-lg-5 { width: 41.666667% !important; }
    .col-lg-6 { width: 50% !important; }
    .col-lg-7 { width: 58.333333% !important; }
    .col-lg-8 { width: 66.666667% !important; }
    .col-lg-9 { width: 75% !important; }
    .col-lg-10 { width: 83.333333% !important; }
    .col-lg-11 { width: 91.666667% !important; }
    .col-lg-12 { width: 100% !important; }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 1199px) {
    .col-md-1 { width: 8.333333% !important; }
    .col-md-2 { width: 16.666667% !important; }
    .col-md-3 { width: 25% !important; }
    .col-md-4 { width: 33.333333% !important; }
    .col-md-5 { width: 41.666667% !important; }
    .col-md-6 { width: 50% !important; }
    .col-md-7 { width: 58.333333% !important; }
    .col-md-8 { width: 66.666667% !important; }
    .col-md-9 { width: 75% !important; }
    .col-md-10 { width: 83.333333% !important; }
    .col-md-11 { width: 91.666667% !important; }
    .col-md-12 { width: 100% !important; }
}

/* Small screens */
@media (min-width: 576px) and (max-width: 767px) {
    .col-sm-1 { width: 8.333333% !important; }
    .col-sm-2 { width: 16.666667% !important; }
    .col-sm-3 { width: 25% !important; }
    .col-sm-4 { width: 33.333333% !important; }
    .col-sm-5 { width: 41.666667% !important; }
    .col-sm-6 { width: 50% !important; }
    .col-sm-7 { width: 58.333333% !important; }
    .col-sm-8 { width: 66.666667% !important; }
    .col-sm-9 { width: 75% !important; }
    .col-sm-10 { width: 83.333333% !important; }
    .col-sm-11 { width: 91.666667% !important; }
    .col-sm-12 { width: 100% !important; }
}

/* Mobile screens - all columns full width */
@media (max-width: 575px) {
    [class*="col-"] {
        width: 100% !important;
    }
}

/* ===========================================
   OVERFLOW AND SCROLL FIXES
   =========================================== */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}



/* Exception for certain elements that need to exceed */
.nav-arrow,
.slider-nav,
.navbar-toggler {
    max-width: none !important;
}


/* ===========================================
   MOBILE SPECIFIC BREAKPOINTS
   =========================================== */

/* Tablet Portrait and below (767px and below) */
@media (max-width: 767px) {
    body {
        margin-top: 70px !important;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-brand img {
        height: 32px;
    }
    
    .navbar-toggler {
        display: block !important;
    }
    
    .navbar-collapse {
        display: none;
        width: 100%;
        margin-top: 1rem;
        order: 4;
        background: rgba(74, 85, 104, 0.95);
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        margin: 3px 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0;
        border-radius: 8px;
        width: 100%;
        text-align: left;
        font-size: 0.95rem;
    
    }
    
    .hero {
        padding: 80px 0 50px;
        min-height: 55vh;
        text-align: center;
    }
    
    .hero .row {
        flex-direction: column;
    }
    
    .hero .col-lg-4,
    .hero .col-lg-9 {
        width: 100%;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    


    .module-title {
        font-size: 1.6em;
    }
    
    .module-description {
        font-size: 0.85em;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    .hero .d-flex {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Mobile Portrait (575px and below) */
@media (max-width: 575px) {
    body {
        margin-top: 65px !important;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        padding: 0 10px;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .navbar-brand img {
        height: 30px;
        margin-right: 8px;
    }
    
    .navbar-toggler {
        font-size: 1.1rem;
        padding: 0.2rem 0.4rem;
    }
    
    .hero {
        padding: 70px 0 40px;
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    
    .module-title {
        font-size: 1.0em;
    }
    
    .module-description {
        font-size: 0.75em;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 160px;
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 5px auto;
    }
    
    .hero .d-flex {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Very Small Mobile (480px and below) */
@media (max-width: 480px) {
    body {
        margin-top: 60px !important;
     
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .navbar .container {
        padding: 0 8px;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-brand img {
        height: 28px;
        margin-right: 6px;
    }
    
    .hero {
        padding: 60px 0 40px;
        min-height: 45vh;
    }
    
    .hero-content {
        padding: 0 8px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    
    .module-title {
        font-size: 1.0em;
    }
    
    .module-description {
        font-size: 0.5em;
    }
    .btn {
        font-size: 0.85rem;
        padding: 10px 18px;
        min-width: 140px;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    body {
        margin-top: 55px !important;
    }
    
    .navbar {
        padding: 0.3rem 0;
    }
    
    .navbar .container {
        padding: 0 5px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 25px;
        margin-right: 5px;
    }
    
    .hero {
        padding: 50px 0 30px;
        min-height: 40vh;
    }
    
    .hero-content {
        padding: 0 5px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        line-height: 1;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 8px 15px;
        min-width: 120px;
    }
}

/* ===========================================
   UTILITY CLASSES FOR MOBILE
   =========================================== */

/* Ensure proper flex behavior */
.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.gap-3 {
    gap: 1rem !important;
}

@media (max-width: 575px) {
    .gap-3 {
        gap: 0.8rem !important;
    }
}

/* Text alignment utilities */
.text-center {
    text-align: center !important;
}

/* Margin utilities */
.me-2 {
    margin-right: 0.5rem !important;
}

.mb-4 {
    margin-bottom: 0.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

/* Hide elements on mobile if needed */
@media (max-width: 767px) {
    .d-none-mobile {
        display: none !important;
    }
}

/* Show elements only on mobile */
@media (min-width: 768px) {
    .d-mobile-only {
        display: none !important;
    }
}



/* Feature Cards */
.feature-card {
    background: white;
    padding: 10px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card:hover::before {
    left: 0;
}

.feature-icon {
    width: 40px;
    height: 35px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
    font-size: 12px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 30px auto;
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.4);
}

.btn-outline-light {
    background-color: #898989;
    border: 2px solid white;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 20px 0;
}

.cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    font-size: 10px !important;
    width: 200px;
    height: 40px;
}
/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 40px;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 2;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.my-4 {
    margin: 10px 0 !important;

}
.text-md-end {
    text-align: right !important;
    padding-left: 50px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .dashboard-content {
        flex-direction: column;
        min-height: 400px;
    }
    
    .dashboard-sidebar {
        width: 100%;
    }
    
    .dashboard-nav {
        display: flex;
        padding: 15px 10px;
        gap: 10px;
        overflow-x: auto;
    }
    
    .nav-item {
        white-space: nowrap;
        padding: 10px 15px;
        border-radius: 8px;
        border-left: none;
        border-bottom: 4px solid transparent;
    }
    
    .nav-item.active {
        border-left: none;
        border-bottom-color: var(--accent-color);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.5s ease;
}

.loading.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Image Animation */
.hero-image {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Feature comparison tables */
.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.comparison-table th {
    background: var(--dark-color);
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
}

.comparison-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #555;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9ff;
}

.feature-check {
    color: #27ae60;
    font-size: 1.2rem;
}

.feature-cross {
    color: #e74c3c;
    font-size: 1.2rem;
}

.feature-partial {
    color: #f39c12;
    font-size: 1.2rem;
}
  /* Standard Pricing Plans */
        .pricing-plans {
            padding: 100px 0;
            background: var(--light-color);
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            margin-bottom: 30px;
            height: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .pricing-card.featured {
            border: 3px solid var(--secondary-color);
            transform: scale(1.05);
        }

        .pricing-header {
            background: var(--gradient);
            color: white;
            padding: 35px 30px;
            text-align: center;
            position: relative;
        }

        .pricing-card.featured .pricing-header {
            background: var(--secondary-color);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            color: var(--secondary-color);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .pricing-price {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .pricing-period {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .pricing-body {
            padding: 40px 30px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 35px;
        }

        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 35px;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 16px;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .btn-primary {
            background: var(--secondary-color);
            border: none;
            padding: 10px 15px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            
        }

        .btn-primary:hover {
            background: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255,107,53,0.4);
        }
/* Advanced Pricing Calculator */
        .pricing-calculator {
            background: var(--gradient);
            padding: 80px 0;
            color: white;
        }

        .calculator-container {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: white;
            font-size: 1.1rem;
        }

        .form-select {
            width: 100%;
            padding: 15px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            background: rgba(255,255,255,0.9);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(255,107,53,0.25);
            outline: none;
        }

        .multi-select {
            position: relative;
        }

        .multi-select-dropdown {
            background: rgba(255,255,255,0.95);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 52px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .multi-select-dropdown:hover {
            border-color: rgba(255,255,255,0.5);
        }

        .multi-select-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            margin-top: 5px;
            z-index: 1000;
            display: none;
            max-height: 250px;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .multi-select-options.show {
            display: block;
        }

        .multi-select-option {
            padding: 15px;
            cursor: pointer;
            transition: background 0.3s ease;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .multi-select-option:hover {
            background: #f8f9fa;
        }

        .multi-select-option:last-child {
            border-bottom: none;
        }

        .multi-select-option input[type="checkbox"] {
            transform: scale(1.3);
        }

        .option-info {
            flex: 1;
        }

        .option-title {
            font-weight: 600;
            color: var(--dark-color);
        }

        .option-description {
            font-size: 0.85rem;
            color: #666;
            margin-top: 3px;
        }

        .option-price {
            font-weight: bold;
            color: var(--secondary-color);
        }

        .price-summary {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            padding: 30px;
            margin-top: 30px;
            text-align: center;
        }

        .total-price {
            font-size: 3.5rem;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 10px;
        }

        .price-breakdown {
            margin-top: 20px;
            text-align: left;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
        }

        .breakdown-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .breakdown-item:last-child {
            border-bottom: none;
            font-weight: bold;
            font-size: 1.1rem;
            color: #ff6b35;
            margin-top: 10px;
            padding-top: 15px;
            border-top: 2px solid rgba(255, 255, 255, 0.3);
        }

/* Currency Converter Styles - Add to styles.css */

/* Currency Converter Bar */
.currency-converter {
    padding: 15px 0;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.currency-select {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 25px;
    padding: 8px 15px;
    font-size: 14px;
    min-width: 120px;
}

.currency-select option {
    background: #333;
    color: white;
}

.currency-info {
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.loading-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .currency-selector {
        flex-direction: column;
        gap: 10px;
    }
}
        
        /* Service Cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-left: 6px solid var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 0 0 0 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            border-left-color: var(--secondary-color);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            padding: 20px 20px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            color: var(--dark-color);
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: #555;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }

        .service-price {
            background: var(--light-color);
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
            border: 2px solid var(--primary-color);
        }

        .price-amount {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .price-period {
            color: #666;
            font-size: 0.9rem;
        }

        /* Service Process */
        .process-section {
            background: var(--light-color);
        }

        .process-step {
            text-align: center;
            margin-bottom: 40px;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
            position: relative;
        }

        .process-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
            color: white;
        }

        .process-step h4 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .process-step p {
            color: #666;
            max-width: 300px;
            margin: 0 auto;
        }

        .tech-specs {
            font-size: 0.95rem;
            
        }

        .spec-card {
            background: white;
            padding: 10px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 10px;
            border-left: 5px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .spec-card:hover {
            transform: translateX(10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .spec-card h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 20px !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .spec-table {
            width: 100%;
            font-size: 10px;;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .spec-table th {
            background: var(--primary-color);
            color: white;
            padding: 12px;
            text-align: left;
            font-weight: 600;
        }

        .spec-table td {
            padding: 12px;
            border-bottom: 1px solid #eee;
            color: #555;
        }

        .spec-table tr:nth-child(even) {
            background: #f8f9ff;
        }

        .spec-list {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            list-style: none;
            padding: 0;
            gap: 10px;
            font-size: 10px !important;
            align-items: center !important;
            justify-content: center !important;
        }

/* ==================== MEDIA QUERIES ==================== */

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 35px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        padding: 45px;
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        padding: 35px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-card::before {
        width: 80px;
        height: 80px;
    }
}

/* Medium-Large Screens (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        padding: 15px;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-card p {
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    
    .service-card::before {
        width: 70px;
        height: 70px;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
}

/* Medium Screens (768px - 991px) - Tablets */
@media (max-width: 991px) and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 25px;
        border-radius: 15px;
        border-left-width: 4px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        padding: 12px;
        font-size: 1.4rem;
        margin-bottom: 18px;
        border-radius: 12px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        margin-bottom: 18px;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-features li {
        padding: 6px 0;
        font-size: 0.9rem;
    }
    
    .service-card::before {
        width: 60px;
        height: 60px;
    }
    
    .service-price {
        padding: 12px;
        margin-top: 15px;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .price-period {
        font-size: 0.85rem;
    }
}

/* Small-Medium Screens (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 25px;
        border-radius: 15px;
        border-left-width: 4px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
        font-size: 1.3rem;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        margin-bottom: 15px;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .service-features li {
        padding: 5px 0;
        font-size: 0.85rem;
        padding-left: 20px;
    }
    
    .service-card::before {
        width: 50px;
        height: 50px;
    }
    
    .service-price {
        padding: 10px;
        margin-top: 12px;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
    
    .price-period {
        font-size: 0.8rem;
    }
}

/* Extra Small Screens (below 576px) - Mobile */
@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
        margin-top: 25px;
    }
    
    .service-card {
        padding: 20px;
        border-radius: 12px;
        border-left-width: 3px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        padding: 8px;
        font-size: 1.2rem;
        margin-bottom: 12px;
        border-radius: 8px;
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.05) rotate(3deg);
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .service-card p {
        margin-bottom: 12px;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .service-features li {
        padding: 4px 0;
        font-size: 0.8rem;
        padding-left: 18px;
    }
    
    .service-features li::before {
        font-size: 0.8rem;
    }
    
    .service-card::before {
        width: 40px;
        height: 40px;
    }
    
    .service-price {
        padding: 8px;
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .price-amount {
        font-size: 1.1rem;
    }
    
    .price-period {
        font-size: 0.75rem;
    }
    
    /* Reduce hover effects on mobile */
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
}

/* Very Small Screens (below 400px) */
@media (max-width: 399px) {
    .services-grid {
        padding: 0 5px;
        gap: 12px;
    }
    
    .service-card {
        padding: 15px;
        border-radius: 10px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        padding: 6px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .service-card p {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .service-features li {
        font-size: 0.75rem;
        padding: 3px 0;
        padding-left: 15px;
    }
    
    .service-card::before {
        width: 30px;
        height: 30px;
    }
    
    .service-price {
        padding: 6px;
        margin-top: 8px;
    }
    
    .price-amount {
        font-size: 1rem;
    }
    
    .price-period {
        font-size: 0.7rem;
    }
}

 /* ===========================================
   STATISTICS CARDS CSS
   =========================================== */

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(74,85,104,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-grid)"/></svg>');
    opacity: 0.3;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

/* Section Title for Stats */
.stats-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.stats-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stats-section .section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Individual Stat Card */
.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    font-size: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.8) 0%, rgba(56, 178, 172, 0.8) 100%);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stat-card:hover::before {
    left: 0;
}

/* Stat Icon */
.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.8) 0%, rgba(56, 178, 172, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

/* Stat Value (Main Number) */
.stat-value {
    font-size: 2.0rem;
    font-weight: 800;
    color: #0dcaf0;
    margin-bottom: 8px;
    line-height: 1;
    display: block;
    position: relative;
}

.stat-value::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.8) 0%, rgba(56, 178, 172, 0.8) 100%);
    border-radius: 2px;
}

/* Stat Title */
.stat-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stat Description */
.stat-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.0;
    margin: 0;
    opacity: 0.8;
}

/* ===========================================
   SPECIFIC STAT CARD VARIATIONS
   =========================================== */

/* Sessions Card */
.stat-card.sessions .stat-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card.sessions .stat-value {
    color: #667eea;
}

.stat-card.sessions .stat-value::after {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Uptime Card */
.stat-card.uptime .stat-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-card.uptime .stat-value {
    color: #f5576c;
}

.stat-card.uptime .stat-value::after {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Latency Card */
.stat-card.latency .stat-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-card.latency .stat-value {
    color: #00f2fe;
}

.stat-card.latency .stat-value::after {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

/* Large Desktop */
@media (min-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1000px;
        margin: 40px auto 0;
    }
    
    .stat-card {
        padding: 15px 20px;
    }
    
    .stat-value {
        font-size: 20px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-card {
        padding: 35px 25px;
    }
    
    .stat-value {
        font-size: 3rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .stat-value {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }
    
    .stat-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .stats-section .section-title h2 {
        font-size: 2rem;
    }
    
    .stats-section .section-title p {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stat-card {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .stat-value {
        font-size: 12px;
    }
    
    .stat-title {
        font-size: 12px;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
}

/* ===========================================
   ANIMATION ENHANCEMENTS
   =========================================== */

/* Counter animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-value {
    animation: countUp 0.8s ease-out;
}

/* Staggered animation for multiple cards */
.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ===========================================
   ACCESSIBILITY & PERFORMANCE
   =========================================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
    .stat-card {
        border: 2px solid #000;
        background: #fff;
    }
    
    .stat-value {
        color: #000;
    }
    
    .stat-title {
        color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .stat-card,
    .stat-icon,
    .stat-value {
        transition: none;
        animation: none;
    }
    
    .stat-card:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .stat-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

        /* Performance Metrics */
        .performance-metrics {
            background: white;
        }

        .metric-card {
            background: var(--gradient);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .metric-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .metric-value {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .metric-label {
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .metric-description {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 10px;
            position: relative;
            z-index: 2;
        }

        .container {
               
                margin: 5px 10px 0px 160px;
                font-size: 12px;
        }

        .main-title {
            text-align: center;
            margin-bottom: 50px;
            color: #00d4ff;
            font-size: 3em;
            font-weight: 700;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
            to { text-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
        }

        .subtitle {
            text-align: center;
            margin-bottom: 60px;
            font-size: 1.3em;
            color: #e2e8f0;
            opacity: 0.9;
        }


/* Ensure navigation arrows are visible */
.nav-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 212, 255, 0.9) !important;
    border: none !important;
    color: white !important;
    padding: 15px 18px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    z-index: 100 !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    display: block !important;
}

.nav-arrow.prev { 
    left: 20px !important; 
}

.nav-arrow.next { 
    right: 20px !important; 
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    
    .nav-arrow.prev { 
        left: 10px !important; 
    }
    
    .nav-arrow.next { 
        right: 10px !important; 
    }
}


/* MINIMAL CHANGES - Add these to your EXISTING styles.css without replacing everything */

/* Only modify these specific rules to make content smaller */

/* ===========================================
   FEATURES GRID RESPONSIVE DESIGN
   =========================================== */

/* Force horizontal layout for features */
.features-grid {
    display: flex !important; /* Change from grid to flex */
    flex-direction: row !important; /* Horizontal layout */
    font-size: 10px;;
    flex-wrap: wrap !important; /* Allow wrapping */
    justify-content: center !important; /* Center the items */
    align-items: stretch !important; /* Equal height items */
    gap: 15px !important;
    margin-bottom: 15px !important;
    width: 100% !important;
    max-width: 1200px !important;
}

/* Style feature items for horizontal layout */
.feature-item {
    background: #2c5aa0;
    padding: 12px 10px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 85px !important;
    flex: 1 !important; /* Equal width items */
    min-width: 140px !important; /* Minimum width for each item */
    max-width: 160px !important; /* Maximum width for each item */
}




.feature-title {
    font-weight: 600 !important;
    margin-bottom: 4px !important;
    color: #ffffff !important;
    font-size: 12px !important;
    display: block !important;
    text-align: center !important;
    line-height: 1.1 !important;
}



.feature-desc {
    font-size: 12px !important;
    color: #cbd5e0 !important;
    line-height: 1.2 !important;
    display: block !important;
    text-align: center !important;
}



/* GUI Features Grid */
        .gui-features {
            padding: 30px 0;
            background: white;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .gui-feature-card {
            background: white;
            padding: 20px 20px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .gui-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            transition: all 0.3s ease;
        }

        .gui-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .gui-feature-card:hover::before {
            left: 0;
        }

        .gui-feature-card .feature-icon {

            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .gui-feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .gui-feature-card h4 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .gui-feature-card p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .mini-feature-list {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .mini-feature-list li {
            padding: 8px 0;
            color: #666;
            font-size: 10px;
            position: relative;
            padding-left: 25px;
        }

        .mini-feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }



/* ===========================================
   LARGE DESKTOP (1400px and up)
   =========================================== */
@media (min-width: 1400px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 1320px;
        margin: 20px auto 0;
    }
    
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        font-size: 25px !important; 
    }
    
    .gui-feature-card h4,
    .feature-card h4 {
        font-size: 1.4rem;
    }
}

/* ===========================================
   DESKTOP (1200px to 1399px)
   =========================================== */
@media (min-width: 1200px) and (max-width: 1399px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1140px;
        margin: 50px auto 0;
    }
    
    .gui-feature-card,
    .feature-card {
        padding: 35px 25px;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* ===========================================
   MEDIUM DESKTOP (992px to 1199px)
   =========================================== */
@media (min-width: 992px) and (max-width: 1199px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 960px;
        margin: 45px auto 0;
    }
    
    .gui-feature-card,
    .feature-card {
        padding: 32px 22px;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .gui-feature-card h4,
    .feature-card h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .mini-feature-list li,
    .feature-list li {
        font-size: 13px;
        padding: 6px 0;
    }
}

/* ===========================================
   TABLET LANDSCAPE (768px to 991px)
   =========================================== */
@media (min-width: 768px) and (max-width: 991px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 720px;
        margin: 40px auto 0;
        padding: 0 20px;
    }
    
    .gui-feature-card,
    .feature-card {
        padding: 30px 20px;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 35px !important;
        margin-bottom: 18px;
    }
    
    .gui-feature-card h4,
    .feature-card h4 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .gui-feature-card p,
    .feature-card p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .mini-feature-list li,
    .feature-list li {
        font-size: 13px;
        padding: 6px 0;
    }
}

/* ===========================================
   TABLET PORTRAIT (576px to 767px)
   =========================================== */
@media (min-width: 576px) and (max-width: 767px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 540px;
        margin: 35px auto 0;
        padding: 0 15px;
    }
    
    .gui-feature-card,
    .feature-card {
        padding: 25px 18px;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .gui-feature-card h4,
    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .gui-feature-card p,
    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .mini-feature-list li,
    .feature-list li {
        font-size: 12px;
        padding: 5px 0;
        padding-left: 20px;
    }
    
    .mini-feature-list li::before,
    .feature-list li::before {
        font-size: 12px;
    }
}

/* ===========================================
   MOBILE LANDSCAPE (481px to 575px)
   =========================================== */
@media (min-width: 481px) and (max-width: 575px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto 0;
        padding: 0 15px;
        max-width: 400px;
    }
    
    .gui-feature-card,
    .feature-card {
        padding: 25px 20px;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .gui-feature-card h4,
    .feature-card h4 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .gui-feature-card p,
    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .mini-feature-list li,
    .feature-list li {
        font-size: 12px;
        padding: 5px 0;
        padding-left: 20px;
    }
}

/* ===========================================
   MOBILE PORTRAIT (320px to 480px)
   =========================================== */
@media (min-width: 320px) and (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 25px auto 0;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .gui-feature-card,
    .feature-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
   
        font-size: 18px;
        margin-bottom: 12px;
        border-radius: 12px;
    }
    
    .gui-feature-card h4,
    .feature-card h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .gui-feature-card p,
    .feature-card p {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .mini-feature-list,
    .feature-list {
        margin-bottom: 0;
    }
    
    .mini-feature-list li,
    .feature-list li {
        font-size: 11px;
        padding: 4px 0;
        padding-left: 18px;
        line-height: 1.4;
    }
    
    .mini-feature-list li::before,
    .feature-list li::before {
        font-size: 10px;
    }
}

/* ===========================================
   VERY SMALL MOBILE (up to 319px)
   =========================================== */
@media (max-width: 319px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 20px auto 0;
        padding: 0 8px;
    }
    
    .gui-feature-card,
    .feature-card {
        padding: 18px 12px;
        border-radius: 10px;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .gui-feature-card h4,
    .feature-card h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .gui-feature-card p,
    .feature-card p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .mini-feature-list li,
    .feature-list li {
        font-size: 10px;
        padding: 3px 0;
        padding-left: 15px;
        line-height: 1.3;
    }
    
    .mini-feature-list li::before,
    .feature-list li::before {
        font-size: 9px;
    }
}

/* ===========================================
   LANDSCAPE ORIENTATION ADJUSTMENTS
   =========================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .feature-grid {
        margin-top: 20px;
    }
    
    .gui-feature-card,
    .feature-card {
        padding: 15px 12px;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .gui-feature-card h4,
    .feature-card h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .gui-feature-card p,
    .feature-card p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .mini-feature-list li,
    .feature-list li {
        font-size: 10px;
        padding: 2px 0;
    }
}

/* ===========================================
   HOVER EFFECTS AND ANIMATIONS
   =========================================== */
@media (hover: hover) and (pointer: fine) {
    .gui-feature-card:hover .feature-icon,
    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
    }
    
    .gui-feature-card:hover,
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    }
}

/* ===========================================
   TOUCH DEVICE OPTIMIZATIONS
   =========================================== */
@media (hover: none) and (pointer: coarse) {
    .gui-feature-card,
    .feature-card {
        transition: all 0.2s ease;
        cursor: pointer;
    }
    
    .gui-feature-card:active,
    .feature-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Ensure touch targets are large enough */
    .mini-feature-list li,
    .feature-list li {
        min-height: 20px;
        display: flex;
        align-items: center;
    }
}

/* ===========================================
   PRINT STYLES
   =========================================== */
@media print {
    .feature-grid {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .gui-feature-card,
    .feature-card {
        break-inside: avoid;
        margin-bottom: 20px !important;
        padding: 15px !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        background: #f0f0f0 !important;
        color: #333 !important;
    }
}

/* ===========================================
   HIGH CONTRAST MODE
   =========================================== */
@media (prefers-contrast: high) {
    .gui-feature-card,
    .feature-card {
        border: 2px solid #000 !important;
        background: #fff !important;
    }
    
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        background: #000 !important;
        color: #fff !important;
    }
    
    .gui-feature-card h4,
    .feature-card h4 {
        color: #000 !important;
    }
}

/* ===========================================
   REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    .gui-feature-card,
    .feature-card,
    .gui-feature-card .feature-icon,
    .feature-card .feature-icon {
        transition: none !important;
    }
    
    .gui-feature-card:hover,
    .feature-card:hover {
        transform: none !important;
    }
}




