       /* Additional inline styles to ensure single-row layouts */
       .service-grid {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 20px;
    }
    h6{
        font-size: 13px;
        font-weight: lighter;
    }

    h7{
        font-size: 9px;
        
    }

    .service-card {
        flex: 1;
        min-width: 0; /* Prevents flex items from overflowing */
    }
    
    .portfolio-grid {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 20px;
    }
    
    .portfolio-item {
        flex: 1;
        min-width: 0; /* Prevents flex items from overflowing */
    }
    
   /* Section container */
.how-it-works-section {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
  }
  
  /* Section header */
  .section-header {
    text-align: center;
    margin-bottom: 80px; /* Increased spacing */
  }
  
  .section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #222;
  }
  
  .section-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Process steps container */
  .process-steps-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
  }
  
  
  
  /* Process steps row */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
  }
  
  
  
  /* Step number circles */
  .step-number {
    width: 50px;
    height: 50px;
    background: #2196f3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
    box-shadow: 0 4px 10px rgba(33,150,243,0.3);
    z-index: 2;
  }
  
  /* Individual step card */
  .step {
    background: white;
    border-radius: 10px;
    padding: 35px 25px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    margin-top: 50px; /* Space for the number and connector */
  }
  
  /* Step titles */
  .step h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    color: #333;
  }
  
  /* Step content */
  .step p {
    color: #f80a0a;
    line-height: 1.6;
    margin: 0;
  }
  

  
  
  
  /* No connector after last step */
  .step:last-child .connector {
    display: none;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .process-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 50px 30px;
    }
    
    .top-separator {
      display: none;
    }
    
    .connector {
      display: none;
    }
  }
  
  @media (max-width: 576px) {
    .process-steps {
      grid-template-columns: 1fr;
    }
  }
    
   
    
    /* MODIFIED: Make stats section thinner */
    .stats-section {
        padding: 40px 0; /* Reduced padding */
        min-height: auto; /* Override the min-height for this section */
    }
    
    .stats-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 800px; /* Limit maximum width */
        margin: 0 auto; /* Center the grid */
        flex-wrap: wrap;
    }
    
    .stat-item {
        padding: 15px; /* Reduced padding */
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 2rem; /* Smaller font size */
        margin-bottom: 5px;
    }
    
    .stat-item p {
        font-size: 0.8rem; /* Smaller font size */
    }
    
    /* MODIFIED: Make testimonials section smaller */
    .testimonials {
        padding: 40px 0; /* Reduced padding */
        min-height: auto; /* Override the min-height for this section */
    }
    
    .testimonials .section-header {
        margin-bottom: 20px; /* Reduced margin */
    }
    
    .testimonial-slider {
        max-width: 800px; /* Limit maximum width */
        margin: 0 auto; /* Center the slider */
    }
    
    .testimonial {
        padding: 20px; /* Reduced padding */
    }
    
    .testimonial-content p {
        font-size: 0.9rem; /* Smaller font size */
        line-height: 1.4;
    }
    
    .testimonial-author {
        margin-top: 15px; /* Reduced margin */
    }
    
    .testimonial-author img {
        width: 50px; /* Smaller image */
        height: 50px;
    }
    
    .testimonial-author h4 {
        font-size: 0.9rem; /* Smaller font size */
    }
    
    .testimonial-author p {
        font-size: 0.8rem; /* Smaller font size */
    }
    
    .testimonial-nav {
        margin-top: 15px; /* Reduced margin */
    }
    
    /* MODIFIED: Make newsletter section thinner */
    .newsletter {
        padding: 30px 0; /* Reduced padding */
        min-height: auto; /* Override the min-height for this section */
    }
    
    .newsletter-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 800px; /* Limit maximum width */
        margin: 0 auto; /* Center the content */
        padding: 20px 0; /* Reduced padding */
    }
    
    .newsletter-text {
        flex: 1;
        padding-right: 20px;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem; /* Smaller font size */
        margin-bottom: 5px;
    }
    
    .newsletter-text p {
        font-size: 0.85rem; /* Smaller font size */
        line-height: 1.4;
    }
    
    .newsletter-form {
        flex: 1;
    }
    
    .form-group {
        display: flex;
    }
    
    .form-group input {
        height: 40px; /* Smaller input field */
        font-size: 0.85rem; /* Smaller font size */
    }
    
    .form-group button {
        padding: 0 15px; /* Reduced padding */
        height: 40px; /* Match input height */
        font-size: 0.85rem; /* Smaller font size */
    }




/* Base Styles */
:root {
    --primary-color: #1e90ff;
    --primary-dark: #0066cc;
    --secondary-color: #111827;
    --accent-color: #f3f4f6;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --white: #ffffff;
    --black: #000000;
    --gold: #d4af37;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px */
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.6rem;
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h5 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.separator {
    width: 100%;
    text-align: center;
    margin: 1.5rem auto 3rem;
}

.separator span {
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
}

.separator span::before, .separator span::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.separator span::before {
    left: -10px;
}

.separator span::after {
    right: -10px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.secondary-btn:hover {
    background-color: rgba(17, 24, 39, 0.05);
    transform: translateY(-3px);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.outline-btn span {
    position: relative;
    z-index: 2;
}

.outline-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.outline-btn:hover {
    color: var(--white);
}

.outline-btn:hover::before {
    width: 100%;
}

.outline-light-btn {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    position: relative;
    z-index: 1;
}

.outline-light-btn span {
    position: relative;
    z-index: 2;
}

.outline-light-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--white);
    transition: var(--transition);
    z-index: -1;
}

.outline-light-btn:hover {
    color: var(--primary-color);
}

.outline-light-btn:hover::before {
    width: 100%;
}

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container.scrolled {
    padding: 1.5rem 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
/* Hide header when scrolling down */
.nav-container.hide {
    transform: translateY(-100%);
}

.logo h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo h1 span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 1.6rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 2.4rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    position: relative;
    background: url('/api/placeholder/1920/1080') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 2.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Continuing Hero Section */
.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

.scroll-indicator p {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

/* Featured Clients Section */
.featured-clients {
    padding: 5rem 0;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.client-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.client-logo {
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Services Section */
.services {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.8rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.03), rgba(30, 144, 255, 0.05));
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 5000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    font-size: 1.6rem;
}

.service-link:hover {
    gap: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: url('/api/placeholder/1920/500') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(30, 144, 255, 0.8));
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--accent-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.step-connector {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    flex: 0.5;
    position: relative;
    z-index: 1;
    max-width: 100px;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.3);
}

.step h3 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.step p {
    color: var(--light-text);
    font-size: 1.6rem;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--white);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--light-text);
    cursor: pointer;
    padding: 1rem 2rem;
    transition: var(--transition);
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    color: var(--primary-color);
}

.filter-btn.active::after {
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 350px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-content {
    text-align: center;
    color: var(--white);
    padding: 3rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-content h4 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.portfolio-content p {
    font-size: 1.6rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.portfolio-link {
    color: var(--primary-color);
    font-weight: 500;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 0.5rem;
    transition: var(--transition);
    font-size: 1.6rem;
}

.portfolio-link:hover {
    color: var(--white);
    border-color: var(--white);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-cta {
    text-align: center;
}

/* Testimonials Section */
:root {
    --primary-color: #007bff;
    --secondary-color: #333;
    --accent-color: #f8f9fa;
    --white: #ffffff;
    --gold: #ffc107;
    --light-text: #666;
    --border-radius: 10px;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.separator {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.separator span {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header h6 {
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 400;
}

.testimonials {
    background-color: var(--accent-color);
    padding: 6rem 0;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
}

.testimonial {
    background-color: var(--white);
    padding: 5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial-rating {
    margin-bottom: 2rem;
    color: var(--gold);
    font-size: 1.8rem;
}

.testimonial-content {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.testimonial-content h6 {
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.testimonial-author p {
    color: var(--light-text);
    font-size: 1.4rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    background-color: var(--white);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background: url('/api/placeholder/1920/800') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(30, 144, 255, 0.75));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 4.5rem;
    margin: 1rem 0 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--white);
    padding: 6rem 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.newsletter-text p {
    font-size: 1.6rem;
    color: var(--light-text);
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    display: flex;
    gap: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 1.6rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.about-column {
    min-width: 300px;
    flex: 1.5;
}

.footer-logo h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.footer-logo h2 span {
    color: var(--primary-color);
}

.footer-column p {
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
    line-height: 1.7;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 1.5rem;
}

.footer-column ul li a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 1.6rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.8rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-size: 1.6rem;
}

.contact-info li i {
    min-width: 20px;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 1.4rem;
}

.legal-links {
    display: flex;
    gap: 3rem;
}

.legal-links a {
    opacity: 0.7;
    transition: var(--transition);
    font-size: 1.4rem;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 55%;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        width: 100%;
    }
    
    .step-connector {
        width: 2px;
        height: 50px;
        max-width: none;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 52%;
    }
    
    .nav-container {
        padding: 2rem;
    }
    
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .nav-links.active, .nav-buttons.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 8rem;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 3rem 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        gap: 2rem;
    }
    
    .nav-buttons.active {
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 4.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .testimonial {
        padding: 3rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 50%;
    }
    
    .hero-content h1 {
        font-size: 3.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 3.2rem;
    }
    
    .cta-content h2 {
        font-size: 3.2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-content {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Add viewport-section class */
.viewport-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 50px 0;
}

/* Adjust section header for viewport sections */
.viewport-section .section-header {
    margin-bottom: 3rem;
}

.viewport-section .section-header h2 {
    font-size: 3.5rem;
}

.viewport-section .section-header p {
    font-size: 1.6rem;
}

/* More compact service cards */
.viewport-section .service-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    height: calc(100vh - 250px);
    max-height: 450px;
}

.viewport-section .service-card {
    flex: 1;
    min-width: 0;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.viewport-section .service-icon {
    margin-bottom: 1.5rem;
}

.viewport-section .service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.viewport-section .service-card p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex: 1;
}

/* More compact portfolio section */
.viewport-section .portfolio-filter {
    margin-bottom: 2rem;
}

.viewport-section .portfolio-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    height: calc(100vh - 350px);
    max-height: 350px;
    margin-bottom: 2rem;
}

.viewport-section .portfolio-item {
    flex: 1;
    min-width: 0;
    height: 100%;
}

.viewport-section .portfolio-cta {
    margin-top: 1rem;
}

.viewport-section .portfolio-content h4 {
    font-size: 1.8rem;
}

.viewport-section .portfolio-content p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .viewport-section .service-grid,
    .viewport-section .portfolio-grid {
        overflow-x: auto;
        padding-bottom: 20px;
    }
    
    .viewport-section .service-card,
    .viewport-section .portfolio-item {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .viewport-section {
        height: auto;
        min-height: auto;
        padding: 80px 0;
    }
    
    .viewport-section .service-grid,
    .viewport-section .portfolio-grid {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }
    
    .viewport-section .service-card,
    .viewport-section .portfolio-item {
        height: auto;
    }
}
/* Service Page Specific Styles advertising */

/* Service Hero Section */
.service-hero {
    background: url('/api/placeholder/1920/1080') center/cover no-repeat;
    height: 80vh;
    min-height: 600px;
}

/* Location Finder Section */
.location-finder {
    background-color: var(--accent-color);
    padding: 80px 0;
}

.location-form {
    max-width: 800px;
    margin: 0 auto;
}

.location-form .form-group {
    margin-bottom: 30px;
}

.location-results {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    min-height: 200px;
}

.results-message {
    text-align: center;
    color: var(--light-text);
    font-size: 1.6rem;
}

.available-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.available-service-item {
    background-color: rgba(30, 144, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.available-service-item:hover {
    background-color: rgba(30, 144, 255, 0.1);
    transform: translateY(-5px);
}

.available-service-item h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.available-service-item p {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.service-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-action .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
}

/* Advertising Services Cards */
/* Advertising Services Cards */
.advertising-services {
    margin-bottom: 2rem;
    padding-bottom: 15px;
    width: 100%;
}

/* Regular desktop view */
.advertising-services.last-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.ad-service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(237, 2, 2, 0.05);
    display: flex;
    flex-direction: column;
    flex: 1 0 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.5rem);
    padding: 0;
    margin-bottom: 15px;
}

.ad-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.03), rgba(30, 144, 255, 0.05));
    transition: var(--transition);
    z-index: -1;
}

.ad-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ad-service-card:hover::before {
    height: 100%;
}

/* Image section */
.service-image {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ad-service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Content section */
.service-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Service icon */
.service-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

/* Title styling */
.service-content h3 {
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
    line-height: 1.2;
}

/* Description text */
.service-content p {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--light-text);
}

/* Feature list */
.service-features {
    margin: 0.8rem 0;
    list-style: none;
    padding-left: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--light-text);
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Action buttons */
.service-actions {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 0.8rem;
}

.service-book-btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
}

/* Link styling */
.service-link {
    font-size: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Mobile Menu Toggle */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 2.5rem;
            color: var(--secondary-color);
            padding: 0.5rem;
        }

        .hamburger:hover {
            color: var(--primary-color);
        }

        /* Mobile Navigation Styles */
        @media screen and (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                gap: 1rem;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-buttons {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .nav-container {
                padding: 1rem;
            }
        }


/* CRITICAL MOBILE FIX */
@media screen and (max-width: 768px) {
    .advertising-services.last-row {
        display: block; /* Force block display on mobile */
    }
    
    .ad-service-card {
        flex: 1 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    /* Disable hover effects on mobile */
    .ad-service-card:hover {
        transform: none;
    }
    
    .ad-service-card:hover .service-image img {
        transform: none;
    }
}

/* Tablet view */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .ad-service-card {
        flex: 1 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }
}


/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 50px 0;
}

.modal-content {
    background-color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    border-radius: var(--border-radius);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.8rem;
    cursor: pointer;
    color: var(--light-text);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.modal-content h2 span {
    color: var(--primary-color);
}

.modal-content p {
    font-size: 1.6rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    flex: 1;
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1.6rem;
    outline: none;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .advertising-services.last-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 500px;
    }
    
    .modal-content {
        padding: 3rem 2rem;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-link {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .location-results {
        padding: 20px;
    }
    
    .available-services-container {
        grid-template-columns: 1fr;
    }
    
    .available-service-item {
        padding: 15px;
    }
    
}


    /* New Card Styles */
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 3rem;
        margin: 5rem 0;
    }

    .feature-card {
        background-color: var(--white);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        padding: 3rem 2.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        border-top: 4px solid var(--primary-color);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .feature-card .card-icon {
        font-size: 4rem;
        color: var(--primary-color);
        margin-bottom: 2rem;
        display: inline-block;
    }

    .feature-card h4 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        color: var(--secondary-color);
    }

    .feature-card p {
        font-size: 1.6rem;
        color: var(--light-text);
        margin-bottom: 2.5rem;
        flex-grow: 1;
    }

    .feature-card .card-link {
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        transition: var(--transition);
    }

    .feature-card .card-link i {
        margin-left: 1rem;
        transition: var(--transition);
    }

    .feature-card .card-link:hover {
        color: var(--primary-dark);
    }

    .feature-card .card-link:hover i {
        transform: translateX(5px);
    }

    /* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--accent-color);
    padding: 8rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 5rem;
}

.mission-vision-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.mission-vision-card h3 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
}

.mission-vision-card .card-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(30, 144, 255, 0.05);
    border-radius: 0 0 0 100%;
    z-index: 1;
}

.mission-vision-card .card-content {
    position: relative;
    z-index: 2;
}

.mission-vision-card p {
    font-size: 1.7rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mission-vision-card .bullet-points {
    margin-top: 2.5rem;
}

.mission-vision-card .bullet-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.mission-vision-card .bullet-icon {
    color: var(--primary-color);
    margin-right: 1.5rem;
    font-size: 1.8rem;
    margin-top: 0.3rem;
}

.mission-vision-card .bullet-text {
    font-size: 1.6rem;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-vision-section {
        padding: 6rem 0;
    }
    
    .mission-vision-grid {
        gap: 4rem;
    }
    
    .mission-vision-card {
        padding: 3rem;
    }
    
    .mission-vision-card h3 {
        font-size: 2.5rem;
    }
    
    .mission-vision-card .card-shape {
        width: 120px;
        height: 120px;
    }
    
    .mission-vision-card p {
        font-size: 1.6rem;
    }
    
    .mission-vision-card .bullet-icon {
        font-size: 1.7rem;
    }
    
    .mission-vision-card .bullet-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 4rem 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-vision-card {
        padding: 2.5rem;
    }
    
    .mission-vision-card h3 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .mission-vision-card .card-shape {
        width: 100px;
        height: 100px;
    }
    
    .mission-vision-card p {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-vision-card .bullet-points {
        margin-top: 2rem;
    }
    
    .mission-vision-card .bullet-point {
        margin-bottom: 1.2rem;
    }
    
    .mission-vision-card .bullet-icon {
        margin-right: 1.2rem;
        font-size: 1.6rem;
    }
    
    .mission-vision-card .bullet-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 3rem 0;
    }
    
    .mission-vision-grid {
        gap: 2.5rem;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }
    
    .mission-vision-card h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-vision-card .card-shape {
        width: 80px;
        height: 80px;
    }
    
    .mission-vision-card p {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .mission-vision-card .bullet-points {
        margin-top: 1.5rem;
    }
    
    .mission-vision-card .bullet-point {
        margin-bottom: 1rem;
    }
    
    .mission-vision-card .bullet-icon {
        margin-right: 1rem;
        font-size: 1.5rem;
        margin-top: 0.2rem;
    }
    
    .mission-vision-card .bullet-text {
        font-size: 1.3rem;
    }
}

    /* About Hero Section */
    .about-hero {
        background: url('/api/placeholder/1920/800') center/cover no-repeat;
        background-attachment: fixed;
        color: var(--white);
        position: relative;
        padding-top: 180px;
        padding-bottom: 100px;
    }

    .about-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(30, 144, 255, 0.75));
        z-index: 1;
    }

    .about-hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 5rem;
        margin-bottom: 2rem;
    }

    .about-hero-content p {
        font-size: 2rem;
        margin-bottom: 3rem;
        opacity: 0.9;
    }

    /* About Content Section */
    .about-content {
        background-color: var(--white);
    }

    .about-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 6rem;
    }

    .about-intro h2 {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
        color: var(--secondary-color);
    }

    .about-intro .highlight {
        font-size: 2.2rem;
        line-height: 1.5;
        font-weight: 500;
        margin: 2.5rem 0;
        color: var(--primary-color);
    }

    .about-intro p {
        font-size: 1.8rem;
        color: var(--light-text);
        margin-bottom: 2rem;
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 5rem;
        margin-bottom: 5rem;
    }

    .about-col h3 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
        color: var(--secondary-color);
    }

    .about-col p {
        font-size: 1.6rem;
        color: var(--light-text);
        margin-bottom: 2rem;
    }

    /* Search Container Styles */
.search-container {
    margin: 0 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.search-container form {
    display: flex;
    align-items: center;
}

.search-container input[type="text"] {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    width: 180px;
    outline: none;
    transition: all 0.3s ease;
}

.search-container input[type="text"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.search-container button {
    padding: 8px 12px;
    background-color: #007bff; /* Match your primary button color */
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}

/* Search Results Styles */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-item h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
}

.search-result-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.highlight {
    background-color: rgba(255, 235, 59, 0.4);
    font-weight: bold;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .search-container {
        order: 3;
        width: 100%;
        margin: 10px 0;
    }
    
    .search-container form {
        width: 100%;
    }
    
    .search-container input[type="text"] {
        width: 100%;
    }
}

/* Robot styling */
:root {
--robot-accent: #40E0D0; /* Turquoise color for robot accents */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

/* WhatsApp Styling - MODIFIED to position in left corner with reduced size */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Changed from right: 130px to left: 30px */
    width: 50px; /* Reduced from 60px to 50px */
    height: 50px; /* Reduced from 60px to 50px */
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 70%; /* Increased from 60% to 70% for clearer icon */
    height: 70%; /* Increased from 60% to 70% for clearer icon */
    position: relative;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    fill: white; /* Ensuring the icon is white and clear */
}

.whatsapp-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-bubble:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
}

.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px; /* Reduced from 80px to 50px to match WhatsApp button */
    height: 50px; /* Reduced from 80px to 50px to match WhatsApp button */
    background-color: #9fc3ff; /* Light blue background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.chatbot:hover .whatsapp-tooltip {
    opacity: 1;
}

.chatbot-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
}


/* Robot styling */
.robot {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-body {
    position: absolute;
    bottom: 3px;
    width: 30px; /* Reduced size to match new bubble size */
    height: 24px; /* Reduced size to match new bubble size */
    background-color: #f0f0f0;
    border-radius: 12px 12px 10px 10px;
}

.robot-head {
    position: absolute;
    bottom: 22px; /* Adjusted for new sizes */
    width: 25px; /* Reduced size to match new bubble size */
    height: 20px; /* Reduced size to match new bubble size */
    background-color: #111;
    border-radius: 50% 50% 45% 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Added robot eyes */
.robot-eyes {
    display: flex;
    justify-content: space-around;
    width: 18px; /* Reduced size for smaller robot */
    position: absolute;
    top: 5px; /* Adjusted position */
}

.robot-eye {
    width: 5px; /* Reduced size for smaller robot */
    height: 5px; /* Reduced size for smaller robot */
    background-color: var(--robot-accent);
    border-radius: 50%;
    position: relative;
}

/* Default neutral mouth */
.robot-mouth {
    width: 12px; /* Reduced size for smaller robot */
    height: 1.5px; /* Reduced size for smaller robot */
    background-color: var(--robot-accent);
    position: absolute;
    bottom: 5px; /* Adjusted position */
    transition: all 0.3s ease;
}

/* Smile that appears on hover */
.robot-smile {
    width: 12px; /* Reduced size for smaller robot */
    height: 6px; /* Reduced size for smaller robot */
    background-color: var(--robot-accent);
    border-radius: 0 0 6px 6px; /* Adjusted for smaller size */
    position: absolute;
    bottom: 3px; /* Adjusted position */
    display: none;
    transition: all 0.3s ease;
}

/* Show smile on hover */
.chat-bubble:hover .robot-smile {
    display: block;
}

/* Hide neutral mouth on hover */
.chat-bubble:hover .robot-mouth {
    display: none;
}

.robot-ear {
    position: absolute;
    top: 7px; /* Adjusted position */
    width: 30px; /* Reduced size for smaller robot */
    height: 9px; /* Reduced size for smaller robot */
    background-color: #333;
    border-radius: 9px; /* Adjusted for smaller size */
}

.robot-dot {
    position: absolute;
    bottom: 12px; /* Adjusted position */
    width: 7px; /* Reduced size for smaller robot */
    height: 7px; /* Reduced size for smaller robot */
    background-color: var(--robot-accent);
    border-radius: 50%;
}

.robot-hand {
    position: absolute;
    width: 9px; /* Reduced size for smaller robot */
    height: 15px; /* Reduced size for smaller robot */
    background-color: #f0f0f0;
    border-radius: 6px; /* Adjusted for smaller size */
}

.robot-hand.left {
    left: 3px; /* Adjusted position */
    top: 15px; /* Adjusted position */
    transform-origin: top center;
    animation: wave 2s infinite;
}

.robot-hand.right {
    right: 3px; /* Adjusted position */
    top: 15px; /* Adjusted position */
}

.speech-bubble {
    position: absolute;
    top: -25px;
    right: -20px; /* Adjusted position */
    width: 90px; /* Reduced size but still fits text */
    height: 25px; /* Reduced height */
    background-color: var(--primary-color);
    border-radius: 10px; /* Slightly smaller radius */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 10px; /* Smaller font size */
    padding: 0 6px;
}

.chat-bubble:hover .speech-bubble {
    opacity: 1;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.chat-window {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    z-index: 9998;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.chat-header {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-title {
    display: flex;
    align-items: center;
}

.chat-header-avatar {
    width: 30px;
    height: 30px;
    background-color: #9fc3ff;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.chat-header-avatar .mini-robot {
    transform: scale(0.4);
    margin-top: 5px;
}

/* Adding eyes and mouth to mini robot */
.mini-robot .robot-eyes {
    transform: scale(0.8);
    top: 5px;
}

.mini-robot .robot-mouth {
    transform: scale(0.8);
    bottom: 5px;
}

.mini-robot .robot-smile {
    transform: scale(0.8);
    bottom: 3px;
}

.chat-body {
    height: 400px;
    border: 1px solid var(--chat-border);
    border-top: none;
    background-color: white;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
}

.bot-message {
    background-color: var(--bot-message-bg);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background-color: var(--user-message-bg);
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid var(--chat-border);
}

.chat-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--chat-border);
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    margin-left: 10px;
    cursor: pointer;
}

.typing-indicator {
    display: none;
    padding: 8px 12px;
    background-color: var(--bot-message-bg);
    border-radius: 15px;
    margin-bottom: 10px;
    width: fit-content;
    border-bottom-left-radius: 5px;
}

.typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #666;
    border-radius: 50%;
    margin-right: 3px;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
    margin-right: 0;
}

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Animation for chat window */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-window.active {
    display: block;
    animation: fadeIn 0.3s ease-out forwards;
}


        /* Additional inline styles to ensure single-row layouts */
        .service-grid {
            display: flex;
            justify-content: space-evenly;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .service-card {
            flex: 1;
            min-width: 0; /* Prevents flex items from overflowing */
        }
        
        .portfolio-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: nowrap;
            gap: 20px;
        }
        
        .portfolio-item {
            flex: 1;
            min-width: 0; /* Prevents flex items from overflowing */
        }
        
        .process-steps {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            gap: 10px;
        }
        
        .step {
            flex: 1;
            min-width: 0; /* Prevents flex items from overflowing */
        }
        
        .step-connector {
            width: 30px;
            flex: none;
        }
        
        /* Ensure sections fit in viewport */
        section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .container {
            max-width: 100%;
            padding: 0 30px;
        }
        
        /* Adjust font sizes for better fit */
        .section-header h2 {
            font-size: 2.5rem;
        }
        
        .section-header p {
            font-size: 1rem;
        }
        
        .service-card p, .portfolio-content p, .step p {
            font-size: 0.9rem;
        }
        
        /* MODIFIED: Make stats section thinner */
        .stats-section {
            padding: 40px 0; /* Reduced padding */
            min-height: auto; /* Override the min-height for this section */
        }
        
        .stats-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 800px; /* Limit maximum width */
            margin: 0 auto; /* Center the grid */
        }
        
        .stat-item {
            padding: 15px; /* Reduced padding */
            text-align: center;
        }
        
        .stat-item h3 {
            font-size: 2rem; /* Smaller font size */
            margin-bottom: 5px;
        }
        
        .stat-item p {
            font-size: 0.8rem; /* Smaller font size */
        }
        
        /* MODIFIED: Make testimonials section smaller */
        .testimonials {
            padding: 40px 0; /* Reduced padding */
            min-height: auto; /* Override the min-height for this section */
        }
        
        .testimonials .section-header {
            margin-bottom: 20px; /* Reduced margin */
        }
        
        .testimonial-slider {
            max-width: 800px; /* Limit maximum width */
            margin: 0 auto; /* Center the slider */
        }
        
        .testimonial {
            padding: 20px; /* Reduced padding */
        }
        
        .testimonial-content p {
            font-size: 0.9rem; /* Smaller font size */
            line-height: 1.4;
        }
        
        .testimonial-author {
            margin-top: 15px; /* Reduced margin */
        }
        
        .testimonial-author img {
            width: 50px; /* Smaller image */
            height: 50px;
        }
        
        .testimonial-author h4 {
            font-size: 0.9rem; /* Smaller font size */
        }
        
        .testimonial-author p {
            font-size: 0.8rem; /* Smaller font size */
        }
        
        .testimonial-nav {
            margin-top: 15px; /* Reduced margin */
        }
        
        /* MODIFIED: Make newsletter section thinner */
        .newsletter {
            padding: 30px 0; /* Reduced padding */
            min-height: auto; /* Override the min-height for this section */
        }
        
        .newsletter-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 800px; /* Limit maximum width */
            margin: 0 auto; /* Center the content */
            padding: 20px 0; /* Reduced padding */
        }
        
        .newsletter-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .newsletter-text h3 {
            font-size: 1.5rem; /* Smaller font size */
            margin-bottom: 5px;
        }
        
        .newsletter-text p {
            font-size: 0.85rem; /* Smaller font size */
            line-height: 1.4;
        }
        
        .newsletter-form {
            flex: 1;
        }
        
        .form-group {
            display: flex;
        }
        
        .form-group input {
            height: 40px; /* Smaller input field */
            font-size: 0.85rem; /* Smaller font size */
        }
        
        .form-group button {
            padding: 0 15px; /* Reduced padding */
            height: 40px; /* Match input height */
            font-size: 0.85rem; /* Smaller font size */
        }

        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c3e50;
        }
        
        .logo-text span {
            color: #3498db;
        }
        