/* Initial transparent navbar */
    .navbar {
        background: transparent !important;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    
    /* Sticky navbar when scrolled */
    .navbar.sticky-top {
        position: fixed !important;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    /* Initial navbar text color (white on hero) */
    .navbar .navbar-brand h2 {
        color: #ffffff !important;
    }
    
    .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    
    /* Sticky navbar text color (blue when white background) */
    .navbar.sticky-top .navbar-brand h2 {
        color: #06a3da !important;
    }
    
    .navbar.sticky-top .navbar-nav .nav-link {
        color: #091e3e !important;
    }
    
    /* Hover and active states */
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #06a3da !important;
    }
    
    /* Adjust hero section padding when navbar is sticky */
    body.sticky-navbar .hero {
        padding-top: 150px;
    }
    
    /* For mobile view */
    @media (max-width: 991.98px) {
        .navbar {
            position: relative;
            background: #ffffff !important;
        }
        
        .navbar .navbar-brand h2 {
            color: #06a3da !important;
        }
        
        .navbar .navbar-nav .nav-link {
            color: #091e3e !important;
        }
        
        .navbar.sticky-top {
            position: relative !important;
            box-shadow: none;
        }
        
        body.sticky-navbar .hero-section {
            padding-top: 130px;
        }
    }
/* ===== High DPI / Zoom Fix ===== */
        
    /* Initial transparent navbar */
    .navbar {
        background: transparent !important;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    
    /* Sticky navbar when scrolled */
    .navbar.sticky-top {
        position: fixed !important;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    /* Initial navbar text color (white on hero) */
    .navbar .navbar-brand h2 {
        color: #ffffff !important;
    }
    
    .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    
    /* Sticky navbar text color (blue when white background) */
    .navbar.sticky-top .navbar-brand h2 {
        color: #06a3da !important;
    }
    
    .navbar.sticky-top .navbar-nav .nav-link {
        color: #091e3e !important;
    }
    
    /* Hover and active states */
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #06a3da !important;
    }
    
    /* Adjust hero section padding when navbar is sticky */
    body.sticky-navbar .hero {
        padding-top: 150px;
    }
    
    /* 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;
        }
    }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.hero-title {
    font-weight: 400 !important;
    letter-spacing: 0.5px;
}

/* Windows 150% scaling fix */
@media (min-resolution: 1.5dppx) {
    .hero-title {
        font-weight: 350 !important;
        letter-spacing: 0.7px;
    }
}
/* FORCE 4 COLUMNS ON DESKTOP (EVEN AT 150% ZOOM) */
.services-main-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
    gap: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
    .services-main-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-main-list {
        grid-template-columns: 1fr !important;
    }
}
/* ================================
   LANDING PAGE HERO SECTION STYLES
================================= */
.landing-hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 0 80px;
    overflow-x: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.landing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.landing-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    z-index: 1;
}

.landing-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: max(20px, 8%);
    padding-right: max(20px, 5%);
}

.landing-content {
    max-width: 800px;
    text-align: left;
    padding: 30px 0;
    animation: landingFadeInLeft 1s ease-out;
    position: relative;
    width: 100%;
    margin-left: 0;
}

.landing-left-position {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.landing-heading {
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
    width: 100%;
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-size: 2.5rem;
}

.landing-heading-first {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    white-space: normal;
    word-wrap: break-word;
}

.landing-heading-second {
    color: #06a3da;
    display: block;
    white-space: normal;
    word-wrap: break-word;
}

.landing-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: #ffffff;
    max-width: 700px;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: left;
    width: 100%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
}

/* CTA Buttons Container */
.landing-cta-group {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0 0;
    flex-wrap: wrap;
    width: 100%;
}

/* Common Button Style */
.landing-cta-main,
.landing-cta-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 190px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

/* Primary Button */
.landing-cta-main {
    background-color: #06a3da;
    color: #ffffff;
    border: 2px solid #06a3da;
}

.landing-cta-main:hover {
    background-color: transparent;
    color: #06a3da;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Secondary (Outline) Button */
.landing-cta-alt {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.landing-cta-alt:hover {
    background-color: #ffffff;
    color: #091e3e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes landingFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   LANDING PAGE MODAL STYLES
================================= */
.landing-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: landingFadeIn 0.3s ease;
}

.landing-modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    position: relative;
    animation: landingSlideUp 0.4s ease;
}

.landing-close-modal {
    position: absolute;
    top: 2px;
    right: 15px;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.landing-close-modal:hover {
    color: #06a3da;
}

.landing-modal-inner {
    display: flex;
    min-height: 550px;
}

/* Left Side - Image */
.landing-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%;
}

.landing-modal-image {
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.landing-modal-left-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.landing-modal-left-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Right Side - Form */
.landing-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%;
}

.landing-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.landing-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.landing-input,
.landing-select,
.landing-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;
}

.landing-input:focus,
.landing-select:focus,
.landing-textarea:focus {
    outline: none;
    border-color: #06a3da;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(6, 163, 218, 0.1);
}

.landing-select {
    cursor: pointer;
}

.landing-textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

/* Captcha Styles */
.landing-captcha-group {
    margin-top: 0;
}

.landing-captcha-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-captcha-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #333;
}

.landing-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);
}

.landing-captcha-input {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    width: 100%;
}

.landing-captcha-input:focus {
    outline: none;
    border-color: #06a3da;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(6, 163, 218, 0.1);
}

.landing-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;
}

.landing-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.3);
}

@keyframes landingFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes landingSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .landing-cta-group {
        gap: 18px;
    }
    
    .landing-cta-main,
    .landing-cta-alt {
        padding: 12px 28px;
        min-width: 180px;
    }
    
    .landing-modal-inner {
        flex-direction: column;
        min-height: auto;
    }
    
    .landing-modal-left {
        border-radius: 20px 20px 0 0;
        padding: 25px;
    }
    
    .landing-modal-right {
        border-radius: 0 0 20px 20px;
        padding: 25px;
    }
    
    .landing-modal-image {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .landing-hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .landing-overlay {
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .landing-content {
        max-width: 100%;
        padding: 20px 0;
    }
    
    .landing-heading {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .landing-heading-divider {
        width: 60px;
        margin-bottom: 20px;
    }
    
    .landing-text {
        margin-bottom: 25px;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .landing-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .landing-cta-main,
    .landing-cta-alt {
        width: auto;
        min-width: 220px;
        max-width: 100%;
        padding: 12px 28px;
        white-space: nowrap;
    }
    
    .landing-modal-left-content h3 {
        font-size: 1.4rem;
    }
    
    .landing-modal-left-content p {
        font-size: 0.9rem;
    }
    
    .landing-input,
    .landing-select,
    .landing-textarea {
        padding: 8px 12px;
    }
    
    .landing-captcha-question {
        font-size: 0.95rem;
        padding: 6px 12px;
        min-width: 80px;
    }
}

@media (max-width: 576px) {
    .landing-hero-section {
        padding: 80px 0 40px;
    }
    
    .landing-heading {
        font-size: clamp(1.8rem, 7vw, 2rem);
    }
    
    .landing-text {
        font-size: 0.95rem;
    }
    
    .landing-cta-main,
    .landing-cta-alt {
        min-width: 200px;
        padding: 11px 24px;
        font-size: 0.9rem;
    }
    
    .landing-modal-left-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .landing-cta-main,
    .landing-cta-alt {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* For very wide screens */
@media (min-width: 1600px) {
    .landing-container {
        max-width: 1500px;
        padding-left: 6%;
        padding-right: 6%;
    }
    
    .landing-content {
        max-width: 900px;
    }
    
    .landing-text {
        max-width: 800px;
    }
}

/* What We Do Section - Simplified */

/* .what-we-do-section .container,
.what-we-do-section .services-container,
.what-we-do-section .wrapper,
.what-we-do-section .content {
  max-width: 1400px !important;
  width: 100% !important;
} */

.what-we-do-section {
  padding: 50px 0 50px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.section-title-main {
  /* font-size: 2.8rem;
    font-weight: 700; */
  color: #091e3e;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  text-align: left;
}

.company-name-subtitle {
  /* font-size: 1.6rem; */
  /* font-weight: 500; */
  color: #06a6e0;
  margin-bottom: 5px;
}

.section-tagline {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  /* text-align: center; */
  max-width: 1200px; /* Controls how wide it can go */
}

/* Content Area */
.what-we-do-content {
  padding: 30px;
  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: 400px;
}

.what-we-do-content p {
  /* font-size: 1.1rem; */
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.what-we-do-highlight {
  margin: 20px 0;
}

.what-we-do-highlight p {
  margin-bottom: 0;
  /* font-size: 1.1rem; */
  color: #444;
}

/* Image Container */
.what-we-do-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(6, 166, 224, 0.12);
  border: 2px solid rgba(6, 166, 224, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 400px;
}

.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;
  font-size: 1.8rem;
  color: #0d6efd;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-container:hover .overlay-icon {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .what-we-do-section {
    padding: 70px 0;
  }

  .section-title-main {
    font-size: 2.2rem;
  }

  .company-name-subtitle {
    font-size: 1.3rem;
  }

  .what-we-do-content {
    margin-bottom: 30px;
    min-height: 350px;
  }

  .image-container {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .what-we-do-section {
    padding: 60px 0;
  }

  .section-title-main {
    font-size: 2rem;
  }

  .what-we-do-content {
    min-height: 320px;
  }

  .what-we-do-content p {
    font-size: 1rem;
  }

  .image-container {
    min-height: 320px;
  }
}

/* Statistics Section */
.statistics-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #bfc1c3 100%);
}

.stat-box {
    text-align: center;
    padding: 30px 15px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #06a3da; /* Your specified color */
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(6, 163, 218, 0.1);
}

.stat-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-box:hover::after {
    width: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .statistics-section {
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-text {
        font-size: 16px;
    }
    
    .stat-box {
        padding: 20px 10px;
    }
}

@media (max-width: 576px) {
    .stat-box {
        margin-bottom: 20px;
    }
}

/* Service Section - Unique Class Names */
.service-master-wrapper {
      padding: 50px 0 50px 0;
    background: #e6f4ff;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.service-master-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.03);
    z-index: 0;
}

.service-master-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.02);
    z-index: 0;
}

.container-large {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-header-block {
    margin-bottom: 40px;
}

.service-main-heading {
    /* font-size: 46px;
    font-weight: 800; */
    color: #1a2b3c;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.heading-accent::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(6, 163, 218, 0.15);
    z-index: -1;
    border-radius: 10px;
    transform: skewX(-10deg);
}

@keyframes dividerGradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.service-intro-text {
    /* font-size: 18px; */
    color: #5a6b7c;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
    /* font-weight: 400; */
}

.service-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.service-grid-item {
    height: 100%;
}

.service-offering-card {
    background: #ffffff;
    padding: 40px 25px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    border: 1px solid rgba(6, 163, 218, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.service-offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #06a3da, transparent, #06a3da);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-offering-card:hover {
    transform: translateY(-18px) scale(1.02);
    box-shadow: 0 30px 50px rgba(6, 163, 218, 0.2);
    border-color: transparent;
}

.service-offering-card:hover::before {
    opacity: 1;
}

.offering-icon-box {
    width: 70px;
    height: 70px;
    line-height: 100px;
    background: rgba(6, 163, 218, 0.08);
    border-radius: 30px;
    margin: 0 auto 30px;
    color: #06a3da;
    font-size: 40px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offering-icon-box i {
    transition: all 0.4s ease;
}

.service-offering-card:hover .offering-icon-box {
    background: #06a3da;
    color: #ffffff;
    border-radius: 50%;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 20px 30px rgba(6, 163, 218, 0.3);
}

.service-offering-card:hover .offering-icon-box i {
    transform: scale(1.1);
}

.offering-title {
    font-size: 22px;
    /* font-weight: 700; */
    color: #1e293b;
    margin-bottom: 18px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 15px;
}

.service-offering-card:hover .offering-title {
    color: #06a3da;
}

.service-offering-card:hover .offering-title::after {
    width: 70px;
    background: #06a3da;
    height: 3px;
}

.offering-description {
    font-size: 16px;
    color: #4b5565;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
    font-weight: 400;
}

.service-offering-card:hover .offering-description {
    color: #334155;
}

.cta-wrapper {
    margin-top: 50px;
}

.cta-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: linear-gradient(45deg, #06a3da, #0a7eae);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    gap: 10px;
}

.cta-action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-action-button::after {
    content: '→';
    font-size: 24px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.cta-action-button:hover {
    background: linear-gradient(45deg, #0a7eae, #06a3da);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 40px rgba(6, 163, 218, 0.5);
    padding: 18px 60px 18px 40px;
}

.cta-action-button:hover::before {
    left: 100%;
}

.cta-action-button:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.cta-action-button:active {
    transform: translateY(-4px) scale(1.02);
}

/* Floating animation for cards */
@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.service-offering-card {
    animation: floatCard 5s ease-in-out infinite;
    animation-delay: calc(var(--card-index) * 0.2s);
}

/* Assign animation delay to each card */
.service-grid-item:nth-child(1) .service-offering-card { --card-index: 1; }
.service-grid-item:nth-child(2) .service-offering-card { --card-index: 2; }
.service-grid-item:nth-child(3) .service-offering-card { --card-index: 3; }
.service-grid-item:nth-child(4) .service-offering-card { --card-index: 4; }
.service-grid-item:nth-child(5) .service-offering-card { --card-index: 5; }
.service-grid-item:nth-child(6) .service-offering-card { --card-index: 6; }

/* Responsive Design */
@media (max-width: 1024px) {
    .service-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-main-heading {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .service-master-wrapper {
        padding: 60px 0;
    }
    
    .service-main-heading {
        font-size: 36px;
    }
    
    .service-intro-text {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .service-grid-layout {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
        margin: 0 auto 40px;
    }
    
    .offering-icon-box {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
    
    .offering-title {
        font-size: 22px;
    }
    
    .cta-action-button {
        padding: 15px 40px;
        font-size: 18px;
    }
    
    .cta-action-button:hover {
        padding: 15px 50px 15px 30px;
    }
}

@media (max-width: 480px) {
    .service-main-heading {
        font-size: 30px;
    }
    
    .offering-icon-box {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .offering-title {
        font-size: 20px;
    }
    
    .offering-description {
        font-size: 15px;
    }
}
/* Business Management CTA Section with Background Image - Compact Version */
.bms-cta-section {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

.cta-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.bms-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
}

.cta-content {
    color: #ffffff;
    padding-right: 20px;
}

.cta-title {
    font-weight: 700;
    color: #06a3da;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #06a3da 0%, #68a4c4 100%);
    color: white;
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(6, 163, 218, 0.3);
    overflow: hidden;
    position: relative;
    min-width: 220px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(104, 164, 196, 0.4);
    border-color: transparent;
    color: white;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Animated elements for visual interest */
.bms-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(6, 163, 218, 0.1) 50%, transparent 70%);
    animation: shimmer 8s infinite linear;
    pointer-events: none;
    z-index: 3;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design for Compact CTA */
@media (max-width: 992px) {
    .bms-cta-section {
        padding: 50px 0;
    }
    
    .cta-button {
        padding: 15px 35px;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .bms-cta-section {
        padding: 45px 0;
    }
    
    .cta-title {
        margin-bottom: 15px;
    }
    
    .cta-description {
        line-height: 1.6;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .cta-action {
        text-align: center !important;
        margin-top: 0;
    }
    
    .cta-button {
        padding: 14px 30px;
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .bms-cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        margin-bottom: 15px;
    }
    
    .cta-description {
        line-height: 1.6;
    }
    
    .cta-button {
        width: 100%;
        max-width: 220px;
        padding: 12px 25px;
    }
    
    .cta-note {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .bms-cta-section {
        padding: 35px 20px;
    }
}
/* Landing Page Design Process Section */
.landing-process-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.process-heading {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}

.process-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(6, 163, 218, 0.1);
    z-index: -1;
}

.process-description {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Wrapper */
.steps-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #06a3da 0%, rgba(6, 163, 218, 0.2) 100%);
    z-index: 1;
    border-radius: 2px;
}

/* Step Item */
.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.step-item:last-child {
    margin-bottom: 0;
}

/* Step Left */
.step-left {
    flex-shrink: 0;
    width: 80px;
    position: relative;
    z-index: 3;
}

.step-number-box {
    width: 60px;
    height: 60px;
    background: #06a3da;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 5px 20px 5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.2);
    position: relative;
}

.step-item:hover .step-number-box {
    transform: scale(1.1) rotate(3deg);
    background: #091e3e;
    border-radius: 5px 20px 5px 20px;
}

/* Step Right */
.step-right {
    flex: 1;
}

.step-content-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(6, 163, 218, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover .step-content-card {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.1);
    border-color: rgba(6, 163, 218, 0.3);
}

.step-content-card::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-left: 1px solid rgba(6, 163, 218, 0.1);
    border-bottom: 1px solid rgba(6, 163, 218, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.step-item:hover .step-content-card::before {
    border-left-color: rgba(6, 163, 218, 0.3);
    border-bottom-color: rgba(6, 163, 218, 0.3);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(6, 163, 218, 0.1);
    border-radius: 15px 3px 15px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: #06a3da;
    transform: scale(1.1) rotate(3deg);
    border-radius: 3px 15px 3px 15px;
}

.step-icon i {
    font-size: 1.5rem;
    color: #06a3da;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon i {
    color: #ffffff;
}

.step-title {
    font-size: 1.5rem;
    /* font-weight: 600; */
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.step-item:hover .step-title {
    color: #06a3da;
}

.step-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.step-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.step-highlights span {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(6, 163, 218, 0.05);
    padding: 5px 12px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.step-item:hover .step-highlights span {
    background: rgba(6, 163, 218, 0.1);
}

.step-highlights span i {
    color: #06a3da;
    font-size: 0.9rem;
}

/* Features Showcase */
.features-showcase {
    margin-top: 70px;
    text-align: center;
}

.features-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 163, 218, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #06a3da;
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.1);
}

.feature-box i {
    font-size: 2rem;
    color: #06a3da;
    margin-bottom: 10px;
    display: block;
}

.feature-box span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
}

/* CTA Section */
.landing-cta-wrapper {
    text-align: center;
    background: linear-gradient(135deg, #06a3da, #0482b0);
    padding: 60px 40px;
    border-radius: 40px 10px 40px 10px;
    margin-top: 60px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.landing-cta-wrapper:hover {
    border-radius: 10px 40px 10px 40px;
}

.landing-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.landing-cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.landing-cta {
    display: inline-block;
    padding: 18px 50px;
    background: #ffffff;
    color: #06a3da;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px 5px 30px 5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.landing-cta:hover {
    background: #091e3e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 5px 30px 5px 30px;
}

.landing-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.landing-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; }

/* Responsive Design */
@media (max-width: 992px) {
    .process-heading {
        font-size: 2.4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .landing-process-section {
        padding: 60px 0;
    }
    
    .process-heading {
        font-size: 2rem;
    }
    
    .process-description {
        font-size: 1.1rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .step-item {
        gap: 15px;
    }
    
    .step-left {
        width: 60px;
    }
    
    .step-number-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content-card::before {
        display: none;
    }
    
    .step-item:hover .step-content-card {
        transform: translateY(-5px);
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
    
    .landing-cta-wrapper {
        padding: 40px 30px;
    }
    
    .landing-cta-title {
        font-size: 1.8rem;
    }
    
    .landing-cta-text {
        font-size: 1.1rem;
    }
    
    .landing-cta {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .process-heading {
        font-size: 1.8rem;
    }
    
    .process-description {
        font-size: 1rem;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .step-left {
        width: 50px;
    }
    
    .step-number-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content-card {
        padding: 20px;
    }
    
    .step-highlights {
        flex-direction: column;
        gap: 8px;
    }
    
    .step-highlights span {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .landing-cta-title {
        font-size: 1.6rem;
    }
    
    .landing-cta-text {
        font-size: 1rem;
    }
    
    .landing-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}


/* How Landing Page Benefits Your Business Section */
.landing-benefits-section {
    padding: 50px 0 50px 0;
    background:#e6f4ff;
    position: relative;
    overflow: hidden;
}


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.benefits-heading {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}

.benefits-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(6, 163, 218, 0.1);
    z-index: -1;
}

.benefits-description {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Benefit Card */
.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    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);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 163, 218, 0.3);
    box-shadow: 0 20px 40px rgba(6, 163, 218, 0.15);
}

.benefit-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;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, 0.1);
    border-radius: 20px 5px 20px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    background: #06a3da;
    transform: scale(1.1) rotate(3deg);
    border-radius: 5px 20px 5px 20px;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
}

.benefit-icon-wrapper i {
    font-size: 2rem;
    color: #06a3da;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon-wrapper i {
    color: #ffffff;
}

.benefit-title {
    font-size: 1.4rem;
    /* font-weight: 600; */
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.benefit-card:hover .benefit-title {
    color: #06a3da;
}

.benefit-desc {
    /* font-size: 1rem; */
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.benefit-stats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(6, 163, 218, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #06a3da;
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* 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; }

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-heading {
        font-size: 2.4rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .roi-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .roi-stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .landing-benefits-section {
        padding: 60px 0;
    }
    
    .benefits-heading {
        font-size: 2rem;
    }
    
    .benefits-description {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .roi-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .roi-number {
        font-size: 2.2rem;
    }
    
    .use-cases-title {
        font-size: 1.6rem;
    }
    
    .use-case-tag {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .benefits-cta-wrapper {
        padding: 40px 30px;
    }
    
    .benefits-cta-title {
        font-size: 1.8rem;
    }
    
    .benefits-cta-text {
        font-size: 1.1rem;
    }
    
    .benefits-cta {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .benefits-heading {
        font-size: 1.8rem;
    }
    
    .benefits-description {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon-wrapper i {
        font-size: 1.6rem;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .use-cases-title {
        font-size: 1.4rem;
    }
    
    .use-case-tag {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .benefits-cta-title {
        font-size: 1.6rem;
    }
    
    .benefits-cta-text {
        font-size: 1rem;
    }
    
    .benefits-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Why Invest in Professional Landing Page Design Services Section */
.invest-landing-section {
    padding: 50px 0 50px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.invest-heading {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}

.invest-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(6, 163, 218, 0.1);
    z-index: -1;
}

.invest-description {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Invest Grid */
.invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Invest Card */
.invest-card {
    background: #ffffff;
    border-radius: 20px 5px 20px 5px;
    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);
}

.invest-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;
}

.invest-card-inner {
    padding: 30px 25px;
    position: relative;
    z-index: 2;
}

.invest-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;
    z-index: 1;
}

.invest-card:hover::before {
    transform: scaleX(1);
}

.invest-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(6, 163, 218, 0.1);
    border-radius: 15px 3px 15px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.invest-card:hover .invest-icon-wrapper {
    background: #06a3da;
    transform: scale(1.1) rotate(3deg);
    border-radius: 3px 15px 3px 15px;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
}

.invest-icon-wrapper i {
    font-size: 1.8rem;
    color: #06a3da;
    transition: all 0.4s ease;
}

.invest-card:hover .invest-icon-wrapper i {
    color: #ffffff;
}

.invest-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.invest-card:hover .invest-title {
    color: #06a3da;
}

.invest-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.invest-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.invest-points span {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.invest-points span i {
    color: #06a3da;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.invest-card:hover .invest-points span i {
    color: #091e3e;
}

/* Final CTA */
.invest-cta-wrapper {
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 30px 5px 30px 5px;
    margin-top: 60px;
    box-shadow: 0 15px 35px rgba(6, 163, 218, 0.1);
    border: 1px solid rgba(6, 163, 218, 0.15);
    transition: all 0.3s ease;
}

.invest-cta-wrapper:hover {
    border-radius: 5px 30px 5px 30px;
    box-shadow: 0 25px 45px rgba(6, 163, 218, 0.15);
}

.invest-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.invest-cta-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.invest-cta {
    display: inline-block;
    padding: 18px 50px;
    background: #06a3da;
    color: #ffffff;
    font-size: 1.2rem;
    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;
}

.invest-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;
}

.invest-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.invest-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; }
[data-delay="1.2s"] { transition-delay: 1.2s; }
[data-delay="1.3s"] { transition-delay: 1.3s; }

/* Responsive Design */
@media (max-width: 992px) {
    .invest-heading {
        font-size: 2.4rem;
    }
    
    .invest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .invest-landing-section {
        padding: 60px 0;
    }
    
    .invest-heading {
        font-size: 2rem;
    }
    
    .invest-description {
        font-size: 1.1rem;
    }
    
    .invest-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .invest-card-inner {
        padding: 25px 20px;
    }
    
    .invest-cta-wrapper {
        padding: 40px 30px;
    }
    
    .invest-cta-title {
        font-size: 1.8rem;
    }
    
    .invest-cta-text {
        font-size: 1.1rem;
    }
    
    .invest-cta {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .invest-heading {
        font-size: 1.8rem;
    }
    
    .invest-description {
        font-size: 1rem;
    }
    
    .invest-title {
        font-size: 1.2rem;
    }
    
    .invest-cta-title {
        font-size: 1.6rem;
    }
    
    .invest-cta-text {
        font-size: 1rem;
    }
    
    .invest-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* 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%);
}

.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;
    color: #091e3e;
    position: relative;
    display: inline-block;
}
/* 
.main-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #06a6e0, #0d6efd);
    border-radius: 2px;
} */

/* Services Grid */
.services-grid {
    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;
    }
    
    .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;
    }
}


/* What to Expect from Deuglo Section - 8 Flip Cards Design */
.deuglo-experience-section {
    padding: 50px 0 50px 0;
     background: #e6f4ff;
    position: relative;
    overflow: hidden;
}


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.experience-heading {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}

.experience-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(6, 163, 218, 0.1);
    z-index: -1;
}

.experience-description {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Experience Cards - 8 Cards Grid */
.experience-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Flip Card */
.exp-card {
    position: relative;
    height: 300px;
    perspective: 1500px;
    cursor: pointer;
}

.exp-card-front, .exp-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px 5px 30px 5px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(6, 163, 218, 0.1);
}

.exp-card-front {
    background: #ffffff;
    transform: rotateY(0deg);
    display: flex;
    flex-direction: column;
}

.exp-card-back {
    background: #06a3da;
    color: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.exp-card:hover .exp-card-front {
    transform: rotateY(-180deg);
}

.exp-card:hover .exp-card-back {
    transform: rotateY(0deg);
}

.exp-icon-circle {
    width: 60px;
    height: 60px;
    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.3s ease;
}

.exp-card-front:hover .exp-icon-circle {
    background: #06a3da;
    border-radius: 3px 20px 3px 20px;
}

.exp-icon-circle i {
    font-size: 1.8rem;
    color: #06a3da;
    transition: all 0.3s ease;
}

.exp-card-front:hover .exp-icon-circle i {
    color: #ffffff;
}

.exp-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.exp-short {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.exp-read-more {
    font-size: 0.9rem;
    color: #06a3da;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.exp-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.exp-card:hover .exp-read-more i {
    transform: translateX(5px);
}

.exp-full {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 15px;
    text-align: left;
}

/* Stats Row */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.stat-block {
    text-align: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border: 3px solid rgba(6, 163, 218, 0.2);
    border-radius: 30px 5px 30px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #ffffff;
}

.stat-block:hover .stat-circle {
    border-color: #06a3da;
    transform: scale(1.05) rotate(2deg);
    border-radius: 5px 30px 5px 30px;
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #06a3da;
    transition: all 0.3s ease;
}

.stat-block:hover .stat-number {
    color: #091e3e;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Promise Banner */
.promise-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #06a3da, #0482b0);
    border-radius: 40px 5px 40px 5px;
    padding: 40px;
    color: #ffffff;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promise-item i {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 20px 3px 20px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promise-item:hover i {
    transform: scale(1.1) rotate(3deg);
    border-radius: 3px 20px 3px 20px;
    background: #ffffff;
    color: #06a3da;
}

.promise-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.promise-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Testimonial Row */
.testimonial-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 30px 5px 30px 5px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 163, 218, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.3);
    border-radius: 5px 30px 5px 30px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(6, 163, 218, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    color: rgba(6, 163, 218, 0.2);
    transform: rotate(5deg);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initials {
    width: 50px;
    height: 50px;
    background: #06a3da;
    border-radius: 15px 3px 15px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-initials {
    border-radius: 3px 15px 3px 15px;
    background: #091e3e;
}

.testimonial-author strong {
    font-size: 1rem;
    color: #1a1a1a;
    display: block;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #06a3da;
}

/* 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) {
    .experience-heading {
        font-size: 2.4rem;
    }
    
    .experience-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promise-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .deuglo-experience-section {
        padding: 60px 0;
    }
    
    .experience-heading {
        font-size: 2rem;
    }
    
    .experience-description {
        font-size: 1.1rem;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-row {
        grid-template-columns: 1fr;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .experience-heading {
        font-size: 1.8rem;
    }
    
    .experience-description {
        font-size: 1rem;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
    }
    
    .promise-item {
        flex-direction: column;
        text-align: center;
    }
    
    .exp-card {
        height: 320px;
    }
}

/* 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;
    }
}


/* Software CTA Section Styles - Compact Version */
.software-cta-section {
    padding: 60px 0;
    background: #06a3da;
    position: relative;
    overflow: hidden;
}

.software-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.software-cta-content {
    /*max-width: 700px;*/
    margin: 0 auto;
}

.software-cta-heading {
    /* font-weight: 700; */
    color: #091e3e;
    margin-bottom: 15px;
    /* line-height: 1.2; */
}

.software-cta-description {
    color: rgba(255, 255, 255, 0.9);
     padding-bottom: 35px;
    /* line-height: 1.5; */
}

.software-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px !important;
    flex-wrap: wrap;
}

.software-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;
}

.software-cta-btn-primary {
    background: white;
    color: #0d6efd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.software-cta-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.software-cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.software-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .software-cta-section {
        padding: 50px 0;
    }
    
    .software-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .software-cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .software-cta-section {
        padding: 40px 0;
    }
    
    .software-cta-btn {
        padding: 10px 20px;
    }
}