 /* Initial transparent navbar */
    .navbar {
        background: transparent !important;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    
    /* Sticky navbar when scrolled */
    .navbar.sticky-top {
        position: fixed !important;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    /* Initial navbar text color (white on hero) */
    .navbar .navbar-brand h2 {
        color: #ffffff !important;
    }
    
    .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    
    /* Sticky navbar text color (blue when white background) */
    .navbar.sticky-top .navbar-brand h2 {
        color: #06a3da !important;
    }
    
    .navbar.sticky-top .navbar-nav .nav-link {
        color: #091e3e !important;
    }
    
    /* Hover and active states */
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #06a3da !important;
    }
    
    /* Adjust hero section padding when navbar is sticky */
    body.sticky-navbar .hero {
        padding-top: 150px;
    }
    
    /* For mobile view */
    @media (max-width: 991.98px) {
        .navbar {
            position: relative;
            background: #ffffff !important;
        }
        
        .navbar .navbar-brand h2 {
            color: #06a3da !important;
        }
        
        .navbar .navbar-nav .nav-link {
            color: #091e3e !important;
        }
        
        .navbar.sticky-top {
            position: relative !important;
            box-shadow: none;
        }
        
        body.sticky-navbar .hero-section {
            padding-top: 130px;
        }
    }

/* ===== HIGH DPI / ZOOM FIX ===== */

/* Initial transparent navbar */
.navbar {
    background: transparent !important;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

/* Sticky navbar when scrolled */
.navbar.sticky-top {
    position: fixed !important;
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Initial navbar text color (white on hero) */
.navbar .navbar-brand h2 {
    color: #ffffff !important;
}

.navbar .navbar-nav .nav-link {
    color: #ffffff !important;
}

/* Sticky navbar text color (blue when white background) */
.navbar.sticky-top .navbar-brand h2 {
    color: #06a3da !important;
}

.navbar.sticky-top .navbar-nav .nav-link {
    color: #091e3e !important;
}

/* Hover and active states */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #06a3da !important;
}

/* Adjust hero section padding when navbar is sticky */
body.sticky-navbar .hero {
    padding-top: 150px;
}

/* ================================
   MOBILE NAVBAR FIX - UPDATED
================================ */

@media (max-width: 991.98px) {
    .navbar {
        position: fixed !important; /* Changed from relative to fixed */
        background: #ffffff !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1030;
        padding: 10px 15px; /* Add padding */
    }
    
    .navbar .navbar-brand h2 {
        color: #06a3da !important;
        font-size: 1.3rem; /* Adjust font size for mobile */
    }
    
    .navbar .navbar-nav .nav-link {
        color: #091e3e !important;
    }
    
    .navbar.sticky-top {
        position: fixed !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Add padding to body to prevent content from hiding under fixed navbar */
    body {
        padding-top: 70px !important;
    }
    
    body.sticky-navbar .hero-section {
        padding-top: 20px; /* Reduced from 130px */
    }
    
    /* Adjust navbar toggler button */
    .navbar-toggler {
        margin-right: 10px;
    }
    
    /* Mobile menu container */
    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Windows 150% scaling fix */
@media (min-resolution: 1.5dppx) {
    .hero-title {
        font-weight: 350 !important;
        letter-spacing: 0.7px;
    }
}

/* FORCE 4 COLUMNS ON DESKTOP (EVEN AT 150% ZOOM) */
.services-main-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
    gap: 40px;
    padding: 0 15px; /* Add padding for small screens */
    max-width: 100%;
    box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1024px) {
    .services-main-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-main-list {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 20px;
    }
}


/* ================================
   STATIC WEBSITE HERO SECTION STYLES
================================= */
.static-hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 0 80px;
    overflow-x: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.static-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.static-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    z-index: 1;
}

.static-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: max(20px, 8%);
    padding-right: max(20px, 5%);
}

.static-content {
    max-width: 800px;
    text-align: left;
    padding: 30px 0;
    animation: staticFadeInLeft 1s ease-out;
    position: relative;
    width: 100%;
    margin-left: 0;
}

.static-left-position {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.static-heading {
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
    width: 100%;
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-size: 2.5rem;
}

.static-heading-first {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    white-space: normal;
    word-wrap: break-word;
}

.static-heading-second {
    color: #06a3da;
    display: block;
    white-space: normal;
    word-wrap: break-word;
}

.static-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: #ffffff;
    max-width: 700px;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: left;
    width: 100%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
}

/* CTA Buttons Container */
.static-cta-group {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0 0;
    flex-wrap: wrap;
    width: 100%;
}

/* Common Button Style */
.static-cta-main,
.static-cta-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 190px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

/* Primary Button */
.static-cta-main {
    background-color: #06a3da;
    color: #ffffff;
    border: 2px solid #06a3da;
}

.static-cta-main:hover {
    background-color: transparent;
    color: #06a3da;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Secondary (Outline) Button */
.static-cta-alt {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.static-cta-alt:hover {
    background-color: #ffffff;
    color: #091e3e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes staticFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   STATIC WEBSITE MODAL STYLES
================================= */
.static-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: staticFadeIn 0.3s ease;
}

.static-modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    position: relative;
    animation: staticSlideUp 0.4s ease;
}

.static-close-modal {
    position: absolute;
    top: 2px;
    right: 15px;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.static-close-modal:hover {
    color: #06a3da;
}

.static-modal-inner {
    display: flex;
    min-height: 550px;
}

/* Left Side - Image */
.static-modal-left {
    flex: 1;
    background: linear-gradient(135deg, #06a3da, #0482b0);
    border-radius: 20px 0 0 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    height: auto;
    min-height: 100%;
}

.static-modal-image {
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.static-modal-left-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.static-modal-left-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Right Side - Form */
.static-modal-right {
    flex: 1;
    padding: 30px 35px;
    background: white;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    height: auto;
    min-height: 100%;
}

.static-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.static-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.static-input,
.static-select,
.static-textarea {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
    width: 100%;
    font-family: inherit;
}

.static-input:focus,
.static-select:focus,
.static-textarea:focus {
    outline: none;
    border-color: #06a3da;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(6, 163, 218, 0.1);
}

.static-select {
    cursor: pointer;
}

.static-textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

/* Captcha Styles */
.static-captcha-group {
    margin-top: 0;
}

.static-captcha-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.static-captcha-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #333;
}

.static-captcha-question {
    background: linear-gradient(135deg, #06a3da, #0482b0);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 1rem;
    display: inline-block;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.static-captcha-input {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    width: 100%;
}

.static-captcha-input:focus {
    outline: none;
    border-color: #06a3da;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(6, 163, 218, 0.1);
}

.static-submit-btn {
    background: linear-gradient(135deg, #06a3da, #0482b0);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.static-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.3);
}

@keyframes staticFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes staticSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .static-cta-group {
        gap: 18px;
    }
    
    .static-cta-main,
    .static-cta-alt {
        padding: 12px 28px;
        min-width: 180px;
    }
    
    .static-modal-inner {
        flex-direction: column;
        min-height: auto;
    }
    
    .static-modal-left {
        border-radius: 20px 20px 0 0;
        padding: 25px;
    }
    
    .static-modal-right {
        border-radius: 0 0 20px 20px;
        padding: 25px;
    }
    
    .static-modal-image {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .static-hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .static-overlay {
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .static-content {
        max-width: 100%;
        padding: 20px 0;
    }
    
    .static-heading {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .static-heading-divider {
        width: 60px;
        margin-bottom: 20px;
    }
    
    .static-text {
        margin-bottom: 25px;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .static-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .static-cta-main,
    .static-cta-alt {
        width: auto;
        min-width: 220px;
        max-width: 100%;
        padding: 12px 28px;
        white-space: nowrap;
    }
    
    .static-modal-left-content h3 {
        font-size: 1.4rem;
    }
    
    .static-modal-left-content p {
        font-size: 0.9rem;
    }
    
    .static-input,
    .static-select,
    .static-textarea {
        padding: 8px 12px;
    }
    
    .static-captcha-question {
        font-size: 0.95rem;
        padding: 6px 12px;
        min-width: 80px;
    }
}

@media (max-width: 576px) {
    .static-hero-section {
        padding: 80px 0 40px;
    }
    
    .static-heading {
        font-size: clamp(1.8rem, 7vw, 2rem);
    }
    
    .static-text {
        font-size: 0.95rem;
    }
    
    .static-cta-main,
    .static-cta-alt {
        min-width: 200px;
        padding: 11px 24px;
        font-size: 0.9rem;
    }
    
    .static-modal-left-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .static-cta-main,
    .static-cta-alt {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* For very wide screens */
@media (min-width: 1600px) {
    .static-container {
        max-width: 1500px;
        padding-left: 6%;
        padding-right: 6%;
    }
    
    .static-content {
        max-width: 900px;
    }
    
    .static-text {
        max-width: 800px;
    }
}


/* What We Do Section - Simplified */
.what-we-do-section {
    padding: 50px 0 50px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-title-main {
    color: #091e3e;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    text-align: left;
    width: 100%;
}

/* .section-title-main::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: translateX(0);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
    border-radius: 2px;
} */

.company-name-subtitle {
    color: #06a6e0;
    margin-bottom: 5px;
    text-align: left;
}

.section-tagline {
    color: #555;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

/* Content Area */
.what-we-do-content {
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    text-align: left;
}

.what-we-do-content p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    text-align: left;
}

.what-we-do-highlight {
    margin: 15px 0;
    text-align: left;
}

.what-we-do-highlight p {
    margin-bottom: 0;
    color: #444;
    text-align: left;
}

/* Image Container */
.what-we-do-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(6, 166, 224, 0.12);
}

.object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(6, 166, 224, 0.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 166, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-container:hover .overlay-icon {
    transform: scale(1);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Items Animation */
.animated-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(6, 166, 224, 0.1);
    border-radius: 50px;
    color: #06a6e0;
    margin-right: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
    text-align: left;
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    background: rgba(6, 166, 224, 0.2);
    transform: translateY(-2px);
}

.feature-icon-animate {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-animate {
    transform: scale(1.2);
}

/* Image Animation */
.image-animate {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.image-animate.animated {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Floating App Icons */
.floating-app-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a6e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    animation: floatIcon 6s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.floating-app-icon:nth-child(1) { --delay: 0; animation-delay: 0s; }
.floating-app-icon:nth-child(2) { --delay: 1; animation-delay: 1s; }
.floating-app-icon:nth-child(3) { --delay: 2; animation-delay: 2s; }
.floating-app-icon:nth-child(4) { --delay: 3; animation-delay: 3s; }

.image-animate.animated .floating-app-icon {
    opacity: 1;
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* Animated Stats */
.stat-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    text-align: left;
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover {
    box-shadow: 0 10px 25px rgba(6, 166, 224, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-weight: 700;
    color: #06a6e0;
    margin-bottom: 5px;
    text-align: left;
}

.stat-label {
    color: #555;
    font-weight: 500;
    text-align: left;
}

/* Content Animation Enhancements */
.what-we-do-content p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.what-we-do-content.animated p {
    opacity: 1;
    transform: translateY(0);
}

.what-we-do-content.animated p:nth-child(1) {
    transition-delay: 0.2s;
}

.what-we-do-content.animated p:nth-child(2) {
    transition-delay: 0.4s;
}

.what-we-do-content.animated .what-we-do-highlight p {
    transition-delay: 0.6s;
}

/* Overlay Icon Animation Enhancement */
.overlay-icon {
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Responsive Adjustments for What We Do */
@media (max-width: 992px) {
    .what-we-do-section {
        padding: 50px 0;
    }
    
    .what-we-do-content {
        margin-bottom: 25px;
        min-height: 300px;
    }
    
    .image-container {
        min-height: 300px;
    }
    
    .section-tagline {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 40px 0;
    }
    
    .what-we-do-content {
        min-height: 280px;
        padding: 20px;
    }
    
    .what-we-do-content p {
        margin-bottom: 12px;
    }
    
    .image-container {
        min-height: 280px;
    }
    
    .section-tagline {
        margin-bottom: 20px;
    }
    
    .animated-features {
        justify-content: flex-start;
    }
    
    .feature-item {
        padding: 6px 12px;
    }
    
    .floating-app-icon {
        width: 30px;
        height: 30px;
    }
}

/* Our Services Section Styles - Using #06a3da for accents and #091e3e for headings */
.services-area {
    padding: 50px 0 50px 0;
    background:  #e6f4ff;
    position: relative;
    overflow: hidden;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.justify-center {
    justify-content: center;
}

.col-full {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Section Header - Using #091e3e for headings and #06a3da for accents */
.section-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #06a3da;
    background: rgba(6, 163, 218, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-heading {
    /* font-size: 42px;
    font-weight: 700; */
    color: #091e3e;
    margin-bottom: 5px !important;
    line-height: 1.2;
}

/* .heading-divider {
    width: 80px;
    height: 4px;
    background: #06a3da;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
} */

.section-subheading {
    /* font-size: 18px; */
    color: #666666;
    line-height: 1.6;
    max-width: 1200px;
    margin: 5px auto 0 !important;
}

/* Services Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Service Block - Using #091e3e for titles and #06a3da for accents */
.service-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 163, 218, 0.05);
}

.service-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.2);
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #06a3da;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-block:hover::before {
    transform: scaleX(1);
}

.block-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.1), rgba(6, 163, 218, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-block:hover .block-icon {
    background: #06a3da;
    transform: scale(1.1) rotate(5deg);
}

.block-icon i {
    font-size: 36px;
    color: #06a3da;
    transition: all 0.3s ease;
}

.service-block:hover .block-icon i {
    color: #ffffff;
}

.block-title {
    font-size: 22px;
    /* font-weight: 600; */
    color: #091e3e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-block:hover .block-title {
    color: #06a3da;
}

.block-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
}

.block-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.block-features li {
    font-size: 15px;
    color: #555555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.block-features li i {
    color: #06a3da;
    margin-right: 10px;
    font-size: 16px;
}

.block-link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #06a3da;
    text-decoration: none;
    transition: all 0.3s ease;
}

.block-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.block-link:hover {
    color: #0482b0;
}

.block-link:hover i {
    transform: translateX(5px);
}

/* Primary Button - Using #06a3da */
.primary-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #06a3da;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    background: #0482b0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.4);
}

.primary-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 20px;
}

/* Scroll Animation Classes */
.scroll-effect {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-effect.animated {
    opacity: 1;
    transform: translateY(0);
}

.heading-divider.scroll-effect.animated {
    opacity: 1;
    transform: scaleX(1);
}

/* Animation Delays */
[data-delay="0.1s"] { transition-delay: 0.1s; }
[data-delay="0.2s"] { transition-delay: 0.2s; }
[data-delay="0.3s"] { transition-delay: 0.3s; }
[data-delay="0.4s"] { transition-delay: 0.4s; }
[data-delay="0.5s"] { transition-delay: 0.5s; }
[data-delay="0.6s"] { transition-delay: 0.6s; }
[data-delay="0.7s"] { transition-delay: 0.7s; }

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .services-area {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-block {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .section-badge {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .section-heading {
        font-size: 30px;
        color: #091e3e;
    }
    
    .section-subheading {
        font-size: 16px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .block-title {
        font-size: 22px;
        color: #091e3e;
    }
    
    .btn-large {
        padding: 15px 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .service-block {
        padding: 25px 20px;
    }
    
    .block-icon {
        width: 70px;
        height: 70px;
    }
    
    .block-icon i {
        font-size: 30px;
    }
    
    .primary-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}


/* Business Management CTA Section with Background Image - Compact Version */
.bms-cta-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.cta-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.bms-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
}

.cta-content {
    color: #ffffff;
    padding-right: 20px;
}

.cta-title {
    font-weight: 700;
    color: #06a3da;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #06a3da 0%, #68a4c4 100%);
    color: white;
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(6, 163, 218, 0.3);
    overflow: hidden;
    position: relative;
    min-width: 220px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(104, 164, 196, 0.4);
    border-color: transparent;
    color: white;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Animated elements for visual interest */
.bms-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(6, 163, 218, 0.1) 50%, transparent 70%);
    animation: shimmer 8s infinite linear;
    pointer-events: none;
    z-index: 3;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design for Compact CTA */
@media (max-width: 992px) {
    .bms-cta-section {
        padding: 50px 0;
    }
    
    .cta-button {
        padding: 15px 35px;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .bms-cta-section {
        padding: 45px 0;
    }
    
    .cta-title {
        margin-bottom: 15px;
    }
    
    .cta-description {
        line-height: 1.6;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .cta-action {
        text-align: center !important;
        margin-top: 0;
    }
    
    .cta-button {
        padding: 14px 30px;
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .bms-cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        margin-bottom: 15px;
    }
    
    .cta-description {
        line-height: 1.6;
    }
    
    .cta-button {
        width: 100%;
        max-width: 220px;
        padding: 12px 25px;
    }
    
    .cta-note {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .bms-cta-section {
        padding: 35px 20px;
    }
}

/* Why Choose Us Grid Section Styles - Using #06a3da for accents and #091e3e for headings */
.choose-grid-area {
    padding: 50px 0 50px 0;
     background:  #e6f4ff;
    position: relative;
    overflow: hidden;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.justify-center {
    justify-content: center;
}

.col-full {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Section Header */
.section-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #06a3da;
    background: rgba(6, 163, 218, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-heading {
    /* font-size: 42px;
    font-weight: 700; */
    color: #091e3e;
    margin-bottom: 5px;
    line-height: 1.2;
}
/* 
.heading-divider {
    width: 80px;
    height: 4px;
    background: #06a3da;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
} */

.section-subheading {
    /* font-size: 18px; */
    color: #666666;
    line-height: 1.6;
    max-width: 1200px;
    margin: 5px auto 0;
}

/* 6 Box Grid Container */
.choose-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Choose Box */
.choose-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 163, 218, 0.05);
    text-align: center;
}

.choose-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.2);
}

.choose-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #06a3da;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.choose-box:hover::before {
    transform: scaleX(1);
}

.box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.1), rgba(6, 163, 218, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.choose-box:hover .box-icon {
    background: #06a3da;
    transform: scale(1.1) rotate(5deg);
}

.box-icon i {
    font-size: 36px;
    color: #06a3da;
    transition: all 0.3s ease;
}

.choose-box:hover .box-icon i {
    color: #ffffff;
}

.box-title {
    font-size: 22px;
    /* font-weight: 600; */
    color: #091e3e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.choose-box:hover .box-title {
    color: #06a3da;
}

.box-desc {
    /* font-size: 16px; */
    line-height: 1.7;
    color: #666666;
    margin-bottom: 0;
}

/* Primary Button */
.primary-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #06a3da;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    background: #0482b0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.4);
}

.primary-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 20px;
}

/* Scroll Animation Classes */
.scroll-effect {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-effect.animated {
    opacity: 1;
    transform: translateY(0);
}

.heading-divider.scroll-effect.animated {
    opacity: 1;
    transform: scaleX(1);
}

/* Animation Delays */
[data-delay="0.1s"] { transition-delay: 0.1s; }
[data-delay="0.2s"] { transition-delay: 0.2s; }
[data-delay="0.3s"] { transition-delay: 0.3s; }
[data-delay="0.4s"] { transition-delay: 0.4s; }
[data-delay="0.5s"] { transition-delay: 0.5s; }
[data-delay="0.6s"] { transition-delay: 0.6s; }
[data-delay="0.7s"] { transition-delay: 0.7s; }

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .choose-grid-area {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .choose-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .box-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section-badge {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .section-heading {
        font-size: 30px;
    }
    
    .section-subheading {
        font-size: 16px;
    }
    
    .choose-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .choose-box {
        padding: 30px 20px;
    }
    
    .box-icon {
        width: 70px;
        height: 70px;
    }
    
    .box-icon i {
        font-size: 30px;
    }
    
    .btn-large {
        padding: 15px 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .choose-box {
        padding: 25px 15px;
    }
    
    .box-title {
        font-size: 18px;
    }
    
    .box-desc {
        font-size: 15px;
    }
    
    .primary-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}


/* Process Timeline Section Styles - New Class Names */
.design-process-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.justify-center {
    justify-content: center;
}

.full-column {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Section Header */
/* .process-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #06a3da;
    background: rgba(6, 163, 218, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
} */

.process-heading {
    /* font-size: 42px;
    font-weight: 700; */
    color: #091e3e;
    margin-bottom: 5px;
    line-height: 1.2;
   
}

/* .process-divider {
    width: 80px;
    height: 4px;
    background: #06a3da;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
} */

.process-description {
    /* font-size: 18px; */
    color: #666666;
    line-height: 1.6;
    max-width: 1200px;
    margin: 5px auto 0;
   
}

/* Journey Container */
.journey-container {
    position: relative;
    margin-top: 60px;
    padding: 20px 0;
}

/* Journey Line */
.journey-line {
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #06a3da 0%, rgba(6, 163, 218, 0.3) 100%);
    border-radius: 2px;
    transform: translateX(-50%);
}

/* Journey Item */
.journey-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.journey-item:last-child {
    margin-bottom: 0;
}

/* Journey Left */
.journey-left {
    width: 120px;
    position: relative;
    flex-shrink: 0;
}

.journey-marker {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-number {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background: #06a3da;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.journey-item:hover .marker-number {
    transform: scale(1.1);
    background: #091e3e;
}

.marker-dot {
    position: absolute;
    top: 50%;
    right: -8px;
    width: 16px;
    height: 16px;
    background: #06a3da;
    border: 3px solid #ffffff;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(6, 163, 218, 0.2);
}

/* Journey Card */
.journey-card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(6, 163, 218, 0.05);
    transition: all 0.3s ease;
    margin-left: 30px;
    position: relative;
}

.journey-card::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border-left: 1px solid rgba(6, 163, 218, 0.05);
    border-bottom: 1px solid rgba(6, 163, 218, 0.05);
    transform: rotate(45deg);
    border-radius: 3px 0 0 0;
}

.journey-item:hover .journey-card {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.1);
    border-color: rgba(6, 163, 218, 0.2);
}

.card-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.1), rgba(6, 163, 218, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.journey-item:hover .card-icon {
    background: #06a3da;
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 25px;
    color: #06a3da;
    transition: all 0.3s ease;
}

.journey-item:hover .card-icon i {
    color: #ffffff;
}

.card-details {
    flex: 1;
}

.card-title {
    font-size: 24px;
    /* font-weight: 600; */
    color: #091e3e;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.journey-item:hover .card-title {
    color: #06a3da;
}

.card-text {
    /* font-size: 16px; */
    line-height: 1.7;
    color: #666666;
    margin-bottom: 15px;
}

.card-points {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.card-points span {
    font-size: 14px;
    color: #555555;
    display: flex;
    align-items: center;
}

.card-points span i {
    color: #06a3da;
    margin-right: 6px;
    font-size: 14px;
}

/* Primary CTA */
.primary-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #06a3da;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-cta:hover {
    background: #0482b0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.4);
}

.primary-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.primary-cta:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 20px;
}

/* Fade Up Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.process-divider.fade-up.animated {
    opacity: 1;
    transform: scaleX(1);
}

/* Animation Delays */
[data-delay="0.1s"] { transition-delay: 0.1s; }
[data-delay="0.2s"] { transition-delay: 0.2s; }
[data-delay="0.3s"] { transition-delay: 0.3s; }
[data-delay="0.4s"] { transition-delay: 0.4s; }
[data-delay="0.5s"] { transition-delay: 0.5s; }
[data-delay="0.6s"] { transition-delay: 0.6s; }
[data-delay="0.7s"] { transition-delay: 0.7s; }

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .design-process-section {
        padding: 60px 0;
    }
    
    .process-heading {
        font-size: 36px;
    }
    
    .journey-line {
        left: 80px;
    }
    
    .journey-left {
        width: 80px;
    }
    
    .marker-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 28px;
    }
    
    .card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .process-badge {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .process-heading {
        font-size: 30px;
    }
    
    .process-description {
        font-size: 16px;
    }
    
    .journey-line {
        left: 40px;
    }
    
    .journey-left {
        width: 40px;
    }
    
    .marker-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .marker-dot {
        right: -10px;
        width: 12px;
        height: 12px;
    }
    
    .journey-card {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        margin-left: 20px;
    }
    
    .journey-card::before {
        left: -10px;
        top: 25px;
        width: 10px;
        height: 10px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-text {
        font-size: 15px;
    }
    
    .card-points {
        gap: 10px;
    }
    
    .card-points span {
        font-size: 13px;
    }
    
    .btn-large {
        padding: 15px 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .journey-card {
        padding: 15px;
    }
    
    .card-points {
        flex-direction: column;
        gap: 8px;
    }
    
    .primary-cta {
        padding: 12px 30px;
        font-size: 16px;
    }
}


/* Industry Services Section - Renamed Classes */
.industry-services-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.industry-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(6, 166, 224, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(13, 110, 253, 0.05) 0%, transparent 40%);
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
} */

/* Section Header */
.section__header {
    text-align: center;
    margin-bottom: 40px;
}

.section__title {
    font-weight: 800;
    margin-bottom: 5px;
    color: #091e3e;
    position: relative;
    display: inline-block;
}
/* 
.section__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #06a6e0, #0d6efd);
    border-radius: 2px;
} */

/* Services Grid */
.services-grid__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 14px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    z-index: 1;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card__icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(6, 166, 224, 0.1), rgba(13, 110, 253, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a6e0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    backface-visibility: hidden;
}

.service-card__title {
    font-weight: 700;
    color: #091e3e;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    backface-visibility: hidden;
}

/* Flip Card Back - Description */
.service-card__description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06a6e0, #0d6efd);
    color: white;
    transform: rotateY(180deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 14px;
    line-height: 1.3;
    text-align: center;
    backface-visibility: hidden;
    z-index: 3;
    font-size: 0.75rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Custom scrollbar for webkit browsers */
.service-card__description::-webkit-scrollbar {
    width: 4px;
}

.service-card__description::-webkit-scrollbar-track {
    background: transparent;
}

.service-card__description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(6, 166, 224, 0.15);
}

.service-card:hover .service-card__description {
    transform: rotateY(0deg);
    opacity: 1;
}

.service-card:hover .service-card__icon,
.service-card:hover .service-card__title {
    transform: rotateY(180deg);
    opacity: 0;
}

.service-card:hover .service-card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Float Animation */
@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.service-card {
    animation: floatCard 4s ease-in-out infinite;
}

.service-card:hover {
    animation-play-state: paused;
}

.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.9s; }
.service-card:nth-child(5) { animation-delay: 1.2s; }
.service-card:nth-child(6) { animation-delay: 1.5s; }
.service-card:nth-child(7) { animation-delay: 1.8s; }
.service-card:nth-child(8) { animation-delay: 2.1s; }
.service-card:nth-child(9) { animation-delay: 2.4s; }
.service-card:nth-child(10) { animation-delay: 2.7s; }
.service-card:nth-child(11) { animation-delay: 3s; }
.service-card:nth-child(12) { animation-delay: 3.3s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .services-grid__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .service-card {
        padding: 25px 15px;
        height: 130px;
    }
    
    .service-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-card__description {
        padding: 12px 10px;
        font-size: 0.7rem;
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    .industry-services-section {
        padding: 50px 0;
    }
    
    .services-grid__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-card {
        padding: 22px 12px;
        height: 120px;
    }
    
    .service-card__icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .service-card__description {
        padding: 10px 8px;
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .services-grid__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 20px 10px;
        height: 110px;
        border-radius: 12px;
    }
    
    .service-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .service-card__description {
        padding: 8px 6px;
        font-size: 0.6rem;
        line-height: 1.15;
    }
}

@media (max-width: 400px) {
    .services-grid__container {
        grid-template-columns: 1fr;
        max-width: 250px;
        gap: 10px;
    }
    
    .service-card {
        height: 100px;
    }
}

/* Solutions Showcase Section Styles */
.solutions-showcase {
    padding: 50px 0 50px 0;
   background:  #e6f4ff;
    position: relative;
    overflow: hidden;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.justify-center {
    justify-content: center;
}

.full-column {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Section Header */
/* .solutions-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #06a3da;
    background: rgba(6, 163, 218, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
} */

.solutions-heading {
    /* font-size: 42px;
    font-weight: 700; */
    color: #091e3e;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* .solutions-divider {
    width: 80px;
    height: 4px;
    background: #06a3da;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
} */

.solutions-description {
    /* font-size: 18px; */
    color: #666666;
    line-height: 1.6;
    max-width: 1200px;
    margin: 5px auto 0;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Solution Card with Diagonal Corners */
.solution-card {
    background: #ffffff;
    padding: 35px 25px 30px;
    box-shadow: 0 10px 30px rgba(6, 163, 218, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 163, 218, 0.2);
}

.diagonal-card {
    border-radius: 0;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 100%, 
        0% 100%
    );
}

/* Diagonal Corner Elements - Always Visible with full styling */
.diagonal-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #06a3da;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(6, 163, 218, 0.3);
}

.diagonal-corner.top-left {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    transform-origin: top left;
}

.diagonal-corner.bottom-right {
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 100%, 0% 100%, 100% 0);
    transform-origin: bottom right;
}

/* Hover effects - enhance but keep corners visible */
.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(6, 163, 218, 0.25);
    border-color: rgba(6, 163, 218, 0.4);
}

.solution-card:hover .diagonal-corner {
    background: #091e3e;
    animation: cornerPulse 0.5s ease;
    box-shadow: 0 0 20px rgba(6, 163, 218, 0.5);
}

.solution-card:hover .diagonal-corner.top-left {
    transform: scale(1.15);
}

.solution-card:hover .diagonal-corner.bottom-right {
    transform: scale(1.15);
}

@keyframes cornerPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.15);
    }
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #06a3da;
    transform: scaleX(1);
    transition: transform 0.3s ease;
    transform-origin: left;
    z-index: 2;
}

.solution-card:hover::before {
    background: #091e3e;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: #06a3da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.2);
}

.solution-card:hover .solution-icon {
    background: #091e3e;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(9, 30, 62, 0.3);
}

.solution-icon i {
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon i {
    color: #ffffff;
}

.solution-title {
    font-size: 22px;
    /* font-weight: 600; */
    color: #091e3e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 5;
    line-height: 1.3;
}

.solution-card:hover .solution-title {
    color: #06a3da;
}

.solution-desc {
    /* font-size: 15px; */
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 5;
}

.solution-features span {
    font-size: 14px;
    color: #555555;
    display: flex;
    align-items: center;
}

.solution-features span i {
    color: #06a3da;
    margin-right: 10px;
    font-size: 14px;
}

.solution-card:hover .solution-features span i {
    color: #091e3e;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #06a3da;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.solution-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.solution-link:hover {
    color: #091e3e;
}

.solution-link:hover i {
    transform: translateX(5px);
}

.solution-card:hover .solution-link {
    color: #091e3e;
}

/* Extra Industries */
.extra-industries {
    text-align: center;
    margin-top: 60px;
    padding: 30px 0 0;
    border-top: 1px solid rgba(6, 163, 218, 0.2);
}

.extra-title {
    font-size: 20px;
    font-weight: 600;
    color: #091e3e;
    margin-bottom: 20px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.industry-tag {
    padding: 10px 22px;
    background: rgba(6, 163, 218, 0.1);
    border: 1px solid rgba(6, 163, 218, 0.2);
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-tag:hover {
    background: #06a3da;
    color: #ffffff;
    border-color: #06a3da;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 163, 218, 0.2);
}

/* Solutions CTA */
.solutions-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #06a3da;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.solutions-cta:hover {
    background: #091e3e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(9, 30, 62, 0.4);
}

.solutions-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.solutions-cta:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 20px;
}

/* Fade Up Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.solutions-divider.fade-up.animated {
    opacity: 1;
    transform: scaleX(1);
}

/* Animation Delays */
[data-delay="0.1s"] { transition-delay: 0.1s; }
[data-delay="0.2s"] { transition-delay: 0.2s; }
[data-delay="0.3s"] { transition-delay: 0.3s; }
[data-delay="0.4s"] { transition-delay: 0.4s; }
[data-delay="0.5s"] { transition-delay: 0.5s; }
[data-delay="0.6s"] { transition-delay: 0.6s; }
[data-delay="0.7s"] { transition-delay: 0.7s; }
[data-delay="0.8s"] { transition-delay: 0.8s; }

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .solutions-showcase {
        padding: 60px 0;
    }
    
    .solutions-heading {
        font-size: 36px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solution-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .solutions-badge {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .solutions-heading {
        font-size: 30px;
    }
    
    .solutions-description {
        font-size: 16px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .solution-card {
        padding: 30px 20px;
    }
    
    .solution-icon {
        width: 70px;
        height: 70px;
    }
    
    .solution-icon i {
        font-size: 30px;
    }
    
    .solution-title {
        font-size: 22px;
    }
    
    .extra-title {
        font-size: 18px;
    }
    
    .industry-tag {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 15px 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .solution-card {
        padding: 25px 15px;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon i {
        font-size: 26px;
    }
    
    .solution-title {
        font-size: 20px;
    }
    
    .solution-desc {
        font-size: 14px;
    }
    
    .solution-features span {
        font-size: 13px;
    }
    
    .diagonal-corner {
        width: 25px;
        height: 25px;
    }
    
    .industry-tags {
        gap: 8px;
    }
    
    .industry-tag {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .solutions-cta {
        padding: 12px 30px;
        font-size: 16px;
    }
}


/* Premium Offering Section Styles - New Class Names */
.premium-offering-section {
    padding: 50px 0 50px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.justify-center {
    justify-content: center;
}

.full-column {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Section Header */
/* .offering-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #06a3da;
    background: rgba(6, 163, 218, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
} */

.offering-heading {
    /* font-size: 42px;
    font-weight: 700; */
    color: #091e3e;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* .offering-divider {
    width: 80px;
    height: 4px;
    background: #06a3da;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
} */

.offering-description {
    /* font-size: 18px; */
    color: #4a5568;
    line-height: 1.6;
    max-width: 1200px;
    margin: 5px auto 0;
}

/* Offering Grid */
.offering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* Offering Card */
.offering-card {
    background: #ffffff;
    border: 1px solid rgba(6, 163, 218, 0.15);
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.offering-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: rgba(6, 163, 218, 0.3);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.1);
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #06a3da, #091e3e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.offering-card:hover .card-icon-wrapper {
    background: #06a3da;
    transform: scale(1.1) rotate(5deg);
}

.card-icon-wrapper i {
    font-size: 32px;
    color: #06a3da;
    transition: all 0.3s ease;
}

.offering-card:hover .card-icon-wrapper i {
    color: #ffffff;
}

.card-heading {
    font-size: 22px;
    /* font-weight: 600; */
    color: #091e3e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.offering-card:hover .card-heading {
    color: #06a3da;
}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.card-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-points span {
    font-size: 14px;
    color: #2d3748;
    display: flex;
    align-items: center;
}

.card-points span i {
    color: #06a3da;
    margin-right: 8px;
    font-size: 14px;
}

.offering-card:hover .card-points span i {
    color: #091e3e;
}

/* Commitment Box */
.commitment-box {
    margin-top: 60px;
    background: #ffffff;
    border: 1px solid rgba(6, 163, 218, 0.2);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.05);
}

.commitment-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: #06a3da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.2);
}

.commitment-icon i {
    font-size: 48px;
    color: #ffffff;
}

.commitment-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.commitment-heading {
    font-size: 28px;
    font-weight: 700;
    color: #091e3e;
    margin-bottom: 15px;
}

.commitment-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.commitment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.commitment-features span {
    font-size: 15px;
    color: #2d3748;
    display: flex;
    align-items: center;
}

.commitment-features span i {
    color: #06a3da;
    margin-right: 8px;
}

/* Offering CTA */
.offering-cta {
    display: inline-block;
    padding: 18px 50px;
    background: #06a3da;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    box-shadow: 0 10px 30px rgba(6, 163, 218, 0.3);
}

.offering-cta:hover {
    background: #091e3e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(9, 30, 62, 0.3);
}

.offering-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.offering-cta:hover i {
    transform: translateX(5px);
}

.cta-note-text {
    margin-top: 15px;
    font-size: 16px;
    color: #4a5568;
    font-style: italic;
}

.btn-large {
    font-size: 20px;
}

/* Slide Up Animation Classes */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.offering-divider.slide-up.animated {
    opacity: 1;
    transform: scaleX(1);
}

/* Animation Delays */
[data-delay="0.1s"] { transition-delay: 0.1s; }
[data-delay="0.2s"] { transition-delay: 0.2s; }
[data-delay="0.3s"] { transition-delay: 0.3s; }
[data-delay="0.4s"] { transition-delay: 0.4s; }
[data-delay="0.5s"] { transition-delay: 0.5s; }
[data-delay="0.6s"] { transition-delay: 0.6s; }
[data-delay="0.7s"] { transition-delay: 0.7s; }
[data-delay="0.8s"] { transition-delay: 0.8s; }
[data-delay="0.9s"] { transition-delay: 0.9s; }
[data-delay="1s"] { transition-delay: 1s; }
[data-delay="1.1s"] { transition-delay: 1.1s; }
[data-delay="1.2s"] { transition-delay: 1.2s; }

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .premium-offering-section {
        padding: 60px 0;
    }
    
    .offering-heading {
        font-size: 36px;
    }
    
    .offering-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .commitment-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .commitment-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .offering-badge {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .offering-heading {
        font-size: 30px;
    }
    
    .offering-description {
        font-size: 16px;
    }
    
    .offering-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .offering-card {
        padding: 25px;
    }
    
    .card-heading {
        font-size: 20px;
    }
    
    .commitment-heading {
        font-size: 24px;
    }
    
    .commitment-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .offering-cta {
        padding: 15px 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .offering-card {
        padding: 20px;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .card-icon-wrapper i {
        font-size: 26px;
    }
    
    .commitment-box {
        padding: 20px;
    }
    
    .commitment-icon {
        width: 80px;
        height: 80px;
    }
    
    .commitment-icon i {
        font-size: 36px;
    }
    
    .commitment-heading {
        font-size: 22px;
    }
    
    .commitment-text {
        font-size: 15px;
    }
    
    .commitment-features span {
        font-size: 14px;
    }
    
    .offering-cta {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .cta-note-text {
        font-size: 14px;
    }
}


/* FAQ Section Styles with #06a3da and #68a4c4 Color Scheme */
.faq-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    margin-bottom: 0; /* Ensure no bottom margin */
}

/* Remove any unwanted margin/padding after FAQ */
.faq-section + * {
    margin-top: 0 !important;
}

/* Footer container - remove top margin */
.container-fluid.px-0.bg-dark.text-light {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure FAQ container has proper spacing */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

/* Rest of your existing FAQ styles remain the same... */

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-main-title {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.faq-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #68a4c4, #06a3da);
    border-radius: 2px;
}

/* First part of heading - "Frequently Asked" */
.first-part {
    color: #091e3e; /* Dark blue color */
}

/* Second part of heading - "Questions" */
.second-part {
    color: #06a3da; /* Blue color */
}

.faq-subtitle {
    font-size: 1rem;
    color: #444;
    max-width: 600px;
    margin: 20px auto 0;
    padding: 0 20px;
}

/* FAQ Item - Individual boxes with spacing */
.faq-item {
    margin-bottom: 14px; /* SPACE BETWEEN BOXES */
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    width: 100%;
    animation: fadeIn 0.5s ease forwards;
    box-shadow: 0 4px 15px rgba(6, 163, 218, 0.08);
    border: 1px solid #d1ecff;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    background: linear-gradient(90deg, rgba(6, 163, 218, 0.03), rgba(104, 164, 196, 0.03));
    box-shadow: 0 6px 20px rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.3);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    min-height: 70px; /* Taller question area */
    transition: all 0.3s ease;
    padding: 0 30px;
}

/* Question Content */
.question-content {
    display: flex;
    align-items: center;
    flex: 1;
}

/* FAQ Title */
.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #091e3e; /* Changed to blue for questions */
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0; /* Removed padding since we don't have Q: prefix */
}

.faq-title::before {
    display: none; /* Remove Q: prefix */
}

.faq-question:hover .faq-title {
    color: #0480b8; /* Slightly darker blue on hover */
}

.faq-item.active .faq-title {
    color: #06a3da; /* Keep blue when active */
    font-weight: 700;
}

/* FAQ Icon */
.faq-icon {
    color: #091e3e;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.1);
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(6, 163, 218, 0.3);
}

.faq-question:hover .faq-icon {
    background: rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.15);
    transform: scale(1.05);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 30px;
    position: relative;
    line-height: 1.6;
    background: rgba(6, 163, 218, 0.02);
    border-top: 1px solid transparent;
}

.faq-answer::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #68a4c4, #06a3da);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 25px 30px;
    border-top: 1px solid rgba(6, 163, 218, 0.1);
}

.faq-item.active .faq-answer::before {
    opacity: 1;
}

.faq-answer p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 10px;
}

.faq-question:hover {
    transform: translateX(3px);
}

.faq-item.active .faq-question {
    transform: translateX(0);
}

/* FAQ Item Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-main-title {
        font-size: 2rem;
        padding-bottom: 12px;
    }
    
    .faq-main-title::after {
        width: 80px;
        height: 2.5px;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .faq-question {
        min-height: 65px;
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer::before {
        left: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 20px;
        max-height: 500px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .faq-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 10px;
    }
    
    .faq-main-title {
        font-size: 1.6rem;
        padding-bottom: 10px;
    }
    
    .faq-main-title::after {
        width: 60px;
        height: 2px;
    }
    
    .faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .faq-question {
        min-height: 60px;
        padding: 0 15px;
    }
    
    .faq-title {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer::before {
        left: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 15px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* For larger screens */
@media (min-width: 1200px) {
    .faq-container {
        max-width: 900px;
    }
}

@media (min-width: 1400px) {
    .faq-container {
        max-width: 1000px;
    }
    
    .faq-item {
        margin-bottom: 18px;
    }
}


