 /* 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;
        }
    }

/* Business Management Hero Section - Left Aligned with Zoom Fixes */

/* Initial transparent navbar */
.navbar {
    background: transparent !important;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding-left: max(15px, 5%);
    padding-right: max(15px, 5%);
}

/* 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;
    }
}

.business-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/fullstack-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Changed from height to min-height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 120px 0 80px; /* Increased top padding, added bottom padding */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.hero-content {
    max-width: 800px; /* Slightly reduced for better containment */
    text-align: left;
    padding: 30px 0; /* Removed horizontal padding, now handled by container */
    animation: fadeInLeft 1s ease-out;
    position: relative;
    width: 100%;
    margin-left: 0; /* Reset margin */
    
}

/* Left alignment specific class */
.hero-content.left-aligned {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hero-title {
   
    /* font-weight: 600; */
    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) !important;  /* Responsive font size */
     font-size: 2.5rem !important;
}

.title-part-1 {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    white-space: normal; /* Changed from nowrap to normal */
    word-wrap: break-word;
}

.title-part-2 {
    color: #06a3da;
    /* font-weight: 700; */
    display: block;
    white-space: normal;
    word-wrap: break-word;
}

/* .hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #68a4c4, #06a3da);
    margin: 0 0 25px 0;
    border-radius: 2px;
} */

.hero-description {
   
    font-size: clamp(1rem, 2vw, 1.2rem); /* Responsive font size */
    line-height: 1.7;
    color: #ffffff;
    max-width: 700px;
    margin: 0 0 30px 0;
    padding: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    text-align: left;
    width: 100%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
}
/* CTA Buttons Container */
.hero-cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0 0;
    flex-wrap: wrap;
    width: 100%;
}

/* Common Button Style */
.hero-cta-primary,
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px; /* Same as previous hero */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 190px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
}

/* Primary Button */
.hero-cta-primary {
    background-color: #06a3da;
    color: #ffffff;
    border: 2px solid #06a3da;
}

.hero-cta-primary:hover {
    background-color: transparent;
    color: #06a3da;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Secondary (Outline) Button */
.hero-cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-cta-secondary:hover {
    background-color: #ffffff;
    color: #091e3e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .business-hero-section {
        min-height: 90vh;
        padding: 100px 0 50px;
    }
    
    .hero-content {
        max-width: 650px;
    }
    
    .hero-cta-buttons {
        gap: 18px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 12px 28px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .business-hero-section {
        min-height: auto;
        padding: 80px 0 50px;
    }
    
    .hero-overlay {
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 20px 0;
    }
    
    .hero-title {
        padding-top: 0;
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    
    .hero-divider {
        width: 60px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        margin-bottom: 25px;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: auto;
        min-width: 220px;
        max-width: 100%;
        padding: 12px 28px;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .business-hero-section {
        padding: 70px 0 40px;
    }
    
    .hero-overlay {
        padding-top: 10px;
    }
    
    .hero-content {
        padding: 15px 0;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 15px;
    }
    
    .hero-description {
        margin-bottom: 25px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-cta-buttons {
        gap: 12px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        min-width: 200px;
        padding: 11px 24px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

@media (max-width: 400px) {
    .hero-cta-primary,
    .hero-cta-secondary {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-cta-primary i,
    .hero-cta-secondary i {
        font-size: 0.9rem;
    }
}

/* For very wide screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
        padding-left: 6%;
        padding-right: 6%;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .hero-description {
        max-width: 800px;
    }
}

/* Fix for iOS/Safari mobile viewport issues */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .business-hero-section {
            min-height: -webkit-fill-available;
        }
    }
}

/* Ensure buttons never get cut off at any zoom level */
@media screen and (max-width: 500px) and (min-resolution: 1.5dppx) {
    .hero-cta-primary,
    .hero-cta-secondary {
        min-width: 160px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}


/* 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: 15px;
    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;
    }
}





/* Software Development Services Section */
.software-services-section {
     padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}


.services-heading {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}


.services-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(6, 163, 218, 0.1);
    z-index: -1;
}

/* .services-divider {
    width: 80px;
    height: 4px;
    background: #06a3da;
    margin: 20px auto;
    border-radius: 2px;
} */

.services-description {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 20px 5px 20px 5px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(6, 163, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 163, 218, 0.3);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.15);
    border-radius: 5px 20px 5px 20px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #06a3da;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, 0.1);
    border-radius: 20px 3px 20px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background: #06a3da;
    transform: scale(1.1) rotate(3deg);
    border-radius: 3px 20px 3px 20px;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: #06a3da;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper i {
    color: #ffffff;
}

.service-title {
    font-size: 1.3rem;
    /* font-weight: 600; */
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service-card:hover .service-title {
    color: #06a3da;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features span {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features span i {
    color: #06a3da;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-features span i {
    color: #091e3e;
}

/* Tech Stack */
.tech-stack {
    margin-top: 70px;
    text-align: center;
}

.tech-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tech-badge {
    padding: 12px 25px;
    background: #ffffff;
    border: 1px solid rgba(6, 163, 218, 0.2);
    border-radius: 30px 3px 30px 3px;
    font-size: 1rem;
    color: #555;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tech-badge i {
    color: #06a3da;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: #06a3da;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 163, 218, 0.2);
    border-radius: 3px 30px 3px 30px;
    border-color: #06a3da;
}

.tech-badge:hover i {
    color: #ffffff;
}



/* CTA Section */
.services-cta-wrapper {
    text-align: center;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px 5px 30px 5px;
    margin-top: 60px;
    box-shadow: 0 15px 35px rgba(6, 163, 218, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.15);
    transition: all 0.3s ease;
}

.services-cta-wrapper:hover {
    border-radius: 5px 30px 5px 30px;
    box-shadow: 0 25px 45px rgba(6, 163, 218, 0.15);
}

.services-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.services-cta-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.services-cta {
    display: inline-block;
    padding: 16px 45px;
    background: #06a3da;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px 3px 30px 3px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(6, 163, 218, 0.3);
    border: none;
    cursor: pointer;
}

.services-cta:hover {
    background: #091e3e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(9, 30, 62, 0.3);
    border-radius: 3px 30px 3px 30px;
}

.services-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.services-cta:hover i {
    transform: translateX(5px);
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 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; }

/* Responsive Design */
@media (max-width: 992px) {
    .services-heading {
        font-size: 2.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .software-services-section {
        padding: 60px 0;
    }
    
    .services-heading {
        font-size: 2rem;
    }
    
    .services-description {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .tech-title {
        font-size: 1.6rem;
    }
    
    .tech-grid {
        gap: 10px;
    }
    
    .tech-badge {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .services-cta-wrapper {
        padding: 40px 30px;
    }
    
    .services-cta-title {
        font-size: 1.8rem;
    }
    
    .services-cta-text {
        font-size: 1.1rem;
    }
    
    .services-cta {
        padding: 14px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .services-heading {
        font-size: 1.8rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.6rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .tech-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .services-cta-title {
        font-size: 1.6rem;
    }
    
    .services-cta-text {
        font-size: 1rem;
    }
    
    .services-cta {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}


/* CTA Section Styles - Compact Version */
.cta-section {
    padding: 60px 0;
    background: #06a3da;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-content {
    /*max-width: 700px;*/
    margin: 0 auto;
}

.cta-heading {
    /* font-weight: 700; */
    color: #091e3e;
    margin-bottom: 15px;
    /* line-height: 1.2; */
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
     padding-bottom: 35px;
    /* line-height: 1.5; */
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px !important;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-btn-primary {
    background: white;
    color: #0d6efd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-btn {
        padding: 10px 20px;
    }
}


/* Our PPC Marketing Process Section */
.ppc-process-section {
    padding: 50px 0 50px 0;
   background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

.ppc-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.ppc-process-header {
    text-align: center;
    margin-bottom: 40px;
}

.ppc-process-title {
    /* font-size: 2.5rem;
    font-weight: 800; */
    color: #091e3e;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}


.ppc-process-subtitle {
    /* font-size: 1.2rem; */
    color: #555;
    /* font-weight: 400; */
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.ppc-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;
    position: relative;
}

.ppc-process-step:last-child .ppc-step-content {
    margin-bottom: 0;
}

/* Process Step */
.ppc-process-step {
    display: flex;
    gap: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.ppc-process-step:hover {
    transform: translateX(10px);
}

/* Step Left - Number and Line */
.ppc-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    flex-shrink: 0;
    position: relative;
}

.ppc-step-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #06a3da;
    background: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #06a3da;
    box-shadow: 0 10px 25px rgba(6, 163, 218, 0.15);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ppc-process-step:hover .ppc-step-number {
    background: #06a3da;
    color: white;
    transform: scale(1.05);
}

.ppc-step-line {
    width: 3px;
    background: linear-gradient(to bottom, #06a3da, rgba(6, 163, 218, 0.2));
    flex-grow: 1;
    min-height: 30px;
}

.ppc-process-step:last-child .ppc-step-line {
    display: none;
}

/* Step Content */
.ppc-step-content {
    display: flex;
    gap: 25px;
    background: white;
    border-radius: 24px;
    padding: 30px;
    flex: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(6, 163, 218, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.ppc-process-step:hover .ppc-step-content {
    box-shadow: 0 25px 45px rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.3);
}

/* Step Icon */
.ppc-step-icon-wrapper {
    flex-shrink: 0;
}

.ppc-step-icon-bg {
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ppc-step-icon-bg i {
    font-size: 32px;
    color: #06a3da;
    transition: all 0.3s ease;
}

.ppc-process-step:hover .ppc-step-icon-bg {
    background: #06a3da;
}

.ppc-process-step:hover .ppc-step-icon-bg i {
    color: white;
}

/* Step Info */
.ppc-step-info {
    flex: 1;
}

.ppc-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #091e3e;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.ppc-step-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

/* Step Deliverables */
.ppc-step-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ppc-step-deliverables span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #06a3da;
    background: rgba(6, 163, 218, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(6, 163, 218, 0.15);
    transition: all 0.2s ease;
}

.ppc-step-deliverables span i {
    color: #06a3da;
    font-size: 0.8rem;
}

.ppc-process-step:hover .ppc-step-deliverables span {
    background: rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.3);
}

/* Animation */
.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);
}

/* Responsive Breakpoints */

/* Tablet Landscape */
@media (max-width: 992px) {
    .ppc-process-title {
        font-size: 2.2rem;
    }
    
    .ppc-process-subtitle {
        font-size: 1.1rem;
    }
    
    .ppc-step-content {
        padding: 25px;
    }
    
    .ppc-step-title {
        font-size: 1.4rem;
    }
    
    .ppc-cta-content {
        padding: 35px 40px;
        flex-wrap: wrap;
    }
    
    .ppc-cta-text {
        margin-left: 20px;
    }
    
    .ppc-cta-text h4 {
        font-size: 1.4rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .ppc-process-section {
        padding: 60px 0;
    }
    
    .ppc-process-title {
        font-size: 2rem;
    }
    
    .ppc-process-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .ppc-process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .ppc-step-left {
        flex-direction: row;
        width: 100%;
        gap: 20px;
        align-items: center;
    }
    
    .ppc-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .ppc-step-line {
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #06a3da, rgba(6, 163, 218, 0.2));
        flex-grow: 1;
        min-height: auto;
    }
    
    .ppc-step-content {
        flex-direction: column;
        margin-left: 0;
        gap: 20px;
    }
    
    .ppc-step-icon-wrapper {
        align-self: flex-start;
    }
    
    .ppc-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .ppc-cta-icon {
        margin-bottom: 10px;
    }
    
    .ppc-cta-text {
        margin-left: 0;
    }
    
    .ppc-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .ppc-process-title {
        font-size: 1.8rem;
    }
    
    .ppc-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .ppc-step-content {
        padding: 22px;
    }
    
    .ppc-step-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .ppc-step-icon-bg i {
        font-size: 28px;
    }
    
    .ppc-step-title {
        font-size: 1.3rem;
    }
    
    .ppc-step-desc {
        font-size: 0.95rem;
    }
    
    .ppc-step-deliverables span {
        font-size: 0.75rem;
        padding: 5px 14px;
    }
    
    .ppc-cta-content {
        padding: 30px 25px;
    }
    
    .ppc-cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .ppc-cta-icon i {
        font-size: 1.8rem;
    }
    
    .ppc-cta-text h4 {
        font-size: 1.3rem;
    }
    
    .ppc-cta-text p {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .ppc-process-title {
        font-size: 1.6rem;
    }
    
    .ppc-step-deliverables {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ppc-step-deliverables span {
        width: 100%;
    }
}



/* Tech Tab Section */
.tech-tab-section {
     padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: visible;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}


.tech-tab-heading {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}


/* 
.tech-tab-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #06a3da, #0482b0);
    margin: 20px auto;
    border-radius: 2px;
} */

.tech-tab-description {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Tabs */
.tech-categories {
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    min-width: min-content;
}

.category-tab {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(6, 163, 218, 0.2);
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-tab:hover {
    border-color: #06a3da;
    color: #06a3da;
    transform: translateY(0);
}

.category-tab.active {
    background: linear-gradient(135deg, #06a3da, #0482b0);
    border-color: #06a3da;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.2);
}

/* Tech Grid Container */
.tech-grid-container {
    position: relative;
    min-height: 200px;
}

.tech-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    animation: fadeIn 0.5s ease;
}

.tech-grid.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tech Item */
.tech-item {
    background: #ffffff;
    border: 1px solid rgba(6, 163, 218, 0.1);
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: #06a3da;
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.1);
}

.tech-item i {
    font-size: 2rem;
    color: #06a3da;
    transition: all 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.1);
}

.tech-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
}

/* Tech Note */
.tech-note {
    text-align: center;
    margin-top: 40px;
    padding: 15px;
    background: rgba(6, 163, 218, 0.05);
    border-radius: 50px;
    color: #666;
    font-size: 0.95rem;
}

.tech-note i {
    color: #06a3da;
    margin-right: 8px;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 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; }

/* Responsive Design */
@media (max-width: 992px) {
    .tech-tab-heading {
        font-size: 2.4rem;
    }
    
    .category-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .tech-tab-section {
        padding: 60px 0;
    }
    
    .tech-tab-heading {
        font-size: 2rem;
    }
    
    .tech-tab-description {
        font-size: 1.1rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
    }
    
    .tech-item {
        padding: 15px 10px;
    }
    
    .tech-item i {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .tech-tab-heading {
        font-size: 1.8rem;
    }
    
    .tech-tab-description {
        font-size: 1rem;
    }
    
    .category-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Full Stack Mastery Area - Split Design with Different Class Names */
.fullstack-mastery-area {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

.content-boundary {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.heading-block {
    text-align: center;
    margin-bottom: 40px;
}

/* .mastery-tag {
    display: inline-block;
    font-size: 1rem;
    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;
} */

.mastery-headline {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* .color-accent {
    background: linear-gradient(135deg, #06a3da, #0482b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
} */

/* .heading-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #06a3da, #0482b0);
    margin: 20px auto;
    border-radius: 2px;
} */

.mastery-summary {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Expertise Collection Grid */
.expertise-collection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Capability Card - Split Design */
.capability-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(6, 163, 218, 0.1);
    overflow: hidden;
}

/* Split Accent Line */
.split-pattern .split-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #06a3da, #0482b0);
    transition: width 0.3s ease;
}

.split-pattern:hover .split-accent {
    width: 8px;
}

/* Card Body */
.split-pattern .card-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

/* Icon Container */
.split-pattern .icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #06a3da, #0482b0);
    border-radius: 0 30px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.2);
}

.split-pattern:hover .icon-container {
    transform: scale(1.05) rotate(3deg);
    border-radius: 30px 0 30px 0;
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.3);
}

/* Card Header Title */
.split-pattern .card-header-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.split-pattern:hover .card-header-title {
    color: #06a3da;
}

/* Card Description */
.split-pattern .card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

/* Skill Cluster */
.split-pattern .skill-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.split-pattern .skill-pill {
    background: rgba(6, 163, 218, 0.1);
    color: #06a3da;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.split-pattern:hover .skill-pill {
    background: rgba(6, 163, 218, 0.15);
    transform: translateY(-2px);
}

/* Performance Indicator */
.split-pattern .performance-indicator {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed rgba(6, 163, 218, 0.2);
}

.split-pattern .indicator-value {
    color: #06a3da;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(6, 163, 218, 0.05);
    padding: 5px 15px;
    border-radius: 30px;
    display: inline-block;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 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; }

/* Responsive Design */
@media (max-width: 992px) {
    .mastery-headline {
        font-size: 2.4rem;
    }
    
    .expertise-collection {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .fullstack-mastery-area {
        padding: 60px 0;
    }
    
    .mastery-headline {
        font-size: 2rem;
    }
    
    .mastery-summary {
        font-size: 1.1rem;
    }
    
    .expertise-collection {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .capability-card {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .mastery-headline {
        font-size: 1.8rem;
    }
    
    .mastery-summary {
        font-size: 1rem;
    }
    
    .capability-card {
        padding: 25px 20px;
        min-height: 330px;
    }
    
    .split-pattern .card-header-title {
        font-size: 1.2rem;
    }
    
    .split-pattern .icon-container {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}


/* Industry Services Section */
.industry-services {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    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%);
}

.industry-services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.industry-services__header {
    text-align: center;
    margin-bottom: 40px;
}

.industry-services__title {
    font-weight: 800;
    margin-bottom: 5px;
    color: #091e3e;
    position: relative;
    display: inline-block;
}
/* 
.industry-services__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;
} */

.industry-services__subtitle {
    margin: 0;
}

/* Services Grid */
.industry-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Service Item */
.industry-services__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;
}

.industry-services__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;
}

.industry-services__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 */
.industry-services__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 */
.industry-services__description::-webkit-scrollbar {
    width: 4px;
}

.industry-services__description::-webkit-scrollbar-track {
    background: transparent;
}

.industry-services__description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Hover Effects */
.industry-services__item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(6, 166, 224, 0.15);
}

.industry-services__item:hover .industry-services__description {
    transform: rotateY(0deg);
    opacity: 1;
}

.industry-services__item:hover .industry-services__icon,
.industry-services__item:hover .industry-services__item-title {
    transform: rotateY(180deg);
    opacity: 0;
}

.industry-services__item:hover .industry-services__icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Float Animation */
@keyframes floatItem {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.industry-services__item {
    animation: floatItem 4s ease-in-out infinite;
}

.industry-services__item:hover {
    animation-play-state: paused;
}

.industry-services__item:nth-child(2) { animation-delay: 0.3s; }
.industry-services__item:nth-child(3) { animation-delay: 0.6s; }
.industry-services__item:nth-child(4) { animation-delay: 0.9s; }
.industry-services__item:nth-child(5) { animation-delay: 1.2s; }
.industry-services__item:nth-child(6) { animation-delay: 1.5s; }
.industry-services__item:nth-child(7) { animation-delay: 1.8s; }
.industry-services__item:nth-child(8) { animation-delay: 2.1s; }
.industry-services__item:nth-child(9) { animation-delay: 2.4s; }
.industry-services__item:nth-child(10) { animation-delay: 2.7s; }
.industry-services__item:nth-child(11) { animation-delay: 3s; }
.industry-services__item:nth-child(12) { animation-delay: 3.3s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .industry-services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .industry-services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .industry-services__item {
        padding: 25px 15px;
        height: 130px;
    }
    
    .industry-services__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .industry-services__description {
        padding: 12px 10px;
        font-size: 0.7rem;
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    .industry-services {
        padding: 50px 0;
    }
    
    .industry-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .industry-services__item {
        padding: 22px 12px;
        height: 120px;
    }
    
    .industry-services__icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .industry-services__description {
        padding: 10px 8px;
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .industry-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .industry-services__item {
        padding: 20px 10px;
        height: 110px;
        border-radius: 12px;
    }
    
    .industry-services__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .industry-services__description {
        padding: 8px 6px;
        font-size: 0.6rem;
        line-height: 1.15;
    }
}

@media (max-width: 400px) {
    .industry-services__grid {
        grid-template-columns: 1fr;
        max-width: 250px;
        gap: 10px;
    }
    
    .industry-services__item {
        height: 100px;
    }
}



/* Why GKIS as DevOps Consulting Company Section */
.why-devops-section {
     padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}


.why-heading {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}


/* 
.why-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #06a3da, #0482b0);
    margin: 20px auto;
    border-radius: 2px;
} */

.why-description {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Reasons Grid - 6 Cards */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Reason Card */
.reason-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(6, 163, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: #06a3da;
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.15);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #06a3da, #0482b0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-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.4s ease;
}

.reason-card:hover .reason-icon-wrapper {
    background: linear-gradient(135deg, #06a3da, #0482b0);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
}

.reason-icon-wrapper i {
    font-size: 2rem;
    color: #06a3da;
    transition: all 0.4s ease;
}

.reason-card:hover .reason-icon-wrapper i {
    color: #ffffff;
}

.reason-title {
    font-size: 1.3rem;
    /* font-weight: 600; */
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.reason-card:hover .reason-title {
    color: #06a3da;
}

.reason-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.reason-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reason-tags span {
    font-size: 0.8rem;
    padding: 4px 10px;
    background: rgba(6, 163, 218, 0.1);
    color: #06a3da;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-tags span {
    background: rgba(6, 163, 218, 0.15);
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 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; }
[data-delay="1.3s"] { transition-delay: 1.3s; }

/* Responsive Design */
@media (max-width: 992px) {
    .why-heading {
        font-size: 2.4rem;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-devops-section {
        padding: 60px 0;
    }
    
    .why-heading {
        font-size: 2rem;
    }
    
    .why-description {
        font-size: 1.1rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .why-heading {
        font-size: 1.8rem;
    }
    
    .why-description {
        font-size: 1rem;
    }
    
    .reason-title {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}


/* Full Stack Development CTA Section with Background Image - Compact Version */
.fs-cta-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://powell-software.com/wp-content/uploads/2020/09/Teams-Lifecycle-Banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.fs-cta-wrapper {
    position: relative;
    z-index: 2;
}

.fs-cta-content {
    color: #ffffff;
    padding-right: 20px;
}

.fs-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);
}

.fs-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);
}

.fs-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;
}

.fs-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;
}

.fs-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;
}

.fs-cta-button:hover::before {
    left: 100%;
}

.fs-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 */
.fs-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: fs-shimmer 8s infinite linear;
    pointer-events: none;
}

@keyframes fs-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design for Compact CTA */
@media (max-width: 992px) {
    .fs-cta-section {
        padding: 50px 0;
    }
    
    .fs-cta-button {
        padding: 15px 35px;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .fs-cta-section {
        padding: 45px 0;
    }
    
    .fs-cta-title {
        margin-bottom: 15px;
    }
    
    .fs-cta-description {
        line-height: 1.6;
    }
    
    .fs-cta-content {
        padding-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .fs-cta-action {
        text-align: center !important;
        margin-top: 0;
    }
    
    .fs-cta-button {
        padding: 14px 30px;
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .fs-cta-section {
        padding: 40px 20px;
    }
    
    .fs-cta-title {
        margin-bottom: 15px;
    }
    
    .fs-cta-description {
        line-height: 1.6;
    }
    
    .fs-cta-button {
        width: 100%;
        max-width: 220px;
        padding: 12px 25px;
    }
    
    .fs-cta-note {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .fs-cta-section {
        padding: 35px 20px;
    }
}


/* 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;
    }
}


