/*
==============================================
  Varahi Constructions - Modern CSS
  Author: Varahi Constructions
  Version: 1.0
==============================================
*/

/* CSS Variables */
:root {
    /* Color Palette */
    --white: #ffffff;
    --black: #000000;
    --dark: #1a1a1a;
    
    /* New primary color - warm gold */
    --primary: #f05725;
    --primary-dark: #e03a03;
    --primary-light: #ee683b;
    
    --secondary: #232A34;
    --secondary-light: #343E4D;
    --secondary-dark: #1A2028;
    
    /* Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-md: 1rem;      /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;   /* 24px */
    --font-size-3xl: 1.875rem; /* 30px */
    --font-size-4xl: 2.25rem;  /* 36px */
    --font-size-5xl: 3rem;     /* 48px */
    --font-size-6xl: 3.75rem;  /* 60px */
    
    /* Spacing */
    --spacing-1: 0.25rem;  /* 4px */
    --spacing-2: 0.5rem;   /* 8px */
    --spacing-3: 0.75rem;  /* 12px */
    --spacing-4: 1rem;     /* 16px */
    --spacing-5: 1.25rem;  /* 20px */
    --spacing-6: 1.5rem;   /* 24px */
    --spacing-8: 2rem;     /* 32px */
    --spacing-10: 2.5rem;  /* 40px */
    --spacing-12: 3rem;    /* 48px */
    --spacing-16: 4rem;    /* 64px */
    --spacing-20: 5rem;    /* 80px */
    --spacing-24: 6rem;    /* 96px */
    --spacing-32: 8rem;    /* 128px */
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;  /* 4px */
    --border-radius-md: 0.375rem; /* 6px */
    --border-radius-lg: 0.5rem;   /* 8px */
    --border-radius-xl: 1rem;     /* 16px */
    --border-radius-full: 9999px;  /* Circular */
    
    /* Box Shadows */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    
    /* Section Padding */
    --section-padding: 5rem 0;
  
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-size-base: 16px;
    --font-size-7xl: 4.5rem;
  
    /* Success, Warning, Danger, Info */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
  
    /* Z-index */
    --z-0: 0;
    --z-10: 10;
    --z-20: 20;
    --z-30: 30;
    --z-40: 40;
    --z-50: 50;
    --z-auto: auto;
  
    /* Container */
    --container-padding: 1.5rem;
    --container-max-width: 1280px;
  }
  
  /* Base Styles */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--gray-100);
    overflow-x: hidden;
    padding: 0;
    margin: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
  }
  
  h1 {
    font-size: var(--font-size-5xl);
  }
  
  h2 {
    font-size: var(--font-size-4xl);
  }
  
  h3 {
    font-size: var(--font-size-3xl);
  }
  
  h4 {
    font-size: var(--font-size-2xl);
  }
  
  h5 {
    font-size: var(--font-size-xl);
  }
  
  h6 {
    font-size: var(--font-size-lg);
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  button {
    cursor: pointer;
    border: none;
    background: none;
  }
  
  ul, ol {
    list-style: none;
  }
  
  /* Container */
  .container {
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Section Styles */
  section {
    padding: var(--spacing-20) 0;
    position: relative;
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-12);
  }
  
  .section-subtitle {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--spacing-2);
  }
  
  .section-title {
    margin-bottom: var(--spacing-4);
    font-weight: 700;
    font-size: var(--font-size-4xl);
    position: relative;
    padding-bottom: var(--spacing-4);
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
  }
  
  .section-title span {
    color: var(--primary);
  }
  
  .section-description {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Buttons */
  .btn {
      position: relative;
      overflow: hidden;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      border-radius: var(--border-radius-md);
      transition: all var(--transition-fast);
      cursor: pointer;
      text-decoration: none;
      gap: 0.5rem;
      text-align: center;
  }
  
  /* Button Language Switch Styles */
  .btn-text-en {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.3s ease;
  }
  
  .btn-text-ta {
      position: absolute;
      opacity: 0;
      transform: translateY(100%);
      transition: all 0.3s ease;
  }
  
  /* Hover state - show Tamil text */
  .btn:hover .btn-text-en {
      opacity: 0;
      transform: translateY(-100%);
  }
  
  .btn:hover .btn-text-ta {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Keep hero buttons text white on hover */
  .hero__buttons .btn:hover {
      color: var(--white);
  }
  
  .hero__buttons .btn-secondary:hover {
      color: var(--white);
  }
  
  .hero__buttons .btn:hover .btn-text-en {
      opacity: 1;
      transform: none;
      color: var(--white);
  }
  
  /* Additional style for hero buttons */
  .hero-btn:hover .btn-text-en {
      opacity: 1 !important;
      transform: none !important;
      color: var(--white) !important;
  }
  
  /* Fallback for no-js */
  .no-js .btn {
      height: auto;
      min-height: 48px;
      padding-top: 12px;
      padding-bottom: 12px;
  }
  
  .no-js .btn-text-en,
  .no-js .btn-text-ta {
      position: static;
      opacity: 1;
      transform: none;
      display: block;
      text-align: center;
  }
  
  .no-js .btn-text-ta {
      font-size: 0.9em;
      margin-top: 4px;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
      .btn {
          height: auto;
          min-height: 48px;
          padding: 12px 24px;
          flex-direction: column;
      }
      
      .btn-text-en,
      .btn-text-ta {
          position: static;
          opacity: 1;
          transform: none;
          display: block;
          text-align: center;
      }
      
      .btn-text-ta {
          font-size: 0.9em;
          margin-top: 4px;
      }
      
      .btn:hover .btn-text-en {
          opacity: 1;
          transform: none;
      }
      
      .btn:hover .btn-text-ta {
          opacity: 1;
          transform: none;
      }
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .btn-dark {
    background-color: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
  }
  
  .btn-dark:hover {
    background-color: var(--dark);
    border-color: var(--dark);
  }
  
  /* Text Utilities */
  .text-center {
    text-align: center;
  }
  
  /* Media Queries for Typography */
  @media (max-width: 1200px) {
    h1 {
      font-size: calc(var(--font-size-5xl) * 0.9);
    }
    h2 {
      font-size: calc(var(--font-size-4xl) * 0.9);
    }
  }
  
  @media (max-width: 992px) {
    h1 {
      font-size: calc(var(--font-size-5xl) * 0.8);
    }
    h2 {
      font-size: calc(var(--font-size-4xl) * 0.8);
    }
    h3 {
      font-size: calc(var(--font-size-3xl) * 0.9);
    }
  }
  
  @media (max-width: 768px) {
    html {
      font-size: 15px;
    }
    h1 {
      font-size: calc(var(--font-size-5xl) * 0.7);
    }
    h2 {
      font-size: calc(var(--font-size-4xl) * 0.7);
    }
    h3 {
      font-size: calc(var(--font-size-3xl) * 0.8);
    }
    section {
      padding: var(--spacing-16) 0;
    }
    .section-header {
      margin-bottom: var(--spacing-10);
    }
    .logo {
      font-size: var(--font-size-lg);
    }
    
    .logo img {
      width: 38px;
      height: 38px;
    }
    
    .logo span {
      letter-spacing: 0.2px;
    }
  }
  
  @media (max-width: 576px) {
    html {
      font-size: 14px;
    }
    h1 {
      font-size: calc(var(--font-size-5xl) * 0.6);
    }
    h2 {
      font-size: calc(var(--font-size-4xl) * 0.6);
    }
    section {
      padding: var(--spacing-12) 0;
    }
    .container {
      padding: 0 var(--spacing-4);
    }
    .logo {
      font-size: calc(var(--font-size-md) + 1px);
    }
    
    .logo img {
      width: 35px;
      height: 35px;
    }
  }
  
  /* Header/Navigation */
  .header {
    position: absolute;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: 0;
    transform: none;
    z-index: var(--z-50);
    background-color: transparent;
    transition: all var(--transition);
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
  }
  
  .header.scrolled {
    position: fixed;
    width: 90%;
    max-width: 1200px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 0.8rem 2rem;
    border-radius: 0 0 30px 30px;
  }
  
  .container {
    padding: 0 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
  }
  
  .mobile-call-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }
  
  .mobile-call-btn:hover {
    background-color: var(--primary);
    color: white;
  }
  
  @media (max-width: 992px) {
    .mobile-call-btn {
      display: flex;
    }
    
    .nav-right {
      margin-left: auto;
      margin-right: 15px;
    }
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 700;
    font-size: var(--font-size-xl);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
  }
  
  .logo img {
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius-full);
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background-color: #ffffff;
    padding: 6px;
  }
  
  .logo:hover img {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.7);
  }
  
  .logo span {
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    position: relative;
    padding: 2px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .logo strong {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
  }
  
  .logo span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
  }
  
  .logo:hover span::after {
    transform: scaleX(1);
  }
  
  .header.scrolled .logo {
    color: var(--dark);
  }
  
  .header.scrolled .logo img {
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.3);
    border: 2px solid rgba(212, 160, 23, 0.1);
  }
  
  .header.scrolled .logo span {
    text-shadow: none;
  }
  
  .header.scrolled .logo strong {
    color: var(--primary-dark);
  }
  
  .nav-menu {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition);
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .header.scrolled .nav-link {
    color: var(--dark);
  }
  
  .cta-button .btn {
    padding: 0.75rem 1.5rem;
  }
  
  .hamburger {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    margin-left: 20px;
    cursor: pointer;
    z-index: 2000; 
    background: transparent;
    border: none;
    padding: 0;
    flex-shrink: 0;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
  }
  
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border-radius: 2px;
  }
  
  .hamburger span:nth-child(1) {
    top: 0;
  }
  
  .hamburger span:nth-child(2) {
    top: 10px;
  }
  
  .hamburger span:nth-child(3) {
    top: 20px;
  }
  
  .header.scrolled .hamburger span {
    background-color: var(--dark);
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: var(--white) !important;
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--white) !important;
  }
  
  @media (max-width: 992px) {
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px; /* Reduced width */
      max-width: 300px; /* Reduced max-width */
      height: auto; /* Changed from 100vh to auto */
      max-height: 90vh; /* Not taking full screen height */
      background-color: var(--dark);
      color: var(--white);
      flex-direction: column;
      justify-content: flex-start; /* Changed from center to flex-start */
      padding: 1.5rem; /* Reduced padding */
      padding-top: 4rem; /* Add space for close button */
      transition: all 0.3s ease;
      z-index: 1900;
      align-items: flex-start; /* Left align items */
      border-radius: 0 0 0 10px; /* Rounded bottom-left corner */
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      margin-top: 60px; /* Space from top to avoid covering header */
    }
    
    .nav-menu.active {
      right: 0;
      opacity: 1;
      visibility: visible;
    }
    
    .nav-menu li {
      width: 100%;
      margin: 0.3rem 0; /* Reduced spacing between items */
    }
    
    .nav-link {
      display: block;
      padding: 0.6rem 0.5rem; /* Reduced padding */
      color: var(--white);
      font-size: 0.95rem; /* Slightly smaller font */
    }
    
    /* Always show dropdown content in mobile view */
    .nav-dropdown-content {
      position: relative;
      display: block !important; /* Always visible */
      width: 100%;
      background-color: rgba(255, 255, 255, 0.1);
      margin-top: 0.5rem;
      box-shadow: none;
      padding-left: 1rem;
      border-radius: 4px;
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
      max-height: none !important;
      overflow: visible !important;
    }
    
    /* Hide the dropdown arrow/indicator if there is one */
    .nav-dropdown .nav-link::after {
      display: none !important;
    }
    
    .nav-dropdown-content a {
      padding: 0.5rem;
      font-size: 0.9rem;
      opacity: 1 !important;
      transform: none !important;
    }
    
    /* Add some visual separation for the main service link */
    .nav-dropdown > .nav-link {
      font-weight: 600;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 0.5rem;
    }
    
    /* Adjust the hamburger button itself */
    .hamburger {
      width: 28px;
      height: 28px;
      display: block;
    }
    
    .hamburger span {
      height: 2px;
      margin: 3px 0; /* Reduced space between lines */
    }
    
    /* Ensure body freeze when menu is open */
    body.menu-open {
      overflow: hidden;
    }
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    margin: 0 0 80px;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 120px 0 60px;
  }
  
  .hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-0);
    border-radius: 50px;
    overflow: hidden;
  }
  
  .hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease, transform 7s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.2);
  }
  
  .hero__slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  
  .hero__slide.active {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .hero__content {
    position: relative;
    z-index: var(--z-10);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    color: var(--white);
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .hero__text {
    max-width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.5s ease;
    padding-right: 20px;
  }
  
  .hero__title {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-6);
    color: var(--white);
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero__title span {
    color: var(--primary);
  }
  
  .hero__description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-6);
    color: var(--gray-200);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__buttons {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
  }
  
  .hero__quick-form {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: var(--spacing-8);
    border-radius: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInRight 1s ease-out forwards;
    margin: 0 auto;
    width: 100%;
  }
  
  .hero__quick-form h3 {
    color: var(--white);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-4);
  }
  
  .hero__quick-form p {
    color: var(--gray-300);
    margin-bottom: var(--spacing-6);
    font-size: var(--font-size-md);
  }
  
  .hero-form__group {
    margin-bottom: var(--spacing-4);
    position: relative;
  }
  
  .hero-form__group label {
    display: block;
    margin-bottom: var(--spacing-2);
    font-weight: 500;
    color: var(--gray-300);
    font-size: var(--font-size-sm);
  }
  
  .hero-form__group input,
  .hero-form__group select,
  .hero-form__group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--black);
    transition: all var(--transition-fast);
  }
  
  .hero-form__group input:focus,
  .hero-form__group select:focus,
  .hero-form__group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .hero-form__group input::placeholder,
  .hero-form__group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .hero__quick-form .btn {
    border-radius: 0;
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Services Section with Background */
  .services {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 4rem 0;
    margin: 80px auto 80px;
    max-width: 1200px;
    width: 90%;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .services__decoration-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 10%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    opacity: 0.8;
    z-index: 1;
    border-radius: 50px 0 0 50px;
  }
  
  .crane-decoration {
    position: absolute;
    right: 5%;
    top: 10%;
    width: 150px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23D4A01733' d='M510.28 445.86l-73.03-292.13c-3.8-15.19-16.44-25.72-30.87-25.72h-60.25c-3.42 0-10.83 2.14-10.83 11.06v192.54c0 3.02 1.7 5.78 4.4 7.15l21.94 11.06c4.62 2.36 8.84 5.41 12.53 9.08l10.57 10.57c5.66 5.66 8.83 13.36 8.83 21.38 0 11.65-6.28 22.56-16.42 28.43l-23.39 13.9c-3.37 2-4.76 6.06-4.24 10.12 7.25 56.22 12.17 85.54 12.17 85.54 1.18 8.3 8.33 14.47 16.71 14.47H484.3c5.09 0 9.79-2.28 12.89-6.24 3.09-3.96 4.2-9.04 3.09-13.76zM176 320h-48v48c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-48H16c-8.84 0-16-7.16-16-16v-32c0-8.84 7.16-16 16-16h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
  }
  
  .services .section-title {
    color: var(--secondary);
  }
  
  .services .section-subtitle {
    color: var(--primary);
  }
  
  .services .section-description {
    color: var(--gray-900);
    margin-bottom: 2rem;
  }
  
  .services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  @media (max-width: 992px) {
    .services__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .services__grid {
      grid-template-columns: 1fr;
    }
  }
  
  .service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.95));
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: none;
  }
  
  .service-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .service-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
  }
  
  .service-card:hover .service-card__icon {
    transform: none;
    background: none;
    color: inherit;
    box-shadow: none;
  }
  
  /* Completely remove all hover effects */
  .service-card::after {
    display: none;
  }
  
  .service-card:hover::after {
    display: none;
  }
  
  .service-card__icon::after {
    display: none;
  }
  
  .service-card:hover .service-card__icon i {
    animation: none;
    transform: none;
  }
  
  .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
  }
  
  .service-card:hover .service-card__image img {
    transform: none;
  }
  
  .service-card__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
  }
  
  .service-card__title::after {
    display: none;
  }
  
  .service-card:hover .service-card__title::after {
    display: none;
  }
  
  .service-card__description {
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    line-height: 1.6;
  }
  
  .services .section-description {
    margin-bottom: 1.5rem;
  }
  
  .service-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
  }
  
  .service-card__icon img {
    max-width: 100%;
  }
  
  .service-card:hover .service-card__icon {
    transform: none;
  }
  
  .service-card__icon::before,
  .service-card__icon::after {
    display: none;
  }
  
  .service-card:hover .service-card__icon::before,
  .service-card:hover .service-card__icon::after {
    display: none;
  }
  
  .service-card__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
  }
  
  .service-card__title::after {
    display: none;
  }
  
  .service-card:hover .service-card__title::after {
    display: none;
  }
  
  .service-card__description {
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    line-height: 1.6;
  }
  
  .services .section-description {
      margin-bottom: 3rem;
  }
  
  .services .section-title,
  .services .section-subtitle {
      color: var(--dark);
  }
  
  .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-dark), var(--primary));
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s ease;
  }
  
  .service-card:hover::after {
      transform: scaleX(1);
      transform-origin: left;
  }
  
  .service-card__icon i {
      font-size: 2.5rem;
      color: var(--color-primary);
      transition: all 0.3s ease;
  }
  
  .service-card:hover .service-card__icon i {
      color: #fff;
  }
  
  .service-card__icon svg {
      fill: var(--color-primary);
      transition: all 0.3s ease;
  }
  
  .service-card:hover .service-card__icon svg {
      fill: #fff;
  }
  
  @keyframes rotate-conic {
      from {
          transform: rotate(0deg);
      }
      to {
          transform: rotate(360deg);
      }
  }
  
  @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
  }
  
  .service-card__icon::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(255, 217, 0, 0.91) 0%, transparent 10%);
      z-index: -1;
  }
  
  .service-card:hover .service-card__icon {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--white);
      transform: scale(1.05) translateY(-10px) rotateY(10deg);
      box-shadow: 0 15px 25px -10px rgba(212, 160, 23, 0.4),
                  inset 0 -5px 10px -5px rgba(0, 0, 0, 0.3),
                  inset 0 5px 10px -5px rgba(255, 255, 255, 0.2);
  }
  
  .service-card__link {
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
  }
  
  .service-card__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
  }
  
  .service-card__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  }
  
  /* Responsive styles for Header and Hero */
  @media (max-width: 992px) {
    .navbar {
      position: relative;
    }
    
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px; /* Reduced width */
      max-width: 300px; /* Reduced max-width */
      height: auto; /* Changed from 100vh to auto */
      max-height: 90vh; /* Not taking full screen height */
      background-color: var(--dark);
      color: var(--white);
      flex-direction: column;
      justify-content: flex-start; /* Changed from center to flex-start */
      padding: 1.5rem; /* Reduced padding */
      padding-top: 4rem; /* Add space for close button */
      transition: all 0.3s ease;
      z-index: 1900;
      align-items: flex-start; /* Left align items */
      border-radius: 0 0 0 10px; /* Rounded bottom-left corner */
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      margin-top: 60px; /* Space from top to avoid covering header */
    }
    
    .nav-menu.active {
      right: 0;
      opacity: 1;
      visibility: visible;
    }
    
    .nav-menu li {
      width: 100%;
      margin: 0.3rem 0; /* Reduced spacing between items */
    }
    
    .nav-link {
      display: block;
      padding: 0.6rem 0.5rem; /* Reduced padding */
      color: var(--white);
      font-size: 0.95rem; /* Slightly smaller font */
    }
    
    /* Always show dropdown content in mobile view */
    .nav-dropdown-content {
      position: relative;
      display: block !important; /* Always visible */
      width: 100%;
      background-color: rgba(255, 255, 255, 0.1);
      margin-top: 0.5rem;
      box-shadow: none;
      padding-left: 1rem;
      border-radius: 4px;
      opacity: 1 !important;
      visibility: visible !important;
      transform: none !important;
      max-height: none !important;
      overflow: visible !important;
    }
    
    /* Hide the dropdown arrow/indicator if there is one */
    .nav-dropdown .nav-link::after {
      display: none !important;
    }
    
    .nav-dropdown-content a {
      padding: 0.5rem;
      font-size: 0.9rem;
      opacity: 1 !important;
      transform: none !important;
    }
    
    /* Add some visual separation for the main service link */
    .nav-dropdown > .nav-link {
      font-weight: 600;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 0.5rem;
    }
    
    /* Adjust the hamburger button itself */
    .hamburger {
      width: 28px;
      height: 28px;
      display: block;
    }
    
    .hamburger span {
      height: 2px;
      margin: 3px 0; /* Reduced space between lines */
    }
  }
  
  @media (max-width: 768px) {
    /* Removing redundant header/hero styles */
    .navbar {
      justify-content: space-between;
      padding: 0 5px;
      width: 95%;
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
    .logo img {
      max-width: 40px;
    }
    
    .hero__content {
      padding: 30px 15px;
      text-align: center;
    }
    
    .hero__wrapper {
      margin: 0 auto;
    }
    
    .hero__text {
      text-align: center;
      width: 100%;
      padding: 0;
    }
    
    .hero__title {
      font-size: var(--font-size-3xl);
      margin-bottom: var(--spacing-4);
    }
    
    .hero__description {
      font-size: var(--font-size-md);
      margin-bottom: var(--spacing-6);
      line-height: 1.5;
    }
    
    .hero__content {
      text-align: center;
    }
    
    .hero__text {
      max-width: 100%;
    }
    
    .hero__buttons {
      justify-content: center;
      align-items: center;
    }
    
    .service-card {
      padding: var(--spacing-6);
    }
    
    .testimonial-card__text {
      height: 180px;
      overflow-y: auto;
      margin-bottom: 15px;
    }
    
    .hero__slide {
      background-position: center top;
    }
    
    .services::after {
      width: 100px;
      height: 100px;
      opacity: 0.07;
    }
    
    .services__decoration-left {
      width: 80px;
      height: 80px;
      opacity: 0.07;
    }
  }
  
  @media (max-width: 576px) {
    /* Extra small devices optimization */
    .hero {
      height: 600px;
      min-height: 600px;
      margin: 0 auto 40px;
      padding-top: 90px;
    }
    
    .hero__content {
      padding: 20px 10px;
    }
    
    .hero__title {
      font-size: 1.75rem;
      margin-bottom: 15px;
    }
    
    .hero__description {
      font-size: 0.95rem;
      margin-bottom: 20px;
      line-height: 1.5;
    }
    
    .hero__buttons {
      flex-direction: column;
      gap: 12px;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }
    
    .hero__buttons .btn {
      width: 100%;
      max-width: 100%;
      padding: 12px;
    }
    
    .hero__quick-form {
      margin-top: 25px;
      padding: 20px 15px;
    }
    
    .hero__quick-form h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }
    
    .hero-form__group {
      margin-bottom: 12px;
    }
    
    .hero-form__group input,
    .hero-form__group select,
    .hero-form__group textarea {
      padding: 10px 12px;
      font-size: 0.95rem;
    }
    
    .testimonial-card__text {
      height: 160px;
      font-size: 14px;
      line-height: 1.5;
    }
    
    .hero__wrapper {
      max-width: 450px;
    }
    
    .hero__text {
      padding: 0;
    }
  }
  
  /* Responsive styles for Hero section */
  @media (max-width: 1200px) {
    .hero {
      min-height: auto;
      height: auto;
      padding: 100px 0 40px;
    }
    .hero__wrapper {
      grid-template-columns: 1fr;
      max-width: 800px;
      gap: 40px;
    }
    .hero__text {
      padding-right: 0;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    /* Hero section mobile optimization */
    .hero {
      min-height: auto;
      height: auto;
      margin: 0 auto 50px;
      padding: 80px 0 40px;
      border-radius: 0 0 30px 30px;
    }
    .hero__content {
      padding: 20px 10px;
    }
    
    .hero__title {
      font-size: 1.75rem;
      margin-bottom: 15px;
    }
  }
  
  /* About Section */
  .about {
    background-color: var(--gray-50);
    position: relative;
    margin: 80px auto 80px;
  }
  
  .about__content {
    display: flex;
    align-items: center;
    gap: var(--spacing-16);
  }
  
  .about__text {
    width: 50%;
  }
  
  .about__text p {
    margin-bottom: var(--spacing-6);
    color: var(--gray-600);
  }
  
  .about__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-8);
    margin: var(--spacing-8) 0;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - var(--spacing-4));
  }
  
  .stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-2);
  }
  
  .stat-item p {
    font-size: var(--font-size-md);
    margin: 0;
    color: var(--gray-700);
  }
  
  .about__image {
    width: 50%;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
  }
  
  .about__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition);
    object-fit: cover;
  }
  
  .about__image:hover img {
    transform: scale(1.05);
  }
  
  /* Mobile Responsiveness for About Section */
  @media (max-width: 992px) {
    .about__content {
      flex-direction: column;
      gap: var(--spacing-10);
    }
    
    .about__text,
    .about__image {
      width: 100%;
    }
    
    .about__text {
      order: 1;
      text-align: center;
    }
    
    .about__image {
      order: 2;
      margin-bottom: var(--spacing-8);
    }
    
    .about__stats {
      justify-content: center;
      gap: var(--spacing-6);
    }
    
    .stat-item {
      flex: 1 1 calc(50% - var(--spacing-4));
      text-align: center;
    }
    
    .about__text .btn {
      margin: 0 auto;
      display: block;
      max-width: 200px;
    }
  }
  
  @media (max-width: 768px) {
    .about__content {
      gap: var(--spacing-8);
    }
    
    .about__stats {
      flex-direction: column;
      align-items: center;
    }
    
    .stat-item {
      flex: 0 0 100%;
      text-align: center;
      margin-bottom: var(--spacing-4);
    }
    
    .about__image {
      height: 300px;
    }
    
    .about__image img {
      height: 100%;
      object-fit: cover;
    }
  }
  
  @media (max-width: 576px) {
    .about__content {
      gap: var(--spacing-6);
    }
    
    .about__image {
      height: 250px;
    }
    
    .stat-item {
      margin-bottom: var(--spacing-3);
    }
    
    .stat-number {
      font-size: var(--font-size-3xl);
    }
  }
  
  /* Projects Section */
  .projects {
    padding: var(--section-padding);
    background-color: var(--gray-50);
    margin: 80px auto 80px;
  }
  
  .projects__filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .filter-btn:hover::after,
  .filter-btn.active::after {
    width: 80%;
  }
  
  .filter-btn.active {
    color: var(--primary);
  }
  
  /* No JavaScript Fallback */
  .no-js .projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .no-js .projects-swiper {
    display: none;
  }
  
  /* Swiper Styles */
  .projects-swiper {
    width: 100%;
    padding: 50px 0;
    overflow: visible;
  }
  
  .projects-swiper .swiper-slide {
    width: 400px;
    height: 500px;
    opacity: 0.4;
    transform: scale(0.8);
    transition: all 0.3s ease;
  }
  
  .projects-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }
  
  .project-card {
    position: relative;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .project-card__image {
    height: 70%;
    overflow: hidden;
  }
  
  .project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .project-card:hover .project-card__image img {
    transform: scale(1.1);
  }
  
  .project-card__content {
    padding: 1.5rem;
    background: var(--white);
    position: relative;
  }
  
  .project-card__content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
  }
  
  .project-card__content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
  }
  
  .project-card__link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .project-card__link:hover {
    gap: 0.75rem;
  }
  
  .project-card__link::after {
    content: '→';
    transition: transform 0.3s ease;
  }
  
  .project-card__link:hover::after {
    transform: translateX(5px);
  }
  
  /* Swiper Navigation */
  .projects-swiper .swiper-button-next,
  .projects-swiper .swiper-button-prev {
    color: var(--primary);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .projects-swiper .swiper-button-next::after,
  .projects-swiper .swiper-button-prev::after {
    font-size: 1.25rem;
  }
  
  .projects-swiper .swiper-pagination {
    bottom: 0;
  }
  
  .projects-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    opacity: 1;
  }
  
  .projects-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.2);
  }
  
  @media (max-width: 768px) {
    .projects-swiper .swiper-slide {
      width: 300px;
      height: 400px;
    }
    
    .filter-btn {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
    }
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: #121820; /* Even darker for better contrast */
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: var(--spacing-20) 0;
    margin: 80px auto 80px;
  }
  
  .testimonials .section-title,
  .testimonials .section-subtitle,
  .testimonials .section-description {
    color: var(--white);
  }
  
  .testimonials .section-title:after {
    background: var(--primary-light);
  }
  
  .testimonials-swiper {
    width: 100%;
    padding-top: var(--spacing-8);
    padding-bottom: var(--spacing-20);
    perspective: 1200px;
  }
  
  .testimonials-swiper .swiper-slide {
    width: 350px;
    opacity: 0;
    transform: scale(0.8) rotateY(30deg);
    transition: all 0.5s ease;
  }
  
  .testimonials-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
  
  .testimonial-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-8);
    border-radius: var(--border-radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.4);
  }
  
  .testimonial-card__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
  }
  
  .testimonial-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-card__info h4 {
    color: var(--white);
    margin-bottom: var(--spacing-1);
    font-size: var(--font-size-lg);
  }
  
  .testimonial-card__info p {
    color: var(--white);
    margin: 0;
    font-size: var(--font-size-sm);
    opacity: 0.9;
  }
  
  .testimonial-card__rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-4);
  }
  
  .testimonial-card__rating i {
    color: var(--warning);
  }
  
  .testimonial-card__text {
    color: var(--white);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-4);
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .testimonial-card__text::before {
    content: '"';
    font-family: var(--font-secondary);
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: var(--primary);
    opacity: 0.2;
  }
  
  .testimonial-card__date {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
  }
  
  .testimonial-card__date i {
    font-size: 14px;
  }
  
  /* Responsive styles for Testimonials */
  @media (max-width: 768px) {
    .testimonials-swiper {
      padding-bottom: var(--spacing-16);
    }
  
    .testimonials-swiper .swiper-slide {
      width: 300px;
    }
  
    .testimonial-card {
      padding: var(--spacing-6);
    }
  }
  
  @media (max-width: 576px) {
    .testimonials-swiper .swiper-slide {
      width: 280px;
    }
  }
  
  /* Contact Section */
  .contact {
    background-color: var(--white);
    margin: 80px auto 80px;
  }
  
  .contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
  }
  
  .contact__info {
    padding: var(--spacing-8);
    background-color: var(--gray-100);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
  }
  
  .contact__info h3 {
    margin-bottom: var(--spacing-4);
    color: var(--secondary);
  }
  
  .contact__details {
    margin: var(--spacing-8) 0;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
  }
  
  .contact-item__icon {
    width: 45px;
    height: 45px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--primary);
    flex-shrink: 0;
  }
  
  .contact-item__content h4 {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-2);
    color: var(--gray-700);
  }
  
  .contact-item__content p,
  .contact-item__content a {
    font-size: var(--font-size-md);
    color: var(--gray-600);
    margin-bottom: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
  }
  
  .contact-item__content a:hover {
    color: var(--primary);
  }
  
  .contact__map {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 300px;
    margin-top: var(--spacing-8);
  }
  
  .contact__form {
      background-color: var(--white);
      padding: 40px;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-lg);
  }
  
  .contact__form h3 {
      margin-bottom: var(--spacing-6);
      color: var(--dark);
  }
  
  .contact__form p {
      margin-bottom: var(--spacing-8);
      color: var(--gray-600);
  }
  
  .form-row {
      display: flex;
      gap: var(--spacing-6);
      margin-bottom: var(--spacing-6);
  }
  
  .form-group {
      flex: 1;
      margin-bottom: var(--spacing-4);
  }
  
  .form-group label {
      display: block;
      margin-bottom: var(--spacing-2);
      font-weight: 500;
      color: var(--dark);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--gray-200);
      border-radius: var(--border-radius-md);
      background-color: var(--white);
      color: var(--dark);
      transition: all var(--transition-fast);
  }
  
  @media (max-width: 768px) {
      .contact__form {
          text-align: center;
          padding: 30px 20px;
      }
  
      .form-row {
          flex-direction: column;
          gap: var(--spacing-4);
      }
  
      .form-group {
          width: 100%;
          text-align: center;
      }
  
      .form-group label {
          text-align: center;
      }
  
      .form-group input,
      .form-group select,
      .form-group textarea {
          text-align: center;
      }
  
      .contact__info {
          text-align: center;
      }
  
      .contact-item {
          flex-direction: column;
          align-items: center;
          text-align: center;
          padding: 20px 15px;
      }
  
      .contact-item__icon {
          margin: 0 auto 15px;
      }
  
      .contact-item__content {
          text-align: center;
      }
  
      .contact-item__content h4 {
          text-align: center;
          margin-bottom: 8px;
      }
  
      .contact-item__content p,
      .contact-item__content a {
          text-align: center;
      }
  
      .contact__form .btn {
          margin: 0 auto;
          display: block;
          min-width: 200px;
      }
  }
  
  @media (max-width: 576px) {
      .contact__form {
          padding: 25px 15px;
      }
  
      .form-group {
          margin-bottom: 15px;
      }
  
      .contact-item {
          padding: 15px 10px;
      }
  
      .contact__form .btn {
          min-width: 180px;
      }
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--gray-400);
  }
  
  .form-group.error input,
  .form-group.error select,
  .form-group.error textarea {
    border-color: var(--danger);
  }
  
  .error-message {
    color: var(--danger);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-1);
  }
  
  /* Phone validation styles */
  input[type="tel"]:focus:invalid,
  input[type="tel"].error-input {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  }
  
  input[type="tel"]:focus:valid {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  }
  
  .hero-form__group .error-message {
    color: var(--white);
    background-color: rgba(239, 68, 68, 0.8);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: var(--font-size-xs);
    margin-top: 5px;
  }
  
  /* Responsive styles for Contact section */
  @media (max-width: 992px) {
    .contact__wrapper {
      grid-template-columns: 1fr;
      gap: var(--spacing-8);
    }
    
    .contact__info,
    .contact__form {
      max-width: 700px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .form-row {
      grid-template-columns: 1fr;
      gap: var(--spacing-4);
    }
    
    .contact__info,
    .contact__form {
      padding: var(--spacing-6);
    }
    
    .contact-item {
      gap: var(--spacing-3);
    }
    
    .contact-item__icon {
      width: 40px;
      height: 40px;
    }
    
    .contact-item__content p,
    .contact-item__content a {
      word-break: break-word;
    }
    
    .contact__map iframe {
      height: 250px;
    }
  }
  
  @media (max-width: 576px) {
    .contact__info,
    .contact__form {
      padding: var(--spacing-4);
    }
    
    .contact-item {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--spacing-2);
    }
    
    .contact-item__content {
      width: 100%;
    }
    
    .form-group {
      margin-bottom: var(--spacing-4);
    }
    
    .form-group label {
      margin-bottom: var(--spacing-1);
    }
    
    .contact__map {
      margin-top: var(--spacing-6);
    }
    
    .contact__map iframe {
      height: 200px;
    }
  }
  
  /* Footer */
  .footer {
    background-color: #121820; /* Even darker for better contrast */
    color: var(--white);
    padding-top: var(--spacing-16);
    margin: 80px auto 40px;
  }
  
  .footer__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-10);
    padding-bottom: var(--spacing-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .footer__about {
    grid-column: span 1;
  }
  
  .footer__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
    color: var(--white);
  }
  
  .footer__logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
  }
  
  .footer__logo span {
    font-size: var(--font-size-xl);
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--white);
  }
  
  .footer__about p {
    margin-bottom: var(--spacing-6);
    color: var(--white);
    font-size: var(--font-size-md);
  }
  
  .footer__social {
    display: flex;
    gap: var(--spacing-3);
  }
  
  .footer__social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
  }
  
  .footer__social a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
  }
  
  .footer h3 {
    color: var(--white);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-6);
    position: relative;
    padding-bottom: var(--spacing-3);
  }
  
  .footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
  }
  
  .footer__services ul,
  .footer__links ul,
  .footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
  }
  
  .footer__services li a,
  .footer__links li a {
    color: var(--white);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: var(--spacing-4);
  }
  
  .footer__services li a::before,
  .footer__links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    transition: transform var(--transition-fast);
  }
  
  .footer__services li a:hover,
  .footer__links li a:hover {
    color: var(--white);
    transform: translateX(5px);
  }
  
  .footer__services li a:hover::before,
  .footer__links li a:hover::before {
    transform: translateX(3px);
  }
  
  .footer__contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    color: var(--white);
    margin-bottom: var(--spacing-3);
  }
  
  .footer__contact li i {
    color: var(--primary);
    font-size: var(--font-size-lg);
    width: 20px;
  }
  
  .footer__contact a {
    color: var(--white);
    transition: color var(--transition-fast);
  }
  
  .footer__contact a:hover {
    color: var(--white);
  }
  
  .footer__bottom {
    padding: var(--spacing-6) 0;
    text-align: center;
  }
  
  .footer__bottom p {
    color: var(--white);
    margin-bottom: 0;
    font-size: var(--font-size-sm);
  }
  
  /* Floating WhatsApp Button */
  .floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-30);
  }
  
  .floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    background-color: #25D366;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background-color: #128C7E;
  }
  
  /* Updated back-to-top button positioning */
  .back-to-top {
      position: fixed;
      bottom: 100px;
      left: 30px;
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }
  
  .back-to-top:hover {
      background: var(--primary-dark);
      transform: translateY(-5px);
  }
  
  /* Animation Keyframes */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  /* Animations */
  .fade-in {
    animation: fadeIn 0.8s ease-out forwards;
  }
  
  .slide-in {
    animation: slideIn 0.5s ease-out forwards;
  }
  
  /* Responsive styles for Footer and Floating elements */
  @media (max-width: 992px) {
    .footer__content {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-8) var(--spacing-6);
    }
  }
  
  @media (max-width: 768px) {
    .footer {
      padding-top: var(--spacing-12);
    }
    
    .footer__content {
      gap: var(--spacing-10) var(--spacing-4);
    }
    
    .footer h3 {
      margin-bottom: var(--spacing-4);
    }
    
    .floating-btn {
      width: 50px;
      height: 50px;
    }
    
    .back-to-top {
      width: 40px;
      height: 40px;
      left: 20px;
      bottom: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .footer__content {
      grid-template-columns: 1fr;
      gap: var(--spacing-8);
    }
    
    .footer__bottom {
      padding: var(--spacing-4) 0;
    }
    
    .floating-buttons {
      bottom: 100px;
      right: 20px;
    }
  }
  
  /* Brands Section */
  .brands {
      padding: 80px 0;
      background: #ffffff;
  }
  
  .brands-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-top: 50px;
  }
  
  .brand-item {
      background: #ffffff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .brand-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  
  .brand-item img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      transition: filter 0.3s ease;
  }
  
  .brand-item:hover img {
      filter: grayscale(0%);
  }
  
  @media (max-width: 992px) {
      .brands-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;
      }
  }
  
  @media (max-width: 768px) {
      .brands-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 15px;
      }
  }
  
  @media (max-width: 576px) {
      .brands {
          padding: 60px 0;
      }
      
      .brands-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
          margin-top: 30px;
      }
      
      .brand-item {
          padding: 15px;
      }
  }
  
  /* Financing Partners Section */
  .financing {
    padding: var(--section-padding);
    background-color: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .financing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23D4A01720' d='M11.5,1L2,6V8H21V6M16,10V17H19V10M2,22H21V19H2M10,10V17H13V10M4,10V17H7V10H4Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 120px;
    opacity: 0.1;
    z-index: 0;
  }
  
  .financing .section-header {
    position: relative;
    z-index: 1;
  }
  
  .financing .section-title,
  .financing .section-subtitle,
  .financing .section-description {
    color: var(--white);
  }
  
  .financing .section-title::after {
    background: var(--primary-light);
  }
  
  .banking-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
  }
  
  .bank-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .bank-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.12);
  }
  
  .bank-item img {
    max-width: 100%;
    max-height: 80px;
    margin-bottom: 1rem;
    filter: brightness(1.2) contrast(1.1);
  }
  
  .bank-item h4 {
    color: var(--white);
    font-size: var(--font-size-md);
    text-align: center;
    margin: 0;
  }
  
  .financing-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
  }
  
  .financing-cta p {
    font-size: var(--font-size-lg);
    color: var(--gray-200);
    margin-bottom: 1.5rem;
  }
  
  /* About Section with Warranty Tag */
  .about__image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    height: auto;
  }
  
  .warranty-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 40px;
    font-weight: 600;
    font-size: var(--font-size-md);
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    text-align: center;
    width: 230px;
  }
  
  .warranty-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    height: 100%;
    background-color: var(--primary-dark);
  }
  
  /* Media Queries */
  @media (max-width: 992px) {
    .banking-partners {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .bank-item {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .banking-partners {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
    .bank-item {
      padding: 1.25rem;
    }
  }
  
  @media (max-width: 576px) {
    .banking-partners {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .bank-item {
      padding: 1rem;
    }
  }
  
  /* No JavaScript Fallbacks */
  .no-js .hero__slider {
    display: none;
  }
  
  .no-js .hero__content {
    background-image: url('../images/optimized/large/banner3.webp');
    background-size: cover;
    background-position: center;
  }
  
  .no-js .brands__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .no-js .testimonials-swiper {
    display: none;
  }
  
  .no-js .testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
    padding: var(--spacing-8) 0;
  }
  
  /* Google Review Button */
  .google-review-btn {
    margin-top: var(--spacing-6);
    background-color: #fff;
    color: #4285f4;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    font-weight: 600;
  }
  
  .google-review-btn:hover {
    background-color: #f8f9fa;
    color: #4285f4;
    transform: translateY(-2px);
  }
  
  .google-review-btn i {
    font-size: 1.2em;
  }
  
  /* JavaScript Warning */
  .js-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--warning);
    color: var(--dark);
    text-align: center;
    padding: var(--spacing-4);
    z-index: var(--z-50);
    display: none;
  }
  
  .no-js .js-warning {
    display: block;
  }
  
  /* Testimonials Section Improvements */
  .testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header-social {
      display: flex;
      gap: var(--spacing-4);
      margin-left: var(--spacing-4);
  }
  
  .header-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: var(--font-size-lg);
      background: linear-gradient(45deg, #ebaf1714, var(--primary-dark));
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
  }
  
  .header-social a::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, var(--primary-dark), var(--primary));
      opacity: 0;
      transition: opacity var(--transition);
  }
  
  .header-social a:hover::before {
      opacity: 1;
  }
  
  .header-social a i {
      position: relative;
      z-index: 1;
  }
  
  .header.scrolled .header-social a {
      color: var(--white);
  }
  
  /* Update header responsive styles */
  @media (max-width: 992px) {
      .header-social {
          display: none;
      }
      
      .nav-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 250px; /* Reduced width */
          max-width: 300px; /* Reduced max-width */
          height: auto; /* Changed from 100vh to auto */
          max-height: 90vh; /* Not taking full screen height */
          background-color: var(--dark);
          color: var(--white);
          flex-direction: column;
          justify-content: flex-start; /* Changed from center to flex-start */
          padding: 1.5rem; /* Reduced padding */
          padding-top: 4rem; /* Add space for close button */
          transition: all 0.3s ease;
          z-index: 1900;
          align-items: flex-start; /* Left align items */
          border-radius: 0 0 0 10px; /* Rounded bottom-left corner */
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
          overflow-y: auto;
          opacity: 0;
          visibility: hidden;
          margin-top: 60px; /* Space from top to avoid covering header */
      }
      
      .nav-menu.active {
          right: 0;
      }
      
      .nav-menu li {
          width: 100%;
          margin: 0.3rem 0; /* Reduced spacing between items */
      }
      
      .nav-link {
          display: block;
          padding: 0.6rem 0.5rem; /* Reduced padding */
          color: var(--white);
          font-size: 0.95rem; /* Slightly smaller font */
      }
      
      /* Always show dropdown content in mobile view */
      .nav-dropdown-content {
        position: relative;
        display: block !important; /* Always visible */
        width: 100%;
        background-color: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        box-shadow: none;
        padding-left: 1rem;
        border-radius: 4px;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: none !important;
        overflow: visible !important;
      }
      
      /* Hide the dropdown arrow/indicator if there is one */
      .nav-dropdown .nav-link::after {
        display: none !important;
      }
      
      .nav-dropdown-content a {
        padding: 0.5rem;
        font-size: 0.9rem;
        opacity: 1 !important;
        transform: none !important;
      }
      
      /* Add some visual separation for the main service link */
      .nav-dropdown > .nav-link {
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 0.5rem;
      }
      
      /* Adjust the hamburger button itself */
      .hamburger {
        width: 28px;
        height: 28px;
        display: block;
      }
      
      .hamburger span {
        height: 2px;
        margin: 3px 0; /* Reduced space between lines */
      }
  }
  
  @media (max-width: 768px) {
    .header {
      width: 95%;
      border-radius: 30px;
      padding: 0.75rem 1.5rem;
      top: 12px;
    }
    
    .hero {
      width: 95%;
      border-radius: 30px;
      margin: 90px auto 50px;
    }
    
    .navbar {
      width: 100%;
      padding: 0;
    }
  }
  
  @media (max-width: 576px) {
    .header {
      width: 92%;
      border-radius: 25px;
      padding: 0.6rem 1.2rem;
      top: 10px;
    }
    
    .hero {
      width: 92%;
      border-radius: 25px;
      margin: 80px auto 40px;
    }
    
    .navbar {
      width: 100%;
      padding: 0;
    }
  }
  
  /* Fix for lazy loading images */
  .swiper-lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .swiper-lazy-loaded {
    opacity: 1;
  }
  
  .swiper-lazy-preloader {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary);
    animation-duration: 1s;
  }
  
  /* Ensure images maintain aspect ratio */
  .project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  /* Fix testimonial avatar images */
  .testimonial-card__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive fixes */
  @media (max-width: 992px) {
    .container {
      max-width: 100%;
      padding: 0 1.5rem;
    }
    
    .header-social {
      display: none;
    }
    
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px; /* Reduced width */
      max-width: 300px; /* Reduced max-width */
      height: auto; /* Changed from 100vh to auto */
      max-height: 90vh; /* Not taking full screen height */
      background-color: var(--dark);
      color: var(--white);
      flex-direction: column;
      justify-content: flex-start; /* Changed from center to flex-start */
      padding: 1.5rem; /* Reduced padding */
      padding-top: 4rem; /* Add space for close button */
      transition: all 0.3s ease;
      z-index: 1900;
      align-items: flex-start; /* Left align items */
      border-radius: 0 0 0 10px; /* Rounded bottom-left corner */
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
    }
    
    .nav-menu li {
      margin: 0.3rem 0; /* Reduced spacing between items */
    }
    
    .nav-menu.active {
      right: 0;
    }
    
    .hamburger {
      display: block;
    }
  }
  
  @media (max-width: 768px) {
    .hero__wrapper {
      flex-direction: column;
      gap: 2rem;
    }
    
    .hero__text {
      width: 100%;
      text-align: center;
    }
    
    .hero__quick-form {
      width: 100%;
      margin: 0 auto;
    }
    
    .services__grid,
    .projects__filter,
    .contact__wrapper {
      width: 100%;
    }
    
    .about__content {
      flex-direction: column;
    }
    
    .about__text,
    .about__image {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .container {
      padding: 0 1rem;
    }
    
    .section-title {
      font-size: var(--font-size-3xl);
    }
    
    .hero__title {
      font-size: var(--font-size-3xl);
    }
    
    .testimonial-card,
    .project-card,
    .service-card {
      padding: 1rem;
    }
    
    .footer__content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  
  /* SEO content styling */
  .seo-content {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
  }
  
  .seo-content h2,
  .seo-content h3 {
      margin: 0.5em 0;
  }
  
  .seo-content p,
  .seo-content ul {
      margin-bottom: 1em;
  }
  
  /* Improved back to top button */
  .back-to-top {
      position: fixed;
      bottom: 100px;
      left: 30px;
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }
  
  .back-to-top:hover {
      background: var(--primary-dark);
      transform: translateY(-5px);
  }
  
  /* Meta keyword and title optimization */
  @media screen and (min-width: 1px) {
      .service-areas-keywords {
          display: none;
      }
      
      /* Add CSS variables for better SEO keyword targeting */
      :root {
          --construction-ambattur: #f0f0f0;
          --renovation-chennai: #f5f5f5;
          --interiors-chengalpattu: #fafafa;
          --building-tambaram: #f8f8f8;
          --commercial-porur: #f2f2f2;
      }
  }
  
  /* Footer link improvements */
  .footer__services a,
  .footer__contact a {
      position: relative;
      transition: all 0.3s ease;
      color: var(--white);
  }
  
  .footer__services a:hover,
  .footer__contact a:hover {
      color: var(--primary);
      padding-left: 5px;
  }
  
  .footer__bottom a {
      color: var(--white);
      text-decoration: underline;
      transition: all 0.3s ease;
  }
  
  .footer__bottom a:hover {
      color: var(--primary);
  }
  
  /* Improvements for structure data and locality */
  .testimonial-card__text strong,
  .section-description strong {
      font-weight: 600;
      color: var(--primary-light);
  }
  
  /* Loading Animation */
  .loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  }
  
  .loading-overlay.hidden {
      opacity: 0;
      visibility: hidden;
  }
  
  .loading-spinner {
      position: relative;
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
  }
  
  .loading-logo {
      width: 60px;
      height: auto;
      margin-bottom: 15px;
  }
  
  @keyframes spin {
      to { transform: rotate(360deg); }
  }
  
  body.loading {
      overflow: hidden;
  }
  
  /* Popup styles for Quick Consultation */
  .popup-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    transition: all 0.3s;
  }
  
  .popup-overlay:target {
    visibility: visible;
    opacity: 1;
  }
  
  .popup-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  
  .popup-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
  }
  
  .popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--gray-600);
    transition: transform 0.2s ease;
  }
  
  .popup-close:hover {
    transform: scale(1.1);
  }
  
  .popup-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
  }
  
  .popup-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
  }
  
  @media (max-width: 768px) {
    .popup-content {
      padding: 1.5rem;
      max-width: 90%;
    }
  }
  
  @media (max-width: 576px) {
    .popup-content {
      padding: 1rem;
      max-width: 95%;
    }
    
    .popup-content .form-group {
      margin-bottom: 0.75rem;
    }
  }
  
  /* Ensure hero content is properly positioned relative to header */
  @media (max-width: 992px) {
    .hero {
      width: 90%;
      border-radius: 40px;
      margin: 90px auto 40px;
      min-height: 500px;
      padding-top: 0;
    }
    
    .hero__slider {
      border-radius: 40px;
    }
    
    .hero__content {
      padding: 50px 30px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      width: 95%;
      border-radius: 30px;
      margin: 80px auto 30px;
      min-height: auto;
      padding-top: 0;
    }
    
    .hero__slider {
      border-radius: 30px;
    }
    
    .hero__content {
      padding: 40px 20px;
    }
    
    .container {
      padding-left: var(--spacing-4);
      padding-right: var(--spacing-4);
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      width: 92%;
      border-radius: 25px;
      margin: 70px auto 20px;
      min-height: auto;
      padding-top: 0;
    }
    
    .hero__slider {
      border-radius: 25px;
    }
    
    .hero__content {
      padding: 30px 15px;
    }
    
    .container {
      padding-left: var(--spacing-3);
      padding-right: var(--spacing-3);
    }
  }
  
  /* Navigation Dropdown */
  .nav-dropdown {
    position: relative;
  }
  
  .nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 4px;
    padding: 0.5rem 0;
  }
  
  .nav-dropdown:hover .nav-dropdown-content {
    display: block;
  }
  
  .nav-dropdown-content a {
    color: var(--secondary);
    padding: 0.75rem 1.5rem;
    display: block;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
  }
  
  .nav-dropdown-content a:hover {
    background-color: var(--gray-100);
    color: var(--primary);
  }
  
  .nav-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.8rem;
  }
  
  @media (max-width: 992px) {
    .nav-dropdown-content {
      position: static;
      background-color: var(--secondary-light);
      box-shadow: none;
      display: none;
      margin-left: 1rem;
      margin-top: 0.5rem;
      border-left: 2px solid var(--primary);
    }
  
    .nav-dropdown.active .nav-dropdown-content {
      display: block;
    }
  
    .nav-dropdown-content a {
      color: var(--black);
      padding: 0.5rem 1rem;
    }
  
    .nav-dropdown-content a:hover {
      background-color: transparent;
      color: var(--primary);
    }
  } 
  
  /* SEO Content Section Styles */
  .seo-content {
      background-color: var(--gray-100);
      padding: var(--spacing-12) 0;
  }
  
  .seo-content h2,
  .seo-content h3 {
      margin-bottom: var(--spacing-4);
  }
  
  .seo-content p,
  .seo-content ul {
      margin-bottom: var(--spacing-5);
  }
  
  /* Service Details Page Styles */
  /* Service Details Section */
  .service-details {
      padding: var(--spacing-12) 0;
  }
  
  .service-details__content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-8);
      align-items: center;
  }
  
  .service-details__text h2 {
      margin-bottom: var(--spacing-4);
      font-size: 2.25rem;
      color: var(--secondary);
  }
  
  .service-details__text p {
      margin-bottom: var(--spacing-4);
      line-height: 1.8;
      color: var(--gray-700);
  }
  
  .service-details__highlight {
      display: flex;
      background-color: var(--gray-100);
      padding: var(--spacing-5);
      border-radius: var(--radius-md);
      margin-top: var(--spacing-6);
      border-left: 4px solid var(--primary);
  }
  
  .highlight-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-right: var(--spacing-4);
      min-width: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .highlight-text h3 {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-2);
      color: var(--secondary);
  }
  
  .service-details__image img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-md);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Services Offered Section */
  .services-offered {
      padding: var(--spacing-12) 0;
      background-color: var(--gray-100);
  }
  
  .services-offered__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: var(--spacing-6);
      margin-top: var(--spacing-8);
  }
  
  .service-item {
      background-color: var(--white);
      padding: var(--spacing-6);
      border-radius: var(--radius-md);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
  }
  
  .service-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-item__icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: var(--spacing-4);
  }
  
  .service-item h3 {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-3);
      color: var(--secondary);
  }
  
  .service-item p {
      color: var(--gray-700);
      line-height: 1.6;
  }
  
  /* Construction Process Section */
  .construction-process {
      padding: var(--spacing-12) 0;
  }
  
  .process-timeline {
      margin-top: var(--spacing-8);
      position: relative;
  }
  
  .process-timeline::before {
      content: '';
      position: absolute;
      left: 35px;
      top: 0;
      bottom: 0;
      width: 2px;
      background-color: var(--gray-300);
  }
  
  .process-step {
      display: flex;
      margin-bottom: var(--spacing-6);
      position: relative;
  }
  
  .process-step__number {
      width: 70px;
      height: 70px;
      background-color: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin-right: var(--spacing-5);
      z-index: 1;
      box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
  }
  
  .process-step__content {
      padding-top: var(--spacing-2);
      flex: 1;
  }
  
  .process-step__content h3 {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-2);
      color: var(--secondary);
  }
  
  .process-step__content p {
      color: var(--gray-700);
      line-height: 1.6;
  }
  
  /* Service Benefits Section */
  .service-benefits {
      padding: var(--spacing-12) 0;
      background-color: var(--gray-100);
  }
  
  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: var(--spacing-6);
      margin-top: var(--spacing-8);
  }
  
  .benefit-item {
      background-color: var(--white);
      padding: var(--spacing-6);
      border-radius: var(--radius-md);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
  }
  
  .benefit-item:hover {
      transform: translateY(-5px);
  }
  
  .benefit-icon {
      width: 60px;
      height: 60px;
      background-color: rgba(var(--primary-rgb), 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      border-radius: 50%;
      margin-bottom: var(--spacing-4);
  }
  
  .benefit-item h3 {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-3);
      color: var(--secondary);
  }
  
  .benefit-item p {
      color: var(--gray-700);
      line-height: 1.6;
  }
  
  /* Related Projects Section */
  .related-projects {
      padding: var(--spacing-12) 0;
  }
  
  .projects-gallery {
      margin-top: var(--spacing-8);
      padding-bottom: var(--spacing-12);
  }
  
  .project-card {
      background-color: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .project-card__image {
      width: 100%;
      height: 250px;
      overflow: hidden;
  }
  
  .project-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }
  
  .project-card:hover .project-card__image img {
      transform: scale(1.05);
  }
  
  .project-card__content {
      padding: var(--spacing-4);
  }
  
  .project-card__content h3 {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-2);
      color: var(--secondary);
  }
  
  .project-card__content p {
      color: var(--gray-600);
      font-size: 0.95rem;
  }
  
  /* FAQ Section */
  .faq-section {
      padding: var(--spacing-12) 0;
      background-color: var(--gray-100);
  }
  
  .accordion {
      margin-top: var(--spacing-8);
  }
  
  .accordion-item {
      margin-bottom: var(--spacing-4);
      background-color: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .accordion-header {
      padding: var(--spacing-4) var(--spacing-5);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }
  
  .accordion-header:hover {
      background-color: var(--gray-50);
  }
  
  .accordion-header h3 {
      font-size: 1.1rem;
      margin: 0;
      color: var(--secondary);
      font-weight: 600;
  }
  
  .accordion-icon {
      color: var(--primary);
      font-size: 1rem;
      transition: transform 0.3s ease;
  }
  
  .accordion-item.active .accordion-icon {
      transform: rotate(45deg);
  }
  
  .accordion-content {
      padding: 0 var(--spacing-5);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .accordion-item.active .accordion-content {
      padding: 0 var(--spacing-5) var(--spacing-5);
      max-height: 500px;
  }
  
  .accordion-content p {
      margin: 0;
      line-height: 1.7;
      color: var(--gray-700);
  }
  
  /* CTA Section */
  .cta-section {
      padding: var(--spacing-12) 0;
      background-image: linear-gradient(to right, rgba(var(--secondary-rgb), 0.9), rgba(var(--secondary-rgb), 0.7)), url('../images/optimized/large/residential-cta.webp');
      background-size: cover;
      background-position: center;
      color: var(--white);
      text-align: center;
  }
  
  .cta-content {
      max-width: 800px;
      margin: 0 auto;
  }
  
  .cta-content h2 {
      font-size: 2.5rem;
      margin-bottom: var(--spacing-4);
  }
  
  .cta-content p {
      font-size: 1.2rem;
      margin-bottom: var(--spacing-6);
      opacity: 0.9;
  }
  
  .cta-buttons {
      display: flex;
      justify-content: center;
      gap: var(--spacing-4);
      flex-wrap: wrap;
  }
  
  /* Responsive Styles for Service Details Page */
  @media (max-width: 992px) {
      .service-details__content {
          grid-template-columns: 1fr;
      }
      
      .service-details__image {
          order: -1;
          margin-bottom: var(--spacing-6);
      }
      
      .cta-content h2 {
          font-size: 2rem;
      }
  }
  
  @media (max-width: 768px) {
      .process-step {
          flex-direction: column;
      }
      
      .process-step__number {
          margin-bottom: var(--spacing-4);
      }
      
      .process-timeline::before {
          display: none;
      }
      
      .page-hero__title {
          font-size: 2.5rem;
      }
      
      .page-hero__subtitle {
          font-size: 1.2rem;
      }
      
      .service-details__text h2 {
          font-size: 1.75rem;
      }
  }
  
  @media (max-width: 576px) {
      .service-details {
          padding: var(--spacing-8) 0;
      }
      
      .services-offered,
      .construction-process,
      .service-benefits,
      .related-projects,
      .faq-section,
      .cta-section,
      .seo-content {
          padding: var(--spacing-8) 0;
      }
      
      .page-hero__title {
          font-size: 2rem;
      }
      
      .service-details__highlight {
          flex-direction: column;
      }
      
      .highlight-icon {
          margin-bottom: var(--spacing-3);
          margin-right: 0;
      }
      
      .cta-content h2 {
          font-size: 1.75rem;
      }
      
      .cta-content p {
          font-size: 1rem;
      }
  }
  
  /* Premium Materials Section */
  .premium-materials {
      padding: var(--spacing-12) 0;
      background-color: var(--white);
  }
  
  .materials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: var(--spacing-6);
      margin-top: var(--spacing-8);
  }
  
  .material-item {
      background-color: var(--gray-50);
      padding: var(--spacing-6);
      border-radius: var(--radius-md);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
  }
  
  .material-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .material-image {
      width: 80px;
      height: 80px;
      background-color: rgba(var(--primary-rgb), 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      border-radius: 50%;
      margin: 0 auto var(--spacing-4);
  }
  
  .material-item h3 {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-3);
      color: var(--secondary);
  }
  
  .material-item p {
      color: var(--gray-700);
      line-height: 1.6;
      font-size: 0.95rem;
  }
  
  @media (max-width: 576px) {
      .premium-materials {
          padding: var(--spacing-8) 0;
      }
  }
  
  /* Instagram Feed Styles */
  .instagram-feed {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-5);
      margin-top: var(--spacing-8);
  }
  
  .insta-post {
      background-color: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .insta-post:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .insta-post__media {
      width: 100%;
      height: 280px;
      overflow: hidden;
      position: relative;
  }
  
  .insta-post__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }
  
  .insta-post:hover .insta-post__media img {
      transform: scale(1.05);
  }
  
  .insta-post__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.3);
      opacity: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s ease;
  }
  
  .insta-post:hover .insta-post__overlay {
      opacity: 1;
  }
  
  .insta-post__icons {
      display: flex;
      gap: var(--spacing-3);
  }
  
  .insta-post__icons span {
      width: 50px;
      height: 50px;
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--secondary);
      font-size: 1.25rem;
      cursor: pointer;
      transition: transform 0.2s ease, background-color 0.2s ease;
  }
  
  .insta-post__icons span:hover {
      transform: scale(1.1);
      background-color: var(--white);
  }
  
  .video-icon {
      color: var(--primary);
  }
  
  .insta-post__content {
      padding: var(--spacing-4);
  }
  
  .insta-post__caption {
      font-size: 0.95rem;
      color: var(--gray-700);
      margin-bottom: var(--spacing-3);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  
  .insta-post__meta {
      display: flex;
      gap: var(--spacing-4);
      margin-bottom: var(--spacing-3);
      color: var(--gray-600);
      font-size: 0.9rem;
  }
  
  .insta-post__meta span {
      display: flex;
      align-items: center;
      gap: 5px;
  }
  
  .insta-post__link {
      display: inline-block;
      font-size: 0.9rem;
      color: var(--primary);
      text-decoration: none;
      position: relative;
      font-weight: 600;
  }
  
  .insta-post__link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: width 0.3s ease;
  }
  
  .insta-post__link:hover::after {
      width: 100%;
  }
  
  .insta-feed-cta {
      margin-top: var(--spacing-8);
      text-align: center;
  }
  
  .insta-feed-cta .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
  }
  
  .insta-feed-cta .btn i {
      font-size: 1.25rem;
  }
  
  /* Video Modal Styles */
  .video-modal {
      display: none;
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 9999;
      overflow: auto;
      opacity: 0;
      transition: all 0.3s;
  }
  
  .video-modal.active {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
  }
  
  .video-modal__content {
      width: 90%;
      max-width: 900px;
      background-color: var(--white);
      border-radius: var(--radius-md);
      position: relative;
      animation: modalFadeIn 0.3s ease;
  }
  
  @keyframes modalFadeIn {
      from {
          opacity: 0;
          transform: scale(0.9);
      }
      to {
          opacity: 1;
          transform: scale(1);
      }
  }
  
  .video-modal__close {
      position: absolute;
      top: -40px;
      right: 0;
      color: var(--white);
      font-size: 2rem;
      cursor: pointer;
      z-index: 1;
      transition: transform 0.2s ease;
  }
  
  .video-modal__close:hover {
      transform: scale(1.1);
  }
  
  .video-modal__container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: var(--radius-md);
  }
  
  .video-modal__iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
  }
  
  /* Responsive Styles for Instagram Feed */
  @media (max-width: 992px) {
      .instagram-feed {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media (max-width: 576px) {
      .instagram-feed {
          grid-template-columns: 1fr;
      }
      
      .insta-post__media {
          height: 250px;
      }
      
      .video-modal__content {
          width: 95%;
      }
      
      .video-modal__close {
          top: -35px;
          right: 0;
      }
  }
  
  .service-card__description {
    font-size: var(--font-size-md);
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  
  /* Services Slider Styles */
  .services-swiper {
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 60px;
    margin-top: 2rem;
    overflow: visible;
    cursor: grab;
  }
  
  .services-swiper:active {
    cursor: grabbing;
  }
  
  .services-swiper .swiper-slide {
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .services-swiper .swiper-pagination {
    bottom: 20px;
  }
  
  .services-swiper .swiper-pagination-bullet {
    background: var(--gray-400);
    opacity: 0.5;
    width: 10px;
    height: 10px;
  }
  
  .services-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 12px;
    height: 12px;
  }
  
  /* JavaScript disabled fallback for services */
  .no-js .services-swiper {
    display: none;
  }
  
  .no-js .services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  /* Responsive adjustments for services */
  @media (max-width: 992px) {
    .service-card__image {
      height: 200px;
    }
  }
  
  @media (max-width: 576px) {
    .service-card__image {
      height: 180px;
    }
  }
  
  /* Footer Areas Grid */
  .areas-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 15px;
  }
  
  .area-tile {
      background-color: #222;
      color: #fff;
      padding: 8px 12px;
      text-align: center;
      border-radius: 4px;
      border: 1px solid #333;
      font-size: 14px;
      cursor: default;
      transition: background-color 0.3s;
  }
  
  .area-tile:hover {
      background-color: #333;
  }
  
  @media (max-width: 768px) {
      .areas-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }
  
  @media (max-width: 576px) {
      .areas-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media (max-width: 992px) {
    .services {
      width: 90%;
      border-radius: 40px;
      margin: 40px auto;
      padding: 3rem 0;
    }
    
    .services__decoration-left {
      border-radius: 40px 0 0 40px;
    }
    
    .services__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-4);
    }
    
    .service-card {
      padding: 1.25rem;
      border-radius: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .services {
      width: 95%;
      border-radius: 30px;
      margin: 30px auto;
      padding: 2.5rem 0;
    }
    
    .services__decoration-left {
      border-radius: 30px 0 0 30px;
    }
  }
  
  @media (max-width: 576px) {
    .services {
      width: 92%;
      border-radius: 25px;
      margin: 20px auto;
      padding: 2rem 0;
    }
    
    .services__decoration-left {
      border-radius: 25px 0 0 25px;
    }
    
    .services__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-3);
    }
    
    .service-card {
      padding: 1rem;
      border-radius: 15px;
    }
  }
  
  /* Additional styles for background */
  .page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray-100);
    z-index: -1;
  }
  
  /* Add capsule design to all sections */
  .about, .projects, .testimonials, .contact, .footer {
    margin: 50px auto;
    max-width: 1200px;
    width: 90%;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    overflow: hidden;
  }
  
  @media (max-width: 992px) {
    .about, .projects, .testimonials, .contact, .footer {
      width: 90%;
      border-radius: 40px;
      margin: 40px auto;
    }
  }
  
  @media (max-width: 768px) {
    .about, .projects, .testimonials, .contact, .footer {
      width: 95%;
      border-radius: 30px;
      margin: 30px auto;
    }
  }
  
  @media (max-width: 576px) {
    .about, .projects, .testimonials, .contact, .footer {
      width: 92%;
      border-radius: 25px;
      margin: 20px auto;
    }
  }
  
  @media (max-width: 992px) {
    .hero {
      margin-top: 100px;
      margin-bottom: 60px;
    }
    
    .services, .about, .projects, .testimonials, .contact {
      margin-top: 60px;
      margin-bottom: 60px;
    }
    
    .footer {
      margin-top: 60px;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      margin-top: 100px;
      margin-bottom: 50px;
    }
    
    .services, .about, .projects, .testimonials, .contact {
      margin-top: 50px;
      margin-bottom: 50px;
    }
    
    .footer {
      margin-top: 50px;
      margin-bottom: 25px;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      margin-top: 100px;
      margin-bottom: 40px;
    }
    
    .services, .about, .projects, .testimonials, .contact {
      margin-top: 40px;
      margin-bottom: 40px;
    }
    
    .footer {
      margin-top: 40px;
      margin-bottom: 20px;
    }
  }
  
  /* New Testimonial Section - Completely Independent Styling */
  .testimonial-section {
    background-color: #0c1119;
    padding: 80px 0;
    margin: 80px auto;
    position: relative;
    overflow: hidden;
    color: #ffffff;
  }
  
  .testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .testimonial-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .testimonial-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    color: #ffd54f;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
  }
  
  .testimonial-title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
  }
  
  .testimonial-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffd54f;
  }
  
  .testimonial-description {
    color: #ffffff;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
  }
  
  .google-review-btn {
    margin-top: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    color: #4285f4;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .google-review-btn:hover {
    background-color: #f8f9fa;
    color: #4285f4;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  .google-review-btn i {
    font-size: 20px;
  }
  
  .testimonial-slider {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 60px;
    perspective: 1200px;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .testimonial-slider .swiper-slide {
    width: 350px;
    opacity: 0;
    transform: scale(0.8) rotateY(30deg);
    transition: all 0.5s ease;
  }
  
  .testimonial-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
  
  .testimonial-slider .swiper-slide-prev,
  .testimonial-slider .swiper-slide-next {
    opacity: 0.6;
  }
  
  .testimonial-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .testimonial-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-box-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-box-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
  }
  
  .testimonial-box-info p {
    color: #ffd54f;
    margin: 0;
    font-size: 14px;
  }
  
  .testimonial-box-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
  }
  
  .testimonial-box-rating i {
    color: #ffd54f;
  }
  
  .testimonial-box-text {
    color: #ffffff;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .testimonial-box-text::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 60px;
    position: absolute;
    top: -30px;
    left: -10px;
    color: rgba(255, 213, 79, 0.2);
    z-index: -1;
  }
  
  .testimonial-box-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
  }
  
  .testimonial-box-date i {
    font-size: 14px;
    color: #ffd54f;
  }
  
  .testimonial-slider .swiper-pagination {
    bottom: 0;
  }
  
  .testimonial-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
  }
  
  .testimonial-slider .swiper-pagination-bullet-active {
    background: #ffd54f;
    width: 30px;
    border-radius: 5px;
  }
  
  @media (max-width: 768px) {
    .testimonial-section {
      padding: 60px 0;
    }
    
    .testimonial-title {
      font-size: 28px;
    }
    
    .testimonial-slider {
      padding-bottom: 50px;
    }
    
    .testimonial-slider .swiper-slide {
      width: 300px;
    }
    
    .testimonial-box {
      padding: 20px;
    }
    
    .testimonial-box-avatar {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 576px) {
    .testimonial-section {
      padding: 40px 0;
    }
    
    .testimonial-title {
      font-size: 24px;
    }
    
    .testimonial-slider .swiper-slide {
      width: 280px;
    }
    
    .testimonial-box {
      padding: 15px;
    }
  }
  
  /* New Footer Section - Completely Independent Styling */
  .site-footer {
    background-color: #0c1119;
    color: #ffffff;
    padding: 70px 0 0;
    margin: 80px auto 0;
    position: relative;
  }
  
  .site-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .site-footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .site-footer-about {
    grid-column: span 1;
  }
  
  .site-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .site-footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  
  .site-footer-logo span {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
  }
  
  .site-footer-logo strong {
    font-weight: 700;
    color: #ffd54f;
  }
  
  .site-footer-about p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .site-footer-social {
    display: flex;
    gap: 15px;
  }
  
  .site-footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
  }
  
  .site-footer-social a:hover {
    background-color: #ffd54f;
    color: #0c1119;
    transform: translateY(-5px);
  }
  
  .site-footer h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
  }
  
  .site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ffd54f;
  }
  
  .site-footer-links ul,
  .site-footer-areas ul,
  .site-footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .site-footer-links li a,
  .site-footer-areas li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }
  
  .site-footer-links li a::before,
  .site-footer-areas li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd54f;
    transition: transform 0.3s ease;
  }
  
  .site-footer-links li a:hover,
  .site-footer-areas li a:hover {
    color: #ffd54f;
    transform: translateX(5px);
  }
  
  .site-footer-links li a:hover::before,
  .site-footer-areas li a:hover::before {
    transform: translateX(3px);
  }
  
  .site-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--color-text);
  }
  
  .site-footer-contact li i {
    margin-top: 4px;
    min-width: 16px;
    color: var(--color-primary);
  }
  
  .site-footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .site-footer-contact a:hover {
    color: #ffd54f;
  }
  
  .site-footer-bottom {
    padding: 20px 0;
    text-align: center;
  }
  
  .site-footer-bottom p {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
  }
  
  @media (max-width: 992px) {
    .site-footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .site-footer {
      padding-top: 50px;
    }
    
    .site-footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .site-footer h3 {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .site-footer {
      padding-top: 40px;
    }
    
    .site-footer-content {
      gap: 25px;
      padding-bottom: 30px;
    }
    
    .site-footer-logo {
      margin-bottom: 15px;
    }
    
    .site-footer-logo span {
      font-size: 18px;
    }
    
    .site-footer h3 {
      font-size: 16px;
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      width: 95%;
      padding: 0;
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
    .logo img {
      max-width: 40px;
    }
  }
  
  @media (max-width: 576px) {
    .navbar {
      width: 100%;
      padding: 0;
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
    .logo img {
      max-width: 50px;
    }
  }
  
  /* Tamil text styling */
  .tamil-text {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
  }
  
  .tamil-subtitle {
    font-family: var(--font-primary);
    color: var(--primary-dark);
    font-size: 0.9em;
    font-weight: 500;
  }
  
  .tamil-highlight {
    color: var(--primary);
    font-family: var(--font-primary);
    font-weight: 500;
    display: inline-block;
    padding: 0 5px;
    position: relative;
  }
  
  .tamil-service {
    display: block;
    font-size: 0.8em;
    margin-top: 0.3rem;
    color: var(--primary);
    font-weight: 500;
  }
  
  .tamil-label {
    font-size: 0.8em;
    color: var(--primary);
    margin-left: 5px;
    font-weight: 400;
  }
  
  .tamil-btn {
    font-size: 0.9em;
    margin-left: 5px;
  }
  
  @media (max-width: 768px) {
    .tamil-text {
      font-size: 1rem;
      margin-bottom: 1.2rem;
    }
    
    .tamil-subtitle {
      font-size: 0.85em;
      display: block;
      margin-top: 0.3rem;
    }
    
    .tamil-label {
      display: block;
      margin-left: 0;
      margin-top: 2px;
    }
  }
  
  @media (max-width: 576px) {
    .tamil-text {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    
    .tamil-subtitle {
      font-size: 0.8em;
    }
    
    .tamil-service {
      font-size: 0.75em;
    }
    
    .tamil-label {
      font-size: 0.75em;
    }
    
    .tamil-btn {
      font-size: 0.8em;
    }
    
    .tamil-highlight {
      font-size: 1.4rem;
      display: block;
      margin: 8px 0;
    }
  }
  
  /* Form Success Message */
  .form-success-message {
      background-color: #f2fff9;
      border: 1px solid #00c853;
      border-radius: 5px;
      padding: 20px;
      margin: 20px 0;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      animation: fadeInUp 0.5s ease-out;
  }
  
  .form-success-message .success-icon {
      color: #00c853;
      font-size: 48px;
      margin-bottom: 15px;
  }
  
  .form-success-message p {
      color: #333;
      font-size: 18px;
      margin: 0;
  }
  
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  /* Form Success and Error Popups */
  .form-success-popup,
  .form-error-popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .form-success-popup.show,
  .form-error-popup.show {
      opacity: 1;
      visibility: visible;
  }
  
  .form-success-popup .popup-content,
  .form-error-popup .popup-content {
      background-color: #fff;
      border-radius: 8px;
      padding: 30px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transform: scale(0.9);
      transition: transform 0.3s ease;
  }
  
  .form-success-popup.show .popup-content,
  .form-error-popup.show .popup-content {
      transform: scale(1);
  }
  
  .form-success-popup .success-icon {
      color: #00c853;
      font-size: 64px;
      margin-bottom: 20px;
  }
  
  .form-error-popup .error-icon {
      color: #f44336;
      font-size: 64px;
      margin-bottom: 20px;
  }
  
  .form-success-popup p,
  .form-error-popup p {
      color: #333;
      font-size: 18px;
      margin: 0 0 10px;
      line-height: 1.5;
  }
  
  .form-success-popup .redirect-text {
      font-size: 14px;
      color: #666;
      margin-top: 15px;
  }
  
  @media (max-width: 576px) {
      .form-success-popup .popup-content,
      .form-error-popup .popup-content {
          padding: 20px;
      }
      
      .form-success-popup .success-icon,
      .form-error-popup .error-icon {
          font-size: 48px;
          margin-bottom: 15px;
      }
      
      .form-success-popup p,
      .form-error-popup p {
          font-size: 16px;
      }
  }
  
  /* Announcement Bar */
  .announcement-bar {
      background: linear-gradient(45deg, #0b0504, #292115);
      color: #ffffff;
      padding: 25px 0 15px;
      margin: 20px auto 80px;
      width: 90%;
      max-width: 1200px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .announcement-slider {
      position: relative;
      overflow: hidden;
      height: 30px;
  }
  
  .announcement-track {
      display: flex;
      animation: slideAnnouncements 20s linear infinite;
      position: absolute;
      width: max-content;
  }
  
  .announcement-item {
      display: flex;
      align-items: center;
      padding: 0 30px;
      white-space: nowrap;
      font-size: 16px;
      font-weight: 500;
      position: relative;
  }
  
  .announcement-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 20px;
      width: 1px;
      background: rgba(255, 255, 255, 0.2);
  }
  
  .announcement-item i {
      margin-right: 12px;
      color: #ffffff;
      font-size: 18px;
  }
  
  .announcement-item span {
      opacity: 0.95;
  }
  
  @keyframes slideAnnouncements {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(-100%);
      }
  }
  
  /* Add hover pause effect */
  .announcement-slider:hover .announcement-track {
      animation-play-state: paused;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
      .announcement-bar {
          width: 95%;
          padding: 10px 0;
          margin-bottom: 50px;
      }
      
      .announcement-item {
          font-size: 14px;
          padding: 0 20px;
      }
      
      .announcement-item i {
          font-size: 16px;
      }
  }
  
  @media (max-width: 576px) {
      .announcement-bar {
          width: 100%;
          padding: 8px 0;
          margin-bottom: 40px;
          margin-top: 40px;
      }
      
      .announcement-item {
          font-size: 13px;
          padding: 0 15px;
      }
      
      .announcement-item i {
          font-size: 15px;
      }
  }
  
  @media (max-width: 768px) {
    .hero {
      width: 100%;
      margin: 0;
      padding-top: 80px;
      padding-bottom: 40px;
      border-radius: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
    }
  
    .header {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      padding: 1.2rem;
      background: transparent;
      border-radius: 0;
    }
  
    .header.scrolled {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      transform: none;
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 0.8rem 1.2rem;
      border-radius: 0;
    }
  
    .hero__content {
      padding: 20px;
      margin-top: 60px;
    }
  
    .hero__title {
      font-size: var(--font-size-4xl);
      margin-bottom: var(--spacing-4);
    }
  
    .hero__description {
      font-size: var(--font-size-base);
      margin-bottom: var(--spacing-6);
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      padding-top: 300px;
      min-height: 150vh;
    }
  
    .header {
      padding: 1rem;
    }
  
    .header.scrolled {
      padding: 0.8rem 1rem;
    }
  
    .hero__content {
      padding: 15px;
      margin-top: 80px;
    }
  
    .hero__title {
      font-size: var(--font-size-4xl);
    }
  
    .hero__buttons {
      flex-direction: column;
      gap: var(--spacing-3);
    }
  
    .hero__buttons .btn {
      width: 100%;
      text-align: center;
    }
  }
  
  .project-card__video {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      overflow: hidden;
      border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  }
  
  .project-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }
  
  .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
  }
  
  .play-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }
  
  .play-btn i {
      color: var(--primary);
      font-size: 24px;
      margin-left: 4px;
  }
  
  .play-btn:hover {
      background: var(--white);
      transform: scale(1.1);
  }
  
  .video-overlay:hover {
      background: rgba(0, 0, 0, 0.2);
  }
  
  .project-card:hover .project-video {
      transform: scale(1.05);
  }
  
  /* Update project card content styles */
  .project-card__content {
      padding: 1.5rem;
      background: var(--white);
      border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  }
  
  .project-card__content h3 {
      color: var(--dark);
      margin-bottom: 0.5rem;
      font-size: var(--font-size-lg);
      font-weight: 600;
  }
  
  .project-card__content p {
      color: var(--gray-600);
      margin-bottom: 1rem;
      font-size: var(--font-size-base);
      line-height: 1.6;
  }
  
  .project-card__link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary);
      font-weight: 500;
      transition: color 0.3s ease;
  }
  
  .project-card__link i {
      font-size: 1.2em;
  }
  
  .project-card__link:hover {
      color: var(--primary-dark);
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
      .project-card__video {
          padding-bottom: 75%; /* 4:3 aspect ratio for mobile */
      }
  
      .play-btn {
          width: 50px;
          height: 50px;
      }
  
      .play-btn i {
          font-size: 20px;
      }
  
      .project-card__content {
          padding: 1.25rem;
      }
  
      .project-card__content h3 {
          font-size: var(--font-size-base);
      }
  
      .project-card__content p {
          font-size: var(--font-size-sm);
      }
  }
  
  @media (max-width: 576px) {
      .project-card__video {
          padding-bottom: 100%; /* Square aspect ratio for small mobile */
      }
  
      .play-btn {
          width: 40px;
          height: 40px;
      }
  
      .play-btn i {
          font-size: 16px;
      }
  
      .project-card__content {
          padding: 1rem;
      }
  }
  
  /* Instagram Video Modal */
  .instagram-video-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
  }
  
  .instagram-video-modal.active {
      display: flex;
      opacity: 1;
      align-items: center;
      justify-content: center;
  }
  
  .instagram-video-modal .modal-content {
      position: relative;
      width: 90%;
      max-width: 600px;
      background: var(--white);
      border-radius: var(--border-radius-lg);
      padding: 20px;
      margin: 20px;
  }
  
  .instagram-video-modal .modal-close {
      position: absolute;
      top: -40px;
      right: -40px;
      width: 36px;
      height: 36px;
      background: var(--white);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--dark);
      transition: all 0.3s ease;
  }
  
  .instagram-video-modal .modal-close:hover {
      transform: scale(1.1);
      background: var(--gray-100);
  }
  
  .instagram-video-modal .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 100%; /* Square aspect ratio for Instagram */
      overflow: hidden;
      background: var(--dark);
      border-radius: var(--border-radius-md);
  }
  
  .instagram-video-modal .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
  }
  
  @media (max-width: 768px) {
      .instagram-video-modal .modal-content {
          width: 95%;
          margin: 15px;
          padding: 15px;
      }
  
      .instagram-video-modal .modal-close {
          top: -50px;
          right: 50%;
          transform: translateX(50%);
      }
  }
  
  @media (max-width: 576px) {
      .instagram-video-modal .modal-content {
          width: 100%;
          margin: 10px;
          padding: 10px;
      }
  }
  
  /* Page Hero Styles */
  .page-hero {
      background: linear-gradient(45deg, var(--primary), var(--primary-dark));
      padding: 100px 0 60px;
      text-align: center;
      color: #ffffff;
      margin-bottom: 60px;
  }
  
  .page-hero__title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
  }
  
  .page-hero__subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
  }
  
  /* About Content Styles */
  .about-content {
      padding: 60px 0;
  }
  
  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
  }
  
  .about-text h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      color: var(--primary);
  }
  
  .about-text p {
      margin-bottom: 20px;
      line-height: 1.8;
  }
  
  .about-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Values Section Styles */
  .values-section {
      padding: 60px 0;
      background: #f8f9fa;
      border-radius: 20px;
      margin-bottom: 60px;
  }
  
  .values-section h2 {
      text-align: center;
      margin-bottom: 40px;
      color: var(--primary);
  }
  
  .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 0 20px;
  }
  
  .value-card {
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
  }
  
  .value-card:hover {
      transform: translateY(-5px);
  }
  
  .value-card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
  }
  
  .value-card h3 {
      margin-bottom: 15px;
      color: var(--text-dark);
  }
  
  /* Consultation Form Styles */
  .consultation-section {
      padding: 60px 0;
      background: linear-gradient(45deg, var(--primary-light), var(--primary));
      color: #ffffff;
      border-radius: 20px;
  }
  
  .consultation-wrapper {
      max-width: 800px;
      margin: 0 auto;
  }
  
  .consultation-content {
      text-align: center;
      margin-bottom: 40px;
  }
  
  .consultation-form {
      background: #ffffff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .consultation-form .form-group {
      margin-bottom: 20px;
  }
  
  .consultation-form label {
      color: var(--text-dark);
      display: block;
      margin-bottom: 8px;
  }
  
  .consultation-form input,
  .consultation-form textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
  }
  
  .consultation-form textarea {
      resize: vertical;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
      .about-grid {
          grid-template-columns: 1fr;
      }
      
      .values-grid {
          grid-template-columns: 1fr;
      }
      
      .page-hero__title {
          font-size: 2rem;
      }
      
      .consultation-form {
          padding: 20px;
      }
  }
  
  /* Hero Badges */
  .hero__badges {
      display: flex;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
  }
  
  .badge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      color: #fff;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .badge:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }
  
  .badge i {
      font-size: 1.1rem;
      color: var(--primary-color);
  }
  
  /* Hero Locations */
  .hero__locations {
      margin-top: 30px;
      color: #fff;
  }
  
  .hero__locations h3 {
      font-size: 1rem;
      margin-bottom: 15px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
  }
  
  .location-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding-bottom: 30px;
  }
  
  .location-badge {
      padding: 6px 15px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      font-size: 0.85rem;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
  }
  
  .location-badge:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
      .hero__badges {
          justify-content: center;
          gap: 15px;
      }
  
      .badge {
          padding: 8px 15px;
          font-size: 0.8rem;
      }
  
      .hero__locations {
          text-align: center;
      }
  
      .location-badges {
          justify-content: center;
      }
  
      .location-badge {
          padding: 5px 12px;
          font-size: 0.8rem;
      }
  }
  
  /* Construction-themed loading animation */
  .construction-beam {
      position: absolute;
      width: 120px;
      height: 8px;
      background: linear-gradient(90deg, #ff6b00, #ff9d00);
      border-radius: 4px;
      transform-origin: center;
      animation: beam-move 1.2s ease-in-out infinite;
      box-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
  }
  
  .construction-crane {
      position: absolute;
      width: 80px;
      height: 80px;
  }
  
  .crane-body {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 14px;
      height: 60px;
      background-color: #2c3e50;
      border-radius: 2px;
  }
  
  .crane-arm {
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 8px;
      background-color: #e74c3c;
      border-radius: 4px;
      transform-origin: center left;
      animation: crane-rotate 2s ease-in-out infinite;
  }
  
  .crane-weight {
      position: absolute;
      top: 8px;
      left: 15px;
      width: 12px;
      height: 12px;
      background-color: #7f8c8d;
      border-radius: 2px;
      animation: crane-weight 2s ease-in-out infinite;
  }
  
  .crane-hook {
      position: absolute;
      top: 8px;
      right: 5px;
      width: 10px;
      height: 16px;
      border: 3px solid #95a5a6;
      border-top: none;
      border-radius: 0 0 5px 5px;
      animation: crane-hook 2s ease-in-out infinite;
  }
  
  .construction-building {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .building-floor {
      width: 80%;
      height: 8px;
      background-color: #3498db;
      margin-bottom: 3px;
      border-radius: 2px;
      animation: floor-appear 0.8s ease-out;
      animation-fill-mode: both;
  }
  
  .building-floor:nth-child(1) {
      animation-delay: 0.1s;
  }
  
  .building-floor:nth-child(2) {
      animation-delay: 0.3s;
  }
  
  .building-floor:nth-child(3) {
      animation-delay: 0.5s;
  }
  
  @keyframes beam-move {
      0%, 100% {
          transform: translateX(-40px) rotate(-10deg);
      }
      50% {
          transform: translateX(40px) rotate(10deg);
      }
  }
  
  @keyframes crane-rotate {
      0%, 100% {
          transform: translateX(-50%) rotate(-10deg);
      }
      50% {
          transform: translateX(-50%) rotate(10deg);
      }
  }
  
  @keyframes crane-weight {
      0%, 100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(5px);
      }
  }
  
  @keyframes crane-hook {
      0%, 100% {
          transform: translateY(0) rotate(0);
      }
      50% {
          transform: translateY(8px) rotate(5deg);
      }
  }
  
  @keyframes floor-appear {
      0% {
          transform: translateY(20px);
          opacity: 0;
      }
      100% {
          transform: translateY(0);
          opacity: 1;
      }
  }
  
  .loading-text {
      margin-top: 15px;
      font-size: 14px;
      font-weight: 500;
      color: #2c3e50;
      display: flex;
      align-items: center;
  }
  
  .loading-text:after {
      content: '...';
      overflow: hidden;
      display: inline-block;
      vertical-align: bottom;
      animation: ellipsis steps(4, end) 1s infinite;
      width: 0;
  }
  
  @keyframes ellipsis {
      to {
          width: 20px;
      }
  }
  
  /* Animation preloader optimization */
  .loading-overlay * {
      will-change: transform, opacity;
  }
  
  /* Form buttons styling - centered and no Tamil text */
  .btn[type="submit"],
  .submit-button,
  form button[type="submit"] {
      display: block;
      width: 100%;
      max-width: 300px;
      margin: 20px auto 0;
      text-align: center;
      padding: 14px 20px;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
  }
  
  /* Hide Tamil text in buttons */
  .btn[type="submit"] .tamil-btn,
  .submit-button .tamil-btn {
      display: none;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
      .btn[type="submit"],
      .submit-button,
      form button[type="submit"] {
          max-width: 100%;
          width: 100%;
          padding: 12px 15px;
      }
  }