    /* Custom CSS Variables for Brand Alignment */
:root {
  --color-primary: #0a2540;
  --color-accent: #0238A1;
  --color-accent-hover: #004099;
  --color-text-dark: #1c2a38;
  --color-text-muted: #627d98;
  --color-bg-light: #f8fafc;
  --font-main: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}


html {
  scroll-behavior: smooth;
  /* Adjust 80px to match the actual height of your sticky header */
  scroll-padding-top: 80px; 
}

/* Container Layout utility */
.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Base Theme & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
}

/* --- Header & Container Layout --- */
.navbar {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0; /* Subtly separates header from content */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px; /* Header height */
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 98px; /* Keeps the elephant icon and text proportional */
  width: auto;
  display: block;
}

/* --- Navigation Links --- */
.nav-menu {
  display: flex;
  gap: 36px; /* Spacing between navigation links */
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 17px;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

/* --- Left-to-Right Scaling Underline --- */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px; /* Aligns indicator perfectly beneath the text */
  width: 50%;
  height: 3px;
  background-color: #0046b8; /* Deep blue brand color */
  transform: scaleX(0);
  transform-origin: left; /* Forces the scaling direction left-to-right */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active and Hover states */
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}


/* --- Responsive Mobile Styles (Under 768px) --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000000;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  /* Toggle visibility */
  .menu-toggle {
    display: flex;
  }

  /* Hamburger to 'X' animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Dropdown mobile menu drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen by default */
    width: 260px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 30px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0; /* Slides into view */
  }

  .nav-link {
    font-size: 18px;
    width: fit-content;
  }
}

/* --- Hero Section --- */
.hero-section {
  padding: 0rem 0;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  margin-top: -40px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* Hero Content (Left) */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -60px;
}

.accent-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-title .text-highlight {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Redesigned Interactive Call to Action Button */
.btn-primary {
  position: relative;
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  
  /* Fallback color is #1e3a8a if var() is not defined */
  color: var(--color-accent, #1e3a8a);
  border: 2px solid var(--color-accent, #1e3a8a);
  border-radius: 4px;
  text-decoration: none;
  background-color: transparent;
  
  /* Ensure children (like the ::before pseudo-element) clip properly */
  overflow: hidden;
  z-index: 1;
  
  /* Smooth transitions */
  transition: color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

/* Sliding background overlay */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-accent, #1e3a8a);
  z-index: -1;
  transition: width 0.4s ease;
}

/* Hover States */
.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2); /* matches #1e3a8a shadow */
}

.btn-primary:hover::before {
  width: 100%;
}
/* Hero Visual Frame (Right) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  border-radius: 12px;
  width: 100%;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Floating interactive UI badge */
.floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-dot {
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.floating-card p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Subtle pulse animation for visual polish */
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-container {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Toggle Hamburger on */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
  }

  /* Active class triggered via JS */
  .nav-menu.is-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  /* Change Grid to single column */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }
.hero-section {
    margin-top: 50px;
}
  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
      font-size: 0.9rem;
  }

  /* Hamburger transformation states */
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* --- Black Logo Preloader Styles --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000; /* Deep black background */
  z-index: 99999; /* Higher priority layer priority */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
}

.preloader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  max-width: 150px;
  text-align: center;
}

/* Main animated logo display */
.preloader-logo {
  height: 50px; /* Highly visible focal point size */
  width: auto;
  object-fit: contain;
  margin-bottom: 2.5rem;
  animation: logoPulse 2s ease-in-out infinite;
}

/* Progress HUD styling */
.progress-container {
  width: 100%;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.loading-status {
  color: #8892b0; /* Modern soft gray text */
}

.progress-percent {
  color: var(--color-accent, #0052cc); /* Vibrant brand identifier */
  font-weight: 700;
}

/* Glow-enhanced dynamic loader tracks */
.progress-bar-track {
  width: 100%;
  height: 6px;
  background-color: #111216; /* Dark background track blend */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0%; /* Value controlled seamlessly via JavaScript */
  background: linear-gradient(90deg, #004099, var(--color-accent, #0052cc));
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 82, 204, 0.6); /* Premium cyber glow */
  transition: width 0.1s cubic-bezier(0.1, 0.8, 0.25, 1);
}

/* UI Transitions and Keyframes */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.03); opacity: 1; filter: drop-shadow(0 0 15px rgba(0, 82, 204, 0.25)); }
}



 /* --- Global Reset for Footer Context --- */
  .site-footer {
    background-color: #151515;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    box-sizing: border-box;
  }
  .site-footer *, .site-footer *:before, .site-footer *:after {
    box-sizing: inherit;
  }

  /* Blue Top Accent line */
  .footer-top-accent {
    width: 2px;
    height: 35px;
    background-color: #0238A1;
    margin: 0 auto;
  }

  /* Common Row Wrapper */
  .footer-section {
    max-width: 1350px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* --- ROW 1 STYLING --- */
  .footer-main-row {
    padding-top: 50px;
    border-bottom: 1px solid #222222;
  }

  .footer-col {
    flex: 1;
    display: flex;
  }

  /* Left Socials */
  .footer-socials {
    justify-content: flex-start;
    gap: 12px;
  }
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #0238A1;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  .social-icon svg {
    width: 18px;
    height: 18px;
  }
  .social-icon:hover {
    transform: translateY(-3px);
    background-color: rgba(0, 122, 255, 0.15);
    color: #0238A1;
  }

  /* Center Headline */
  .footer-headline {
    justify-content: center;
  }
  .footer-headline h2 {
    font-size: 58px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -1px;
    color: #fff;
  }

 /* Right CTA Button Base State */
  .footer-cta {
    justify-content: flex-end;
  }
.cta-btn {
  display: inline-block;
  border: 2px solid #0238A1;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 30px;
  font-size: 17px;
  font-weight: bold;
  position: relative;
  
  /* Create a background that is 200% wide: left half is transparent, right half is blue */
  background-image: linear-gradient(to left, transparent 50%, #0238A1 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  
  /* Smoothly transition the background position and text color */
  transition: background-position 0.4s ease-out, color 0.2s ease;
}

/* Hover State - Slides the blue background into view from the right */
.cta-btn:hover {
  background-position: right bottom;
  color: #ffffff; /* Ensures text stays sharply visible over the blue */
  background-color: #151515;
}

  /* --- ROW 2 STYLING --- */
  .footer-info-row {
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    border-bottom: 1px solid #111111;
  }
  .info-block {
    flex: 1;
    text-align: center;
  }
  .info-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
  }
  .info-block p, .info-block a {
    color: #cccccc;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
  }
  .info-block a:hover {
    color: #0238A1;
  }

  /* --- ROW 3 STYLING (Copyright area) --- */
  .footer-bottom {
    background-color: #0a0a0a;
    padding: 30px 20px;
  }
  .footer-bottom-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .copyright {
    color: #555555;
    font-size: 14px;
    margin: 0;
  }
  .policy-links {
    display: flex;
    gap: 25px;
  }
  .policy-links a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .policy-links a:hover {
    color: #0238A1;
  }

  /* --- RESPONSIVE DESIGN (Mobile Breakdown) --- */
  @media (max-width: 768px) {
    .footer-main-row {
      flex-direction: column;
      gap: 30px;
      padding-bottom: 40px;
    }
    .footer-col {
      justify-content: center;
    }
    .footer-headline {
      order: -1; /* Puts "Let's Talk" on top on mobile screens */
    }
    .footer-info-row {
      flex-direction: column;
      gap: 40px;
    }
    .footer-bottom-container {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }

/* --- Full Screen Modal Design --- */
.enquiry-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #002E8F; /* Crisp white canvas background matching image reference */
  z-index: 99999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Toggle state via JavaScript helper class */
.enquiry-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Content Container Width Setup */
.modal-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header Section styling */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.modal-title {
  color: #ffffff; /* Vibrant blue tone explicitly extracted from image reference */
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 10px 0;
}
.modal-subtitle {
  color: #d0d0d0;
  font-size: 16px;
  margin: 0;
}

/* Close Window Icon Button */
.modal-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fffffF;
  padding: 5px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.modal-close-btn svg {
  width: 36px;
  height: 36px;
}
.modal-close-btn:hover {
  color: #333333;
  transform: scale(1.05);
}

/* Form Layout Grid Structure */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.form-group.full-width {
  grid-column: span 2;
}

/* Typography Labels */
.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #d0d0d0;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.form-group label .required {
  color: #002E8F;
}

/* Form Fields Input Mechanics Layout */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  color: #333333;
  border-radius: 2px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus highlighting rules */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #002E8F;
  box-shadow: 0 0 0 3px rgba(91, 192, 222, 0.15);
}

/* Minimal Custom Arrow Select dropdown structure */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Submission action block custom accent styling */
.form-actions {
  margin-top: 40px;
  text-align: left;
}
.submit-btn {
  background-color: #4682ff;
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.submit-btn:hover {
  background-color: #0238A1;
}
.submit-btn:active {
  transform: scale(0.98);
}

/* Responsive Structural Adjustments for Compact Mobile Devices */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .modal-title {
    font-size: 32px;
  }
}


 /* Section Layout Base */
  .features-section {
    
    padding: 0px 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-top: -100px;
  }
  
  .features-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
  }

  /* Universal Card Mechanics & Fluid Animations */
  .feature-card {
    padding: 60px 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 4px;
    /* Transitions all dynamic layout parameters at once */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s ease, 
                color 0.4s ease, 
                box-shadow 0.4s ease;
  }

  .feature-card:hover {
    transform: translateY(-12px);
  }

  /* Icon Configurations */
  .card-icon svg {
    width: 42px;
    height: 42px;
    margin-bottom: 40px;
    display: block;
    transition: color 0.4s ease, transform 0.3s ease;
  }
  
  .feature-card:hover .card-icon svg {
    transform: scale(1.05);
  }

  .card-title {
    font-family: "Trade Gothic", Sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
  }

  .card-divider {
    width: 35px;
    border: none;
    height: 2px;
    margin: 0 0 28px 0;
    transition: background-color 0.4s ease;
  }

  .card-text {
    font-family: "Trade Gothic", Sans-serif;
    font-size: 17px;
    line-height: 1.75;
    margin-top: 20px;
    transition: color 0.4s ease;
  }

  /* ==========================================
     CARD TYPE 1: BLUE TO WHITE (Inverts on Hover)
     ========================================== */
  .card-blue-to-white {
    background-color: #0238A1;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.15);
  }
  .card-blue-to-white .card-icon { color: #ffffff; }
  .card-blue-to-white .card-divider { background-color: #ffffff; }
  .card-blue-to-white .card-title-2 { color: #ffffff; }
  .card-blue-to-white .card-text { color: rgba(255, 255, 255, 0.9); }
  
  /* Hover Inverse State */
  .card-blue-to-white:hover {
    background-color: #ffffff;
    color: #111111;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  }
  .card-blue-to-white:hover .card-icon { color: #0238A1; }
  .card-blue-to-white:hover .card-divider { background-color: #0238A1; }
  .card-blue-to-white:hover .card-title-2 { color: #0238A1; }
  .card-blue-to-white:hover .card-text { color: #444444; }


  /* ==========================================
     CARD TYPE 2 & 3: WHITE TO BLUE (Inverts on Hover)
     ========================================== */
  .card-white-to-blue {
    background-color: #ffffff;
    color: #111111;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  }
  .card-white-to-blue .card-icon { color: #0238A1; }
  .card-white-to-blue .card-divider { background-color: #0238A1; }
  .card-white-to-blue .card-title-2 { color: #0238A1; }
  .card-white-to-blue .card-text { color: #444444; }
  
  /* Hover Inverse State */
  .card-white-to-blue:hover {
    background-color: #0238A1;
    color: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 122, 255, 0.32);
  }
  .card-white-to-blue:hover .card-icon { color: #ffffff; }
  .card-white-to-blue:hover .card-divider { background-color: #ffffff; }
  .card-white-to-blue:hover .card-title-2 { color: #ffffff; }
  .card-white-to-blue:hover .card-text { color: rgba(255, 255, 255, 0.9); }


  /* ==========================================
     GEOMETRIC CORNER ACCENT SHADOW (Card 3)
     ========================================== */
  .card-accented::before {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    border-bottom: 10px solid #0056b3;
    border-right: 10px solid #0056b3;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  }
  
  /* Shifts the blue geometric base subtly out on hover */
  .card-accented:hover::before {
    transform: translate(4px, 4px);
    border-color: #003b80; /* Darkens on background inversion */
  }

  /* Responsive Breaking Engine */
  @media (max-width: 992px) {
    .features-container {
      grid-template-columns: 1fr;
      gap: 50px;
    }
    .card-accented::before {
      display: none;
    }
    .feature-card:hover {
      transform: translateY(-6px);
    }
  }
  
  
  
    * {
            box-sizing: border-box;
            margin-top: 0px;
         
        }


   

.services-container {
    max-width: 1200px;
    width: 90%;
    margin: 100px auto;
    text-align: center; /* Centers the header title and description text */
}

/* Centers the grid items if they don't fill the maximum space */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1.5fr));
    gap: 25px;
    justify-content: center; 
}

/* Keeps card layout balanced since parent is centered */
.service-card {
    text-align: left; /* Ensures text within individual cards remains clean and legible */
    background-color: #f7f7f7;
    padding: 40px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

        /* Header Styling */
        .services-header h2 {
            font-size: 64px;
            font-weight: 800;
            color: #000000;
            margin-bottom: 18px;
            letter-spacing: -1.5px;
        }

        .services-header p {
            color: #0238A1;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 50px;
        }

        /* Services Grid Layout */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 2fr));
            gap: 20px;
        }

        /* Card Styling */
        .service-card {
            background-color: #f7f7f7;
            padding: 40px 35px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }

        /* Faint Background Bulb Icon (from sample) */
        .bg-icon {
            position: absolute;
            left: -15px;
            bottom: -15px;
            width: 100px;
            height: 100px;
            stroke: #101010;
            stroke-width: 1.2;
            fill: none;
            opacity: 0.04;
            transition: stroke 0.3s ease, opacity 0.3s ease;
            pointer-events: none;
        }

        /* Content wrapper that shifts on hover */
        .card-content-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            transform: translateX(0);
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 2;
        }

        .service-title {
            color: #101010;
            font-size: 21px;
            font-weight: 700;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        /* Right Arrow Styling */
        .arrow-icon-svg {
            width: 28px;
            height: 28px;
            fill: none;
            stroke: #999;
            stroke-width: 1.5;
            transition: stroke 0.3s ease, transform 0.3s ease;
            z-index: 2;
        }

        /* Hover State Changes (#0238A1 Theme) */
        .service-card:hover {
            background-color: #0238A1;
            box-shadow: 0 10px 30px rgba(0, 112, 240, 0.15);
        }

        .service-card:hover .card-content-wrapper {
            transform: translateX(12px);
        }

        .service-card:hover .service-title {
            color: #ffffff;
        }

        .service-card:hover .arrow-icon-svg {
            stroke: #ffffff;
            transform: translateX(5px);
        }

        .service-card:hover .bg-icon {
            stroke: #ffffff;
            opacity: 0.15;
        }

    /* ==========================================================================
   REBUILT CORPORATE MODAL STYLES
   ========================================================================== */

/* Main Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 16, 16, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Box Container */

.modal-content-rebuilt {
    background: #ffffff;
    max-width: 950px;
    width: 90%;
    max-height: 85vh;
    border-radius: 4px; 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    /* Forces all nested text and components to left-align */
    text-align: left; 
}
.modal-overlay.active .modal-content-rebuilt {
    transform: translateY(0);
    opacity: 1;
}

/* Header Banner (Matching the visual screenshot) */
.modal-header-banner {
    background-color: #0238A1; /* Brand Blue */
    padding: 35px 50px;
    width: 100%;
}

.modal-banner-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Close Button Positioned inside Header */
.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2010;
    transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Body Container */
.modal-body-container {
    padding: 40px 50px;
    overflow-y: auto;
}

/* Main Description Intro Text */
.modal-description {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 0;
}

/* Horizontal Rule Styling */
.modal-divider {
    border: 0;
    height: 1px;
    background-color: #eeeeee;
    margin-bottom: 30px;
}

/* Two-column Layout */
.modal-columns-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Slightly wider column for Features */
    gap: 50px;
}

/* Fallback class applied dynamically via JS if "Ideal For" is empty */
.modal-columns-grid.no-ideal {
    grid-template-columns: 1fr;
}

/* Column Headings */
.modal-column-heading {
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: -1.2px;
    color: #0238A1;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Custom List Styling with SVG Arrow Indicators */
.modal-list-styled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-list-styled li {
    font-size: 15px;
    color: #000000;
    margin-bottom: 14px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

/* Inline Right-angle arrow indicator matching card arrows */
.modal-list-styled li::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #000000;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-header-banner {
        padding: 30px 25px;
    }
    
    .modal-banner-title {
        font-size: 24px;
    }
    
    .modal-body-container {
        padding: 30px 25px;
    }
    
    .modal-columns-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-close {
        top: 20px;
        right: 20px;
    }
}
/* Customized Checklist Items with Rounded Square Checkboxes */
        .modal-list li {
            font-size: 15px;
            color: #000000;
            margin-bottom: 10px;
            position: relative;
            padding-left: 28px;
            line-height: 1.4;
            display: flex;
            align-items: flex-start;
        }

        /* The Rounded Square Checkbox base */
        .modal-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 2px;
            width: 16px;
            height: 16px;
            background-color: #0238A1;
            border-radius: 4px; /* Rounded square configuration */
            display: inline-block;
        }

        /* The inline white checkmark asset vector */
        .modal-list li::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 5px;
            width: 4px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        @media (max-width: 900px) {
            .services-header h2 { font-size: 48px; }
            .services-grid { grid-template-columns: 1fr; }
            .modal-content { max-height: 95vh; }
            .modal-hero { height: 220px; }
            .modal-title { font-size: 28px; }
        }

        @media (max-width: 600px) {
            .services-header h2 { font-size: 36px; }
            body { padding: 0px 0px; }
            .modal-sections-grid { grid-template-columns: 1fr; gap: 20px; }
            .modal-header-overlay { left: 20px; bottom: 20px; }
            .modal-close { right: 15px; top: 15px; }
        }
        
        
        /* --- Works Section Styles --- */
.works-section {
  padding: 0 0 6rem;
  background-color: #ffffff;
}

/* Header Area Layout */
.works-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.header-accent {
  width: 40px;
  height: 3px;
  background-color: var(--color-accent, #0052cc);
  margin-bottom: 1rem;
}

.works-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-dark, #1c2a38);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.works-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent, #0052cc);
  letter-spacing: 1.5px;
}

/* View All Outlined Button */
/* Redesigned View All Button */
.btn-view-all {
  position: relative;
  display: inline-block;
  padding: 0.7rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  
  /* Fallback color is #0a2540 if var() is not defined */
  color: var(--color-primary, #1e3a8a);
  border: 2px solid var(--color-primary, #1e3a8a);
  border-radius: 4px;
  text-decoration: none;
  background-color: transparent;
  
  /* Required for the sliding overlay */
  overflow: hidden;
  z-index: 1;
  
  /* Smooth transitions */
  transition: color 0.4s ease;
}

/* Sliding primary background overlay */
.btn-view-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-primary, #1e3a8a);
  z-index: -1;
  transition: width 0.4s ease;
}

/* Hover States */
.btn-view-all:hover {
  color: #ffffff;
}

.btn-view-all:hover::before {
  width: 100%;
}

/* Responsive Grid Layout */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; /* Matches spacing from the original visual */
}

/* Interactive Card Styles */
.work-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1; /* Standard square card ratio */
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  background-color: #f0f0f0; /* Backplate fallback */
}

.card-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Card is grayscale by default */
  filter: grayscale(100%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
              filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dark gradient overlay that is hidden by default */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Subtle dimming to ensure text readability */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overlay-content {
  text-align: center;
  transform: translateY(15px); /* Smooth slide up starting point */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 1.5rem;
}

.card-title-2 {
  color: #000000;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.card-category {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Hover State Triggers --- */
.work-card:hover .card-img {
  filter: grayscale(0%); /* Brings back rich color */
  transform: scale(1.06); /* Zooms the image slightly forward */
}

.work-card:hover .card-overlay {
  opacity: 1; /* Fades in overlay */
}

.work-card:hover .overlay-content {
  transform: translateY(0); /* Slides text up perfectly into place */
}

/* Responsive scaling rules */
@media (max-width: 992px) {
  .works-grid {
    grid-template-columns: repeat(1, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .works-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .works-grid {
    grid-template-columns: 1fr; /* 1 column on mobile phones */
  }
}

    /* Reset and Base Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: "AvantGarde Bold", Sans-serif;
      color: #333333;
      background-color: #ffffff;
      line-height: 1.6;
    }

    /* Container */
    .container {
      max-width: 1350px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    /* --- TOP ROW --- */
    .top-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 50px;
    }

    @media (min-width: 768px) {
      .top-row {
        grid-template-columns: 1.2fr 2fr;
        gap: 60px;
      }
    }

    .left-col {
      display: flex;
      flex-direction: column;
    }

    .top-line {
      width: 40px;
      height: 2px;
      background-color: #0b2265;
      margin-bottom: 25px;
    }

    .left-col h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #111111;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .sub-headline {
      font-size: 0.85rem;
      font-weight: 700;
      color: #0b2265;
      letter-spacing: 0.5px;
    }

    .right-col p {
      font-size: 1.05rem;
      color: #555555;
      margin-bottom: 24px;
    }

    .right-col p strong {
      color: #111111;
    }

    /* --- MIDDLE ROW (IMAGE GRID) --- */
    .image-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 60px;
    }

    @media (min-width: 768px) {
      .image-grid {
        grid-template-columns: 2fr 1fr;
        height: 500px; /* Fixed height for the grid on desktop */
      }
    }

    /* Card Styling */
    .card {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 300px; /* Default mobile height */
    }

    @media (min-width: 768px) {
      .card-large {
        height: 100%;
      }
    }

    .grid-side {
      display: flex;
      flex-direction: column;
      gap: 20px;
      height: 100%;
    }

    .grid-side .card {
      height: 240px; /* Default mobile height for side cards */
    }

    @media (min-width: 768px) {
      .grid-side .card {
        height: calc(50% - 10px); /* Perfectly split vertical space minus the gap */
      }
    }

    /* Images */
    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.1);
      transition: filter 0.4s ease, transform 0.4s ease;
    }

    /* Card Hover Effect */
    .card:hover img {
      transform: scale(1.03);
      filter: grayscale(30%) contrast(1.05); /* Softly brings back some color on hover */
    }

    /* Text Overlay */
    .card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      color: #ffffff;
    }

    .card-overlay h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .card-overlay p {
      font-size: 0.9rem;
      opacity: 0.85;
    }

    /* --- BOTTOM ROW (THREE COLUMNS) --- */
    .bottom-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 90px;
    }

    @media (min-width: 768px) {
      .bottom-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 90px;
      }
    }

    .info-col h2 {
      font-size: 1.35rem;
      font-weight: 700;
      color: #111111;
      margin-bottom: 16px;
    }

    .info-col p {
      font-size: 1.0rem;
      color: #666666;
      line-height: 1.6;
      text-align: justify;
    }
    
    
    
    
    
    
    
    
    
       /* Reset and Base Styles */
 

    /* Container */
    .testimonial-container {
      max-width: 1350px;
      margin: 0 auto;
      padding: 0 20px 100px;
    }

    /* --- SECTION HEADER --- */
    .section-header {
      margin-bottom: 60px;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .top-line {
      width: 40px;
      height: 2px;
      background-color: #0b2265;
      margin-bottom: 20px;
    }

    .section-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #111111;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
      line-height: 1.2;
    }

    .sub-headline {
      font-size: 0.85rem;
      font-weight: 700;
      color: #0b2265;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      display: inline-block;
    }

    /* --- TESTIMONIAL GRID (3 CARDS) --- */
    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px 40px;
    }

    @media (min-width: 992px) {
      .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
      }
    }

    /* Individual Testimonial Card */
    .testimonial-card {
      display: flex;
      flex-direction: column;
      background: #ffffff;
      padding: 15px;
      border-radius: 8px;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                  box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      
      /* Load-in animation */
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    /* Staggered Load-in Delays for Cards */
    .testimonial-card:nth-child(1) { animation-delay: 0.2s; }
    .testimonial-card:nth-child(2) { animation-delay: 0.4s; }
    .testimonial-card:nth-child(3) { animation-delay: 0.6s; }

    /* Card Hover State */
    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    /* Image Wrapper with Blue Accent Box */
    .image-wrapper {
      position: relative;
      width: calc(100% - 15px); /* Space for the offset blue background */
      margin-bottom: 30px;
      overflow: visible;
    }

    /* The Blue Accent Block */
    .image-wrapper::before {
      content: "";
      position: absolute;
      bottom: -15px;
      right: -15px;
      width: 60px;
      height: 80px;
      background-color: #0b2265;
      z-index: 1;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                  background-color 0.4s ease;
    }

    /* Shift the Blue Accent on Hover */
    .testimonial-card:hover .image-wrapper::before {
      transform: translate(8px, 8px);
      background-color: #123499;
    }

    /* Image Cropper Container to handle zoom safely */
    .image-cropper {
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
      z-index: 2;
    }

    .testimonial-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.1);
      display: block;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                  filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Image Hover: Zoom + Soft Color Reveal */
    .testimonial-card:hover img {
      transform: scale(1.05);
      filter: grayscale(30%) contrast(1);
    }

    /* Content Styling */
    .card-content {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      padding: 10px 5px 0 5px;
    }

    .quote-text {
      font-size: 1rem;
      color: #666666;
      margin-bottom: 30px;
      line-height: 1.7;
      flex-grow: 1; /* Pushes the author block to the bottom */
    }

    .divider-line {
      width: 25px;
      height: 1px;
      background-color: #e0e0e0;
      margin-bottom: 20px;
    }

    .author-info {
      font-size: 0.8rem;
      font-weight: 700;
      color: #111111;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* KEYFRAMES */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    
    
    
    
    
    
    
        /* Container */
    .partners-section {
      max-width: 1350px;
      margin: 0 auto;
      padding: 80px 20px;
    }

    /* Section Title */
    .partners-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .partners-header h3 {
      font-size: 0.85rem;
      font-weight: 700;
      color: #0b2265;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .partners-header .decorator-line {
      width: 40px;
      height: 2px;
      background-color: #0b2265;
      margin: 0 auto;
    }

    /* Grid Layout: Responsive columns (2 -> 3 -> 6) */
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      align-items: center;
      justify-items: center;
    }

    @media (min-width: 768px) {
      .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
      }
    }

    @media (min-width: 992px) {
      .partners-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
      }
    }

    /* Individual Logo Item */
    .partner-item {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100px;
      padding: 15px;
      background-color: #fcfcfc;
      border: 1px solid #f0f0f0;
      border-radius: 6px;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Logo Image Base Style (Grayscale and slightly faded) */
    .partner-item img {
      max-width: 80%;
      max-height: 50px;
      width: auto;
      height: auto;
      object-fit: contain;
      opacity: 0.5;
      filter: grayscale(100%);
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Interactive Hover State */
    .partner-item:hover {
      background-color: #ffffff;
      border-color: #e0e0e0;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      transform: translateY(-5px);
    }

    .partner-item:hover img {
      opacity: 1;
      filter: grayscale(0%); /* Brings back original logo colors smoothly */
      transform: scale(1.05);
    }
    
    
     /* Reset and Base Styles */
  

    /* Container */
    .news-section {
      max-width: 1350px;
      margin: 0 auto;
      padding: 80px 20px;
    }

    /* --- SECTION HEADER --- */
    .news-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .news-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #111111;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
    }

    .news-header p {
      font-size: 0.8rem;
      font-weight: 700;
      color: #0b2265;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* --- SLIDER WRAPPER --- */
    .slider-container {
      position: relative;
      width: 100%;
      overflow: hidden; /* Clips the cards outside the viewport */
      margin-bottom: 40px;
      cursor: grab;
    }

    .slider-container:active {
      cursor: grabbing;
    }

    .slider-track {
      display: flex;
      gap: 12px; /* Gap between cards */
      transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform;
    }

    /* --- BLOG CARD --- */
    .news-card {
      position: relative;
      height: 480px;
      flex-shrink: 0; /* Prevents cards from crushing/shrinking */
      
      /* Card Width Calculations */
      width: 100%; /* Mobile default: 1 card visible */
      
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    @media (min-width: 600px) {
      .news-card {
        /* Tablet: 2 cards visible (accounting for 1 gap of 12px) */
        width: calc((100% - 12px) / 2); 
      }
    }

    @media (min-width: 992px) {
      .news-card {
        /* Desktop: 3 cards visible (accounting for 2 gaps of 12px) */
        width: calc((100% - 24px) / 3); 
      }
    }

    /* Background Image Container */
    .card-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      filter: grayscale(100%);
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 1;
    }

    /* Elegant CSS Gradient Overlay */
    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to bottom,
        rgba(224, 224, 224, 0.4) 0%,
        rgba(150, 150, 150, 0.6) 40%,
        rgba(30, 30, 30, 0.85) 100%
      );
      z-index: 2;
    }

    /* Content Area */
    .card-content {
      position: relative;
      z-index: 3;
      padding: 40px 30px;
      text-align: center;
      width: 100%;
    }

    .card-category {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #e0e0e0;
      margin-bottom: 15px;
      display: block;
      transition: color 0.3s ease;
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.4;
      max-width: 90%;
      margin: 0 auto;
    }

    /* Hover States */
    .news-card:hover .card-bg {
      transform: scale(1.05);
    }

    .news-card:hover .card-category {
      color: #79a1ff;
    }

    /* --- SLIDER DOTS --- */
    .carousel-indicators {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: transparent;
      border: 1.5px solid #cccccc;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active {
      background-color: #0b2265;
      border-color: #0b2265;
    }

    .dot:hover:not(.active) {
      border-color: #0b2265;
    }
  
  
  
 /* =========================================================
   1. Theme Color Variables
   ========================================================= */
:root {
  --bg-main: #ffffff;
  --bg-card: #f8fafc;
  --bg-header: rgba(255, 255, 255, 0.9);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --border-color: #e2e8f0;
  --accent-color: #0052cc;
  --shadow-color: rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] {
  --bg-main: #0b0f19;
  --bg-card: #151c2c;
  --bg-header: rgba(11, 15, 25, 0.9);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --border-color: #1e293b;
  --accent-color: #3b82f6;
  --shadow-color: rgba(0, 0, 0, 0.4);
}

/* Base transitions for seamless switching */
body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

header {

  transition: background-color 0.3s ease;
}

section, .card, article {
  ;
  color: var(--text-primary);
  border-color: var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

p, span {
  color: var(--text-secondary);
}

/* =========================================================
   2. Floating Toggle Button Styles
   ========================================================= */
.theme-toggle-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--shadow-color);
  z-index: 9999;
  transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.theme-toggle-btn:hover {
  transform: scale(1.08);
}

.theme-toggle-btn:active {
  transform: scale(0.95);
}

.theme-toggle-btn svg {
  width: 22px;
  height: 22px;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

/* Toggle icon display based on active theme */
.sun-icon { display: none; }
.moon-icon { display: block; }

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }





/* =========================================================
   DARK THEME OVERRIDES (Clean & Non-Destructive)
   ========================================================= */

/* --- 1. Base Body & Container Adjustments --- */
[data-theme="dark"] body {
  background-color: #000 !important;
  color: #e2e8f0 !important;
}

/* --- 2. Header & Navigation --- */
[data-theme="dark"] .navbar {
  background-color: #000 !important;
  border-bottom-color: #1e293b !important;
}

[data-theme="dark"] .nav-link,
[data-theme="dark"] .menu-toggle span {
  color: #f8fafc !important;
  background-color: #000; /* For hamburger toggle bars */
}

@media (max-width: 768px) {
  [data-theme="dark"] .nav-menu {
    background-color: #0f172a !important;
  }
}

/* --- 3. Hero & Main Section Headings --- */
[data-theme="dark"] .hero-title,
[data-theme="dark"] .left-col h1,
[data-theme="dark"] .services-header h2,
[data-theme="dark"] .works-title,
[data-theme="dark"] .section-header h2,
[data-theme="dark"] .news-header h2,
[data-theme="dark"] .info-col h2,
[data-theme="dark"]  {
  color: #fff !important;
}

[data-theme="dark"] .hero-subtitle,
[data-theme="dark"] .right-col p,
[data-theme="dark"] .right-col p strong,
[data-theme="dark"] .info-col p,
[data-theme="dark"] .quote-text,
[data-theme="dark"] .floating-card p {
  color: #94a3b8 !important;
}



/* Services Grid Cards */
[data-theme="dark"] .service-card {
  background-color: #151c2c !important;
}

[data-theme="dark"] .service-title {
  color: #f8fafc !important;
}

/* Testimonial Cards */
[data-theme="dark"] .testimonial-card {
  background-color: #151c2c !important;
}

[data-theme="dark"] .author-info {
  color: #3b82f6 !important;
}

/* Floating Badge */
[data-theme="dark"] .floating-card {
  background: rgba(21, 28, 44, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Partners Logos Grid */
[data-theme="dark"] .partner-item {
  background-color: #151c2c !important;
  border-color: #1e293b !important;
}

[data-theme="dark"] .partner-item img {
  opacity: 0.8 !important;
  filter: grayscale(100%) invert(0.9) !important; /* Brightens dark logos for visibility */
}

[data-theme="dark"] .partner-item:hover img {
  opacity: 1 !important;
  filter: grayscale(0%) invert(0) !important;
}

/* --- 5. Works Section Section --- */
[data-theme="dark"] .works-section,
[data-theme="dark"] .container,
[data-theme="dark"] .testimonial-container,
[data-theme="dark"] .partners-section,
[data-theme="dark"] .news-section {
  background-color: transparent !important;
}

/* Outlined Buttons */
[data-theme="dark"] .btn-view-all {
  color: #3b82f6 !important;
  border-color: #3b82f6 !important;
}

/* --- 6. Form Overlay Modal --- */
[data-theme="dark"] .modal-content-rebuilt {
  background-color: #0f172a !important;
}

[data-theme="dark"] .modal-description,
[data-theme="dark"] .modal-list-styled li,
[data-theme="dark"] .modal-list-styled li::before {
  color: #e2e8f0 !important;
}

[data-theme="dark"] .modal-divider {
  background-color: #1e293b !important;
}