.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 .video-hero-section  {
        padding-top: 130px;
    }
}

/* Video Background Hero Section - Fixed Position */
.video-hero-section {
    position: relative;
    min-height: 85vh;   /* instead of height */
    padding: 80px 0; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* UPDATED HERO CONTENT BOX */
.hero-content {
    position: relative;
    text-align: center;
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); 
    margin: 0 auto 1.5rem auto;  /* Added bottom margin for button spacing */
    backdrop-filter: blur(5px);
    z-index: 2;
}

/* FIXED HEADING - Smaller font size, better line handling */
.hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    /* font-weight: 600; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* UPDATED DESCRIPTION - Slightly smaller */
.hero-content p {
    /* font-size: 1.1rem; */
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

/* NEW - CTA Button Wrapper - DIFFERENT CLASS NAME */
.cta-button-wrapper {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    margin-top: 0.5rem;
}

/* NEW - Consultation Button - DIFFERENT CLASS NAME */
.cta-consultation {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #06a3da, #0dcaf0);
    color: white;
}

.cta-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 163, 218, 0.4);
}

/* NEW - Services Button - DIFFERENT CLASS NAME */
.cta-services {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-services:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #06a3da;
    color: #06a3da;
    transform: translateY(-2px);
}

/* ================================
   CONSULTATION MODAL STYLES
================================= */
.consultation-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: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    position: relative;
    animation: slideUp 0.4s ease;
}

.close-modal {
    position: absolute;
    top: 2px;
    right: 15px;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #06a3da;
}

.modal-inner {
    display: flex;
    min-height: 550px;
}

/* Left Side - Image */
.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%;
}

.modal-image {
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.modal-left-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-left-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Right Side - Form */
.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%;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group 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;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06a3da;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(6, 163, 218, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

/* Captcha Styles */
.captcha-group {
    margin-top: 0;
}

.captcha-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.captcha-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #333;
}

.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);
}

#captcha {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
}

#captcha:focus {
    outline: none;
    border-color: #06a3da;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(6, 163, 218, 0.1);
}

.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;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .video-hero-section {
        height: 50vh;
    }
    
    .hero-content {
        padding: 1.2rem 1.5rem;
        max-width: 800px;
        margin-bottom: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .cta-consultation,
    .cta-services {
        padding: 10px 25px;
    }
    
    .modal-inner {
        flex-direction: column;
        min-height: auto;
    }
    
    .modal-left {
        border-radius: 20px 20px 0 0;
        padding: 25px;
    }
    
    .modal-right {
        border-radius: 0 0 20px 20px;
        padding: 25px;
    }
    
    .modal-image {
        max-width: 180px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-hero-section {
        height: 60vh;
    }
    
    .hero-content {
        padding: 1rem 1.2rem;
        width: 95%;
        margin: 0 1rem 1rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .cta-button-wrapper {
        gap: 0.8rem;
    }
    
    .cta-consultation,
    .cta-services {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
    
    .modal-left-content h3 {
        font-size: 1.4rem;
    }
    
    .modal-left-content p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 12px;
    }
    
    .captcha-question {
        font-size: 0.95rem;
        padding: 6px 12px;
        min-width: 80px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .video-hero-section {
        height: 70vh;
    }
    
    .hero-content {
        padding: 0.8rem 1rem;
        margin: 0 0.5rem 1rem 0.5rem;
        width: 98%;
    }
    
    .hero-content h1 {
        font-size: 1.2rem;
        line-height: 1.3;
        font-weight: 500;
    }
    
    .hero-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .cta-button-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        width: 90%;
        max-width: 280px;
    }
    
    .cta-consultation,
    .cta-services {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
    }
    
    .cta-consultation,
    .cta-services {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}


/* AI Development Services Section - Redesigned with Smaller Image */
.ai-section {
    /* max-width: 1200px; */
    margin: 40px auto;
    padding: 20px 0 20px 0; /* Top 50px, Bottom 50px */
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Add decorative background elements */
.ai-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 163, 218, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatGlow 8s ease-in-out infinite;
}

.ai-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(104, 164, 196, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(20px, 20px) scale(1.1); opacity: 1; }
}

/* HEADINGS - Enhanced */
.ai-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.ai-heading h2 {
    margin: 0 0 5px 0; /* Bottom margin 5px between heading and paragraph */
    color: #091e3e;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

/* Enhanced Solid Color Sub-heading */
.ai-heading h3 {
    color: #091e3e;
    letter-spacing: -0.5px;
    margin-top: 5px;
    position: relative;
    margin: 0 0 5px 0; /* Bottom margin 5px between heading and paragraph */
}

.ai-heading h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #06a3da, #68a4c4);
    border-radius: 2px;
    animation: lineGrow 1s ease-out 0.5s forwards;
    transform-origin: center;
    transform: translateX(-50%) scaleX(0);
}

@keyframes lineGrow {
    to { transform: translateX(-50%) scaleX(1); }
}

/* CONTENT GRID - Adjusted for smaller image */
.ai-content {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr; /* More space for text, less for image */
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* LEFT TEXT - Enhanced */
.ai-text {
    position: relative;
}

.ai-text p {
    line-height: 1.8;
    color: #1e4356;
    /* margin-bottom: 28px; */
    position: relative;
    transition: all 0.3s ease;
    padding: 25px 30px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 15px 40px rgba(6, 163, 218, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.1);
}

.ai-text p:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.3);
}

/* AI Features Grid */
.ai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(6, 163, 218, 0.1);
    box-shadow: 0 10px 30px rgba(6, 163, 218, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #06a3da, #68a4c4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, #68a4c4, #06a3da);
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #091e3e;
    margin-bottom: 8px;
}

.feature-content p {
    /* font-size: 14px; */
    color: #444;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
    transition: none;
}

.feature-content p:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

/* RIGHT IMAGE - Smaller Size */
.ai-image {
    position: relative;
    width: 100%;
    height: 380px; /* Reduced from 500px */
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(6, 163, 218, 0.2);
    transition: all 0.5s ease;
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(6, 163, 218, 0.3);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(6, 163, 218, 0.1) 0%, 
        rgba(104, 164, 196, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.95) contrast(1.05);
}

.image-container:hover img {
    transform: scale(1.08);
}

/* Floating Elements - Adjusted for smaller image */
.image-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    width: 50px; /* Smaller */
    height: 50px; /* Smaller */
    background: linear-gradient(135deg, #06a3da, #68a4c4);
    border-radius: 14px; /* Smaller */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.4);
    animation: floatElement 6s ease-in-out infinite;
    transition: all 0.4s ease;
}

.floating-element:hover {
    transform: scale(1.2);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.6);
}

.floating-element i {
    font-size: 20px; /* Smaller */
    color: white;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 10%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #10b981, #059669);
}

.element-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.element-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        box-shadow: 0 15px 30px rgba(6, 163, 218, 0.4);
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        box-shadow: 0 25px 40px rgba(6, 163, 218, 0.6);
    }
}

/* RESPONSIVE - Adjusted */
@media (max-width: 1200px) {
    .ai-section {
        max-width: 1100px;
        margin: 100px auto;
        padding: 50px 30px 50px 30px; /* Top 50px, Bottom 50px */
    }
    
    .ai-content {
        gap: 60px;
    }
    
    .ai-heading h2 {
        font-size: 42px;
    }
    
    .ai-heading h3 {
        font-size: 38px;
    }
    
    .ai-image {
        height: 340px; /* Adjusted */
    }
}

@media (max-width: 992px) {
    .ai-section {
        margin: 80px auto;
        padding: 50px 25px 50px 25px; /* Top 50px, Bottom 50px */
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ai-image {
        height: 320px; /* Adjusted */
        max-width: 600px; /* Limit max width on mobile */
        margin: 0 auto;
    }

    .ai-heading h2 {
        font-size: 38px;
    }

    .ai-heading h3 {
        font-size: 34px;
    }
    
    .ai-text p {
        font-size: 17px;
        padding: 20px 25px;
    }
    
    .ai-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .ai-section {
        margin: 70px auto;
        padding: 50px 20px 50px 20px; /* Top 50px, Bottom 50px */
    }
    
    .ai-heading {
        margin-bottom: 60px;
    }
    
    .ai-heading h2 {
        font-size: 32px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }

    .ai-heading h3 {
        font-size: 28px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .ai-heading h2::after {
        width: 100px;
        bottom: -12px;
    }
    
    .ai-image {
        height: 280px; /* Adjusted */
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .floating-element {
        width: 45px; /* Smaller */
        height: 45px; /* Smaller */
    }
    
    .floating-element i {
        font-size: 18px; /* Smaller */
    }
}

@media (max-width: 576px) {
    .ai-section {
        margin: 60px auto;
        padding: 50px 15px 50px 15px; /* Top 50px, Bottom 50px */
    }
    
    .ai-heading h2 {
        font-size: 28px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }

    .ai-heading h3 {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .ai-text p {
        font-size: 16px;
        /* line-height: 1.7; */
        padding: 20px;
    }
    
    .ai-image {
        height: 240px; /* Adjusted */
        border-radius: 16px;
    }
    
    .feature-item {
        padding: 15px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .floating-element i {
        font-size: 16px;
    }
}

/* Add subtle animations for content reveal */
.ai-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.ai-text {
    animation-delay: 0.2s;
}

.ai-image {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Advanced AI Services Section - Updated */
.advanced-ai-section {
    padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    background:  #e6f4ff ;
    position: relative;
    overflow: hidden;
}

/* Section Header - Updated with solid color heading */
/* Updated Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    /* Remove max-width constraint or make it wider */
    max-width: 1200px;
     padding: 0 30px;
    margin-left: auto;
    margin-right: auto;
    /* Allow content to span full width within container */
    width: 100%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* SOLID COLOR HEADING - Updated */
.section-header h2 {
    margin-bottom: 5px !important; /* 5px between heading and paragraph */
    line-height: 1.2;
    color: #091e3e;
}

/* Updated Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    /* Remove max-width constraint to allow full width */
    max-width: none;
    width: 100%;
}

/* EXTRA WIDE PARAGRAPH - Like in the image */
.section-description {
    color: #444;
    margin-top: 5px; /* 5px between heading and paragraph */
    /* Remove all side padding */
    padding: 0;
    /* Make it take almost full container width */
    width: 100%;
    /* Optional: Add a max-width that's much larger than heading */
    max-width: 1300px;
    /* Center it within container */
    margin-left: auto;
    margin-right: auto;
    /* Add a little top/bottom padding if needed */
    padding-top: 10px;
    text-align: left;
}

/* AI Services Grid - Updated for 6 cards */
.ai-services-grid {
    display: grid;
     grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* AI Service Card */
.ai-service-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 163, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ai-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.03), rgba(104, 164, 196, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(6, 163, 218, 0.2);
    border-color: rgba(6, 163, 218, 0.3);
}

.ai-service-card:hover::before {
    opacity: 1;
}

/* Service Icon */
.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: white;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #06a3da, #68a4c4);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.ai-service-card:hover .icon-bg {
    transform: rotate(225deg);
    background: linear-gradient(135deg, #68a4c4, #06a3da);
}

/* Card Content */
.ai-service-card h3 {
    font-size: 22px;
    margin-bottom: 5px; /* 5px between heading and paragraph */
    color: #091e3e;
    position: relative;
    padding-bottom: 15px;
}

.ai-service-card:hover h3 {
    color: #091e3e;
}

.ai-service-card p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.service-tags span {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 15px;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.1), rgba(104, 164, 196, 0.1));
    color: #06a3da;
    border-radius: 20px;
    border: 1px solid rgba(6, 163, 218, 0.2);
    transition: all 0.3s ease;
}

.ai-service-card:hover .service-tags span {
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.2), rgba(104, 164, 196, 0.2));
    transform: translateY(-2px);
}


/* CTA Section */
.advanced-cta {
    background: linear-gradient(135deg, #06a3da, #68a4c4);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 163, 218, 0.3);
    margin-top: 50px;
}

.advanced-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    color: #091e3e;
    margin-bottom: 5px; /* 5px between heading and paragraph */
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: white;
    color: #68a4c4;
    text-decoration: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 163, 218, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

.cta-button i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(10px);
}

/* Floating Animation for Cards */
.ai-service-card {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.6s ease forwards;
}

.ai-service-card:nth-child(1) { animation-delay: 0.1s; }
.ai-service-card:nth-child(2) { animation-delay: 0.2s; }
.ai-service-card:nth-child(3) { animation-delay: 0.3s; }
.ai-service-card:nth-child(4) { animation-delay: 0.4s; }
.ai-service-card:nth-child(5) { animation-delay: 0.5s; }
.ai-service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .ai-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advanced-ai-section {
        padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    }
    
    .section-header h2 {
        font-size: 32px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .section-description {
        font-size: 16px;
        margin-top: 5px; /* 5px between heading and paragraph */
        padding: 0;
    }
    
    .ai-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ai-service-card {
        padding: 30px 25px;
    }
    
    .ai-service-card h3 {
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .advanced-cta {
        padding: 40px 25px;
    }
    
    .cta-content h3 {
        font-size: 28px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .section-badge {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .ai-service-card h3 {
        font-size: 20px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 30px;
    }
    
    .cta-content h3 {
        font-size: 24px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}


/* AI Development Capabilities Section */
.ai-capabilities-section {
    padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    background:  #f8fafc ;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.ai-capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(6, 163, 218, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(104, 164, 196, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Header Section */
.capabilities-header {
    text-align: center;
    margin-bottom: 30px;
    /* Remove max-width to allow full width */
    max-width: none;
    width: 100%;
}

.gradient-heading {
    margin-bottom: 5px; /* 5px between heading and paragraph */
    color: #091e3e;
    letter-spacing: -0.5px;
    /* Optional: Limit heading width if desired */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-heading {
    color: #091e3e;
    margin-bottom: 5px; /* 5px between heading and paragraph */
    position: relative;
    display: inline-block;
    /* Optional: Keep sub-heading centered */
    max-width: 700px;
}

/* ALTERNATIVE: Ultra-wide paragraph */
.capabilities-description {
    color: #444;
    margin-top: 5px; /* 5px between heading and paragraph */
    /* Full width */
    width: 100%;
    /* Much wider than heading */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    /* Center text */
    text-align: center;
    /* Add some spacing */
    padding: 0;
}
/* Main Grid Layout - EQUAL HEIGHT FIX */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 15px;
    align-items: stretch;
}

/* EQUAL HEIGHT COLUMNS - FIXED */
.categories-column,
.content-column,
.stats-column {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.1);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 600px;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

/* Left Column - Categories (SCROLLABLE) */
.categories-column {
    overflow-y: auto;
    flex: 1;
}

.categories-column::-webkit-scrollbar {
    width: 6px;
}

.categories-column::-webkit-scrollbar-track {
    background: rgba(6, 163, 218, 0.1);
    border-radius: 10px;
}

.categories-column::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #06a3da, #68a4c4);
    border-radius: 10px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(6, 163, 218, 0.1);
    flex-shrink: 0;
}

.category-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.3);
}

.category-item.active {
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.1), rgba(104, 164, 196, 0.1));
    border-color: rgba(6, 163, 218, 0.5);
    transform: translateX(5px);
}

.category-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #06a3da, #68a4c4);
    border-radius: 0 2px 2px 0;
}

.category-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #06a3da, #68a4c4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    transform: rotate(10deg) scale(1.05);
}

.category-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #091e3e;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.category-count {
    font-size: 13px;
    font-weight: 700;
    color: #06a3da;
    background: rgba(6, 163, 218, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-item.active .category-count {
    background: #06a3da;
    color: white;
}

/* Middle Column - Content (SCROLLABLE WITHIN BOUNDS) */
.content-column {
    padding: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.capabilities-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    max-height: 100%;
}

.capabilities-content::-webkit-scrollbar {
    width: 6px;
}

.capabilities-content::-webkit-scrollbar-track {
    background: rgba(6, 163, 218, 0.05);
    border-radius: 10px;
}

.capabilities-content::-webkit-scrollbar-thumb {
    background: rgba(6, 163, 218, 0.2);
    border-radius: 10px;
}

.capabilities-content::-webkit-scrollbar-thumb:hover {
    background: rgba(6, 163, 218, 0.3);
}

.feature-item {
    padding: 20px;
    background: rgba(6, 163, 218, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(6, 163, 218, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    animation: slideIn 0.5s ease forwards;
    animation-delay: calc(--item-index * 0.1s);
}

.feature-item.active {
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.08), rgba(104, 164, 196, 0.08));
    border-color: rgba(6, 163, 218, 0.3);
    box-shadow: 0 5px 15px rgba(6, 163, 218, 0.1);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 163, 218, 0.15);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #091e3e;
    margin-bottom: 5px; /* 5px between heading and paragraph */
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item h3 i {
    color: #06a3da;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.feature-item:hover h3 i {
    transform: translateX(3px);
}

.feature-item p {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    margin: 0;
    padding-left: 22px;
}

/* Right Column - Statistics */
.stats-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: flex-start;
    overflow: hidden;
}

/* Fast Deployment box */
.capabilities-highlight {
    background: linear-gradient(135deg, #06a3da, #68a4c4);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 163, 218, 0.3);
    border: none;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.capabilities-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 163, 218, 0.4);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a3da;
    font-size: 24px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.capabilities-highlight h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px; /* 5px between heading and paragraph */
}

.capabilities-highlight p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Supported Technologies box */
.tech-stack {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    overflow: hidden;
}

.tech-stack h4 {
    font-size: 17px;
    font-weight: 700;
    color: #091e3e;
    margin-bottom: 5px; /* 5px between heading and paragraph */
    text-align: center;
    flex-shrink: 0;
}

.tech-icons-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.tech-icons-container::-webkit-scrollbar {
    width: 4px;
}

.tech-icons-container::-webkit-scrollbar-track {
    background: rgba(6, 163, 218, 0.05);
    border-radius: 10px;
}

.tech-icons-container::-webkit-scrollbar-thumb {
    background: rgba(6, 163, 218, 0.2);
    border-radius: 10px;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(6, 163, 218, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-height: 80px;
    justify-content: center;
}

.tech-icon:hover {
    transform: translateY(-3px);
    background: rgba(6, 163, 218, 0.1);
    box-shadow: 0 5px 15px rgba(6, 163, 218, 0.15);
}

.tech-icon i {
    font-size: 20px;
    color: #06a3da;
}

.tech-icon span {
    font-size: 12px;
    font-weight: 600;
    color: #091e3e;
    text-align: center;
    line-height: 1.3;
}


/* CTA Banner */
.capabilities-cta {
    background: linear-gradient(135deg, #091e3e, #1e4356);
    border-radius: 25px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.capabilities-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 65%, rgba(6, 163, 218, 0.1) 65%),
        linear-gradient(-45deg, transparent 65%, rgba(104, 164, 196, 0.1) 65%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h3 {
    color: white;
    margin-bottom: 5px; /* 5px between heading and paragraph */
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #06a3da, #68a4c4);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(6, 163, 218, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(6, 163, 218, 0.6);
    background: linear-gradient(135deg, #68a4c4, #06a3da);
}

.cta-button i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .categories-column,
    .content-column,
    .stats-column {
        min-height: 550px;
        max-height: 550px;
        padding: 25px;
    }
    
    .gradient-heading {
        font-size: 42px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .sub-heading {
        font-size: 28px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
}

@media (max-width: 992px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-column {
        grid-column: span 2;
        min-height: auto;
        max-height: none;
        flex-direction: row;
        gap: 25px;
    }
    
    .capabilities-highlight,
    .tech-stack {
        flex: 1;
        min-height: 200px;
        max-height: 200px;
    }
    
    .categories-column,
    .content-column {
        min-height: 500px;
        max-height: 500px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .gradient-heading {
        font-size: 36px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .sub-heading {
        font-size: 24px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
}

@media (max-width: 768px) {
    .ai-capabilities-section {
        padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    }
    
    .gradient-heading {
        font-size: 32px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .sub-heading {
        font-size: 22px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .capabilities-description {
        font-size: 16px;
        margin-top: 5px; /* 5px between heading and paragraph */
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .categories-column,
    .content-column,
    .stats-column {
        min-height: 450px;
        max-height: 450px;
        padding: 20px;
    }
    
    .stats-column {
        grid-column: span 1;
        flex-direction: column;
        min-height: auto;
        max-height: none;
    }
    
    .capabilities-highlight,
    .tech-stack {
        min-height: 180px;
        max-height: none;
    }
    
    .tech-icons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .capabilities-cta {
        padding: 40px 25px;
    }
    
    .cta-text h3 {
        font-size: 24px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gradient-heading {
        font-size: 28px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .sub-heading {
        font-size: 20px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .capabilities-badge {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .categories-column,
    .content-column {
        min-height: 400px;
        max-height: 400px;
        padding: 18px;
    }
    
    .category-item {
        padding: 15px;
    }
    
    .category-item h4 {
        font-size: 14px;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-item h3 {
        font-size: 15px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .tech-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tech-icon {
        padding: 10px;
        min-height: 70px;
    }
    
    .tech-icon span {
        font-size: 11px;
    }
}

/* Content Animation Classes */
.capabilities-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.capabilities-content.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.feature-item {
    opacity: 0;
    transform: translateY(10px);
}

.feature-item.animated {
    animation: slideIn 0.5s ease forwards;
}

/* Technology animations */
.tech-icon {
    opacity: 0;
    transform: translateY(10px);
    animation: slideInTech 0.5s ease forwards;
    animation-delay: calc(--tech-index * 0.1s);
}

@keyframes slideInTech {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* How AI assist */
.ai-assist-alt-section {
    padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    background: #e6f4ff;
    position: relative;
    overflow: hidden;
}

.ai-assist-alt-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 163, 218, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(104, 164, 196, 0.04) 0%, transparent 50%);
    animation: floatBackground 20s infinite linear;
    z-index: 0;
}

@keyframes floatBackground {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

/* Header */
.assist-alt-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    /* Remove width constraints */
    /* width: 100%; */
    max-width: 1200px !important;
}

.assist-alt-heading {
    margin-bottom: 5px; /* 5px between heading and paragraph */
    color: #091e3e;
    line-height: 1.2;
    /* Optional: Keep heading centered but not too wide */
    /* max-width: 900px; */
    margin-left: auto;
    margin-right: auto;
}

.assist-alt-description {
    line-height: 1.6;
    color: #444;
    margin-top: 5px; /* 5px between heading and paragraph */
    /* Remove the 600px max-width */
    max-width: none;
    /* Make it much wider */
    width: 100%;
    /* Set a larger max-width to match other sections */
    max-width: 1300px;
    margin: 0 auto;
    /* Optional: Add more line spacing for readability */
    line-height: 1.8;
    text-align: center;
}

/* Timeline Layout */
.assist-alt-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.timeline-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.left-column .timeline-item {
    justify-content: flex-end;
    text-align: left;
}

.right-column .timeline-item {
    justify-content: flex-start;
}

/* Timeline Markers */
.timeline-marker {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marker-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid rgba(6, 163, 218, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a3da;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(6, 163, 218, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.timeline-item:hover .marker-circle {
    background: linear-gradient(135deg, #06a3da, #68a4c4);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(6, 163, 218, 0.3);
}

.marker-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 163, 218, 0.3), rgba(6, 163, 218, 0.1));
}

/* Timeline Content */
.timeline-content {
    max-width: 450px;
    width: 100%;
}

.content-inner {
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(6, 163, 218, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item:hover .content-inner {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 163, 218, 0.2);
    border-color: rgba(6, 163, 218, 0.3);
}

.content-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.05), rgba(104, 164, 196, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.timeline-item:hover .content-inner::before {
    opacity: 1;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 14px;
    font-weight: 800;
    color: #06a3da;
    background: rgba(6, 163, 218, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    min-width: 45px;
    text-align: center;
}

.content-title {
    font-size: 22px;
    font-weight: 600;
    color: #091e3e;
    margin: 0 0 5px 0; /* Bottom margin 5px between heading and paragraph */
    line-height: 1.3;
}

.content-description {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.content-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.content-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.content-features i {
    color: #06a3da;
    font-size: 12px;
}

/* Center Line */
.timeline-center-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

.center-line {
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #06a3da, #68a4c4);
    border-radius: 2px;
    position: absolute;
    top: 0;
}

.center-circle {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #06a3da, #68a4c4);
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 0 20px rgba(6, 163, 218, 0.5);
    position: relative;
    z-index: 2;
    margin: 40px 0;
}

.center-circle.middle-circle {
    width: 25px;
    height: 25px;
    border: 6px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .assist-alt-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-center-line {
        display: none;
    }
    
    .timeline-column {
        gap: 40px;
    }
    
    .left-column .timeline-item,
    .right-column .timeline-item {
        justify-content: center;
        text-align: left;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .assist-alt-heading {
        font-size: 42px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
}

@media (max-width: 992px) {
    .ai-assist-alt-section {
        padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    }
    
    .assist-alt-heading {
        font-size: 38px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .marker-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .assist-alt-heading {
        font-size: 32px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .content-title {
        font-size: 20px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-text h3 {
        font-size: 26px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
}

@media (max-width: 576px) {
    .ai-assist-alt-section {
        padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    }
    
    .assist-alt-heading {
        font-size: 28px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .assist-alt-badge {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .content-inner {
        padding: 25px;
    }
    
    .content-title {
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .assist-alt-stats {
        padding: 40px 25px;
    }
    
    .cta-button-alt {
        width: 100%;
        justify-content: center;
    }
}


/* AI Development CTA Section - With Visible Background Image */
.gkis-cta-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../img/ai-cta2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-text {
    color: #ffffff;
    padding-right: 20px;
}

.cta-heading {
    font-weight: 700;
    color: #06a3da;
    margin-bottom: 5px; /* 5px between heading and paragraph */
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 5px; /* 5px between heading and paragraph */
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-link {
    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-link::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-link: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-link:hover::before {
    left: 100%;
}

.cta-footnote {
    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 */
.gkis-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;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design for Compact CTA */
@media (max-width: 992px) {
    .gkis-cta-section {
        padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    }
    
    .cta-link {
        padding: 15px 35px;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .gkis-cta-section {
        padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    }
    
    .cta-heading {
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .cta-text p {
        line-height: 1.6;
        margin-top: 5px; /* 5px between heading and paragraph */
    }
    
    .cta-text {
        padding-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .cta-action {
        text-align: center !important;
        margin-top: 0;
    }
    
    .cta-link {
        padding: 14px 30px;
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .gkis-cta-section {
        padding: 50px 20px 50px 20px; /* Top 50px, Bottom 50px with side padding */
    }
    
    .cta-heading {
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .cta-text p {
        line-height: 1.6;
        margin-top: 5px; /* 5px between heading and paragraph */
    }
    
    .cta-link {
        width: 100%;
        max-width: 220px;
        padding: 12px 25px;
    }
    
    .cta-footnote {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .gkis-cta-section {
        padding: 50px 20px 50px 20px; /* Top 50px, Bottom 50px with side padding */
    }
}


/* Industry Services Section */
.industry-services {
    padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    background:  #f1f5f9 ;
    position: relative;
    overflow: hidden;
}

.industry-services::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%);
}

.services-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;
}

.main-heading {
    /* font-weight: 800; */
    margin-bottom: 5px; /* 5px between heading and paragraph */
    color: #091e3e;
    position: relative;
    display: inline-block;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Service Item */
.service-item {
    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;
}

.item-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;
}

.item-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-item .item-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-item .item-description::-webkit-scrollbar {
    width: 4px;
}

.service-item .item-description::-webkit-scrollbar-track {
    background: transparent;
}

.service-item .item-description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Hover Effects */
.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(6, 166, 224, 0.15);
}

.service-item:hover .item-description {
    transform: rotateY(0deg);
    opacity: 1;
}

.service-item:hover .item-icon,
.service-item:hover .item-title {
    transform: rotateY(180deg);
    opacity: 0;
}

.service-item:hover .item-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Float Animation */
@keyframes floatItem {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.service-item {
    animation: floatItem 4s ease-in-out infinite;
}

.service-item:hover {
    animation-play-state: paused;
}

.service-item:nth-child(2) { animation-delay: 0.3s; }
.service-item:nth-child(3) { animation-delay: 0.6s; }
.service-item:nth-child(4) { animation-delay: 0.9s; }
.service-item:nth-child(5) { animation-delay: 1.2s; }
.service-item:nth-child(6) { animation-delay: 1.5s; }
.service-item:nth-child(7) { animation-delay: 1.8s; }
.service-item:nth-child(8) { animation-delay: 2.1s; }
.service-item:nth-child(9) { animation-delay: 2.4s; }
.service-item:nth-child(10) { animation-delay: 2.7s; }
.service-item:nth-child(11) { animation-delay: 3s; }
.service-item:nth-child(12) { animation-delay: 3.3s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .service-item {
        padding: 25px 15px;
        height: 130px;
    }
    
    .item-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-item .item-description {
        padding: 12px 10px;
        font-size: 0.7rem;
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    .industry-services {
        padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-item {
        padding: 22px 12px;
        height: 120px;
    }
    
    .item-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .service-item .item-description {
        padding: 10px 8px;
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-item {
        padding: 20px 10px;
        height: 110px;
        border-radius: 12px;
    }
    
    .item-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .service-item .item-description {
        padding: 8px 6px;
        font-size: 0.6rem;
        line-height: 1.15;
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
        gap: 10px;
    }
    
    .service-item {
        height: 100px;
    }
}



/*ai expertice section */

.ai-models-section {
  padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
  background: #e6f4ff;
}

.models-container {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.models-header {
  text-align: center;
  margin-bottom: 30px;
}

.models-title {
  margin: 0 0 5px 0 !important; /* Bottom margin 5px between heading and paragraph */
  color: #091e3e;
  margin-bottom: 5px; /* 5px between heading and paragraph */
  position: relative;
  display: inline-block;
}

.models-description {
  color: #444;
  line-height: 1.7;
  max-width: 1200px;
  margin: 5px auto 0 auto; /* Top margin 5px between heading and paragraph */
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-bottom: 10px;
}

.model-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(6, 163, 218, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 163, 218, 0.05), rgba(104, 164, 196, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(6, 163, 218, 0.15);
  border-color: rgba(6, 163, 218, 0.3);
}

.model-card:hover::before {
  opacity: 1;
}

.model-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  transition: all 0.4s ease;
}

.model-card:hover .model-icon {
  transform: rotate(15deg) scale(1.1);
  background: linear-gradient(135deg, #68a4c4, #06a3da);
}

.model-name {
  font-size: 1.5rem;
  /* font-weight: 700; */
  color: #091e3e;
  margin-bottom: 5px; /* 5px between heading and paragraph */
}

.model-desc {
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 5px; /* 5px between heading and paragraph */
  /* font-size: 0.95rem; */
}

.model-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.model-tag {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 15px;
  background: rgba(6, 163, 218, 0.1);
  color: #06a3da;
  border-radius: 20px;
  border: 1px solid rgba(6, 163, 218, 0.2);
  transition: all 0.3s ease;
}

.model-card:hover .model-tag {
  background: rgba(6, 163, 218, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .models-title {
    font-size: 2.4rem;
    margin-bottom: 5px; /* 5px between heading and paragraph */
  }
  
  .models-description {
    font-size: 1.1rem;
    margin-top: 5px; /* 5px between heading and paragraph */
  }
}

@media (max-width: 768px) {
  .ai-models-section {
    padding: 50px 20px 50px 20px; /* Top 50px, Bottom 50px with side padding */
  }
  
  .models-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 50px;
  }
  
  .models-title {
    font-size: 2rem;
    margin-bottom: 5px; /* 5px between heading and paragraph */
  }
  
  .models-description {
    font-size: 1rem;
    margin-top: 5px; /* 5px between heading and paragraph */
  }
  
  .models-cta p {
    font-size: 1.1rem;
  }
}

/* AI Services Delivery Process Section - Updated (No Numbers) */
.delivery-process-wrapper {
    padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.delivery-process-wrapper .content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header with wider paragraph */
.delivery-process-wrapper .header-area {
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
    max-width: none;
}

.delivery-process-wrapper .main-heading {
    color: #091e3e;
    margin: 0 0 5px 0; /* Bottom margin 5px between heading and paragraph */
    position: relative;
    display: inline-block;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* WIDER PARAGRAPH */
.delivery-process-wrapper .intro-text {
    color: #444;
    line-height: 1.7;
    margin-top: 5px; /* 5px between heading and paragraph */
    max-width: none;
    width: 100%;
    max-width: 1300px;
    margin: 5px auto 0 auto;  
    text-align: center;
    padding: 0 20px;
}

/* Process Container */
.process-wrapper {
    position: relative;
    max-width: 1200px !important;
    margin: 0 auto;
}

/* Process Steps - Clean layout without numbers */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    position: relative;
    z-index: 2;
}

/* Process Step Card - Clean Design */
.process-card {
    background: white;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.3);
}

/* Step Content */
.card-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.process-card {
    text-align: center;
}

.process-card .card-description {
    text-align: left;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #091e3e;
    margin: 0 0 5px 0; /* Bottom margin 5px between heading and paragraph */
    line-height: 1.3;
    width: 100%;
}

/* Step Icon - Larger and more prominent */
.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Color-coded icons by step */
.process-card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
}

.process-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
}

.process-card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
}

.process-card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
}

.process-card:nth-child(5) .card-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(219, 39, 119, 0.1));
}

.process-card:nth-child(6) .card-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(8, 145, 178, 0.1));
}

.card-icon i {
    font-size: 2rem;
    transition: all 0.4s ease;
}

/* Color-coded icon colors */
.process-card:nth-child(1) .card-icon i {
    color: #3b82f6;
}

.process-card:nth-child(2) .card-icon i {
    color: #10b981;
}

.process-card:nth-child(3) .card-icon i {
    color: #f59e0b;
}

.process-card:nth-child(4) .card-icon i {
    color: #8b5cf6;
}

.process-card:nth-child(5) .card-icon i {
    color: #ec4899;
}

.process-card:nth-child(6) .card-icon i {
    color: #06b6d4;
}

.process-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-card:hover .card-icon i {
    transform: scale(1.1);
}

/* WIDER STEP DESCRIPTION */
.card-description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin: 5px 0 0 0; /* Top margin 5px between heading and paragraph */
    width: 100%;
    max-width: none;
}

/* Background Decoration */
.delivery-process-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 163, 218, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.delivery-process-wrapper::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(104, 164, 196, 0.08) 0%, transparent 70%);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .delivery-process-wrapper {
        padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    }
    
    .delivery-process-wrapper .main-heading {
        font-size: 2.4rem;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .delivery-process-wrapper .intro-text {
        font-size: 1.1rem;
        margin-top: 5px; /* 5px between heading and paragraph */
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .process-card {
        padding: 40px 30px;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .delivery-process-wrapper .main-heading {
        font-size: 2.2rem;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .delivery-process-wrapper .intro-text {
        font-size: 1.05rem;
        margin-top: 5px; /* 5px between heading and paragraph */
    }
}

@media (max-width: 576px) {
    .delivery-process-wrapper {
        padding: 50px 0 50px 0; /* Top 50px, Bottom 50px */
    }
    
    .process-card {
        padding: 35px 25px;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .delivery-process-wrapper .main-heading {
        font-size: 2rem;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .delivery-process-wrapper .intro-text {
        font-size: 1rem;
        margin-top: 5px; /* 5px between heading and paragraph */
    }
}



/* FAQ Section Styles with #06a3da and #68a4c4 Color Scheme */
.faq-section {
    padding: 50px 20px 50px 20px; /* Top 50px, Bottom 50px with side padding */
    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;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-main-title {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 5px; /* 5px between heading and paragraph */
    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: 5px auto 0 auto; /* Top margin 5px between heading and paragraph */
    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: 50px 15px 50px 15px; /* Top 50px, Bottom 50px with side padding */
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-main-title {
        font-size: 2rem;
        padding-bottom: 12px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .faq-main-title::after {
        width: 80px;
        height: 2.5px;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
        margin-top: 5px; /* 5px between heading and paragraph */
    }
    
    .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;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 10px 50px 10px; /* Top 50px, Bottom 50px with side padding */
    }
    
    .faq-main-title {
        font-size: 1.6rem;
        padding-bottom: 10px;
        margin-bottom: 5px; /* 5px between heading and paragraph */
    }
    
    .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;
    }
}