* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f4f6fb;
  color: #1e1e1e;
}

/* TOP BAR */
.top-bar {
  background: #111827;
  color: white;
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.contact-right a {
  color: #fff;
  margin-left: 15px;
  font-size: 16px;
  transition: 0.3s;
}

/* HEADER */
/* --- HEADER STYLES --- */

/* --- Desktop Styles (Your Original Look) --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img { height: 45px; width: auto; }

.brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0056D2;
  letter-spacing: -0.5px;
  line-height: 1;
}
.brand-text span { color: #FF7F00; }

.nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-link {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  position: relative;
  transition: color 0.3s;
}

/* Underline Effect */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #FF7F00;
  transition: width 0.3s ease;
}

.nav-link:hover { color: #0056D2; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #0056D2; font-weight: 600; }
.nav-link.active::after { width: 100%; }

.hamburger {
  display: none; /* Hidden on Desktop */
  font-size: 1.5rem;
  color: #1e3a8a;
  cursor: pointer;
}

/* --- Mobile Styles (The Fix) --- */
@media (max-width: 900px) {
  .header { padding: 15px 20px; }
  
  .hamburger { display: block; z-index: 2000; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 0;
    max-height: 0; /* Closed by default */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  /* The 'active' class opens the menu */
  .nav.active {
    max-height: 500px; /* Big enough to fit links + button */
    padding: 20px 0;
  }

  .nav-link {
    margin: 15px 0;
    display: block;
    text-align: center;
    width: 100%;
  }

  /* Center the underline on mobile */
  .nav-link::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* Hamburger (Hidden on Desktop) */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #1e3a8a;
  cursor: pointer;
  z-index: 2000;
}

/* --- MOBILE RESPONSIVE STYLES --- */
@media (max-width: 900px) {
  .header { padding: 15px 20px; }
  
  .hamburger { display: block; }

  /* Mobile Menu */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 0;
  }

  /* Open State */
  .nav.open {
    max-height: 450px; /* Expands to show links */
    padding: 20px 0;
  }

  .nav-link {
    margin: 15px 0;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }

  /* Center the underline on mobile */
  .nav-link::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .btn-primary {
    margin: 15px auto;
    width: 80%;
    text-align: center;
    display: block;
  }
  .btn-primary-secondary {
    margin: 15px auto;
    width: 80%;
    text-align: center;
    display: block;
  }
}
/* --- Buttons --- */
.btn-primary {
  background: linear-gradient(135deg, #0056D2, #2563eb);
  /* Updated gradient */
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
  /* Soft shadow */
  transition: transform 0.2s;
}
.btn-primary-secondary{
  background: white;
  /* Updated gradient */
  color: linear-gradient(135deg, #0056D2, #2563eb);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
  /* Soft shadow */
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  /* Subtle lift effect */
}
.btn-primary-secondary:hover {
  transform: translateY(-2px);
  /* Subtle lift effect */
}

/* Default State */
.btn-outline {
  border: 2px solid white;
  /* White border to show against blue bg */
  color: white;
  /* White text */
  background: transparent;
  /* See-through background */
  padding: 10px 30px;
  /* Matches your primary button size */
  border-radius: 30px;
  /* Pill shape */
  text-decoration: none;
  /* Removes underline */
  font-weight: 600;
  transition: all 0.3s ease;
  /* smooth animation */
}

/* Hover State */
.btn-outline:hover {
  background-color: white;
  /* Fills with white */
  color: #1e3a8a;
  /* Text turns blue (your brand color) */
  transform: translateY(-2px);
  /* Slight lift effect */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  /* Soft shadow */
}

/* HERO */

/* Section Layout */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 8%;
  /* Uses % so it looks good on all screens */
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  min-height: 80vh;
  /* Ensures it takes up most of the screen */
}

/* Typography Enhancements */
.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  /* Slightly larger for impact */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  opacity: 0.9;
  /* Softens the text slightly */
  line-height: 1.6;
}

/* Button Spacing */
.hero-buttons {
  display: flex;
  gap: 15px;
  /* Adds space between buttons */
  justify-content: center;
  /* Centers items horizontally */
}

/* The Enhanced Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  /* More transparent */
  backdrop-filter: blur(15px);
  /* Stronger blur for modern look */
  -webkit-backdrop-filter: blur(15px);
  /* Safari support */
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Subtle border adds "glass" edge */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  /* Soft shadow for depth */
  max-width: 400px;
}

.glass-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.glass-card p {
  margin-bottom: 0;
  font-size: 1rem;
  opacity: 0.8;
}

/* Mobile Responsiveness (Crucial for it to not break) */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    /* Stack top to bottom */
    text-align: center;
    padding: 60px 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 50px;
  }
}

/* SECTIONS */
section {
  padding: 80px 60px;
  text-align: center;
}

h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #1e3a8a;
}

/* ABOUT */

/* --- Modern About Section Styles --- */

/* 1. Base Colors & Typography */
.about-section-modern {
  background-color: #fff;
  overflow-x: hidden;
  /* Prevents scrollbars from floating elements */
}

.text-highlight {
  color: #1e3a8a;
  /* Your Brand Color */
  position: relative;
  display: inline-block;
}

/* Adds a small underline to the highlighted text */
.text-highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: 5px;
  left: 0;
  background-color: rgba(30, 58, 138, 0.1);
  /* Light blue highlight */
  z-index: -1;
}

/* 2. Custom Icon Box */
.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(30, 58, 138, 0.1);
  /* Light Blue Background */
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* 3. The Layered Image Composition (The "Modern" Part) */
.image-composition {
  position: relative;
  padding-left: 50px;
  /* Space for the floating image */
  padding-bottom: 50px;
}

/* The Main Large Image */
.img-1 {
  width: 85%;
  /* Not full width to allow space for overlaps */
  margin-left: auto;
}

/* The Overlapping Small Image */
.img-2 {
  position: absolute;
  width: 50%;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* The Floating Badge */
.experience-badge-floating {
  position: absolute;
  top: 10%;
  right: 0;
  /* Hanging off the right edge */
  z-index: 3;
  transform: translateX(30%);
  /* Pushes it slightly outside the container */
  background: #1e3a8a !important;
  /* Force your brand color */
}

/* 4. Decorative Dots (Optional) */
.dots-pattern {
  position: absolute;
  top: -20px;
  right: 10%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#1e3a8a 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.2;
  z-index: 0;
}

/* 5. Mobile Responsiveness */
@media (max-width: 991px) {
  .image-composition {
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
    /* Add space below images on mobile */
  }

  .img-1 {
    width: 100%;
  }

  .img-2 {
    display: none;
    /* Hide the second image on mobile to keep it clean */
  }

  .experience-badge-floating {
    top: auto;
    bottom: -20px;
    right: 20px;
    transform: none;
  }
}

/* SERVICES */
/* --- Services Section Styling --- */
.services-section {
  padding: 100px 20px;
  background-color: #ffffff;
}
/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  /* Slightly wider cards */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Card Design */
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  /* Soft, diffuse shadow */
  border: 1px solid #f1f5f9;
  /* Very subtle border */
  border-top: 4px solid transparent;
  /* Hidden top border for hover effect */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  /* Aligns content to left for modern look */
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-10px);
  /* Lifts up */
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.1);
  /* Blue-tinted shadow */
  border-top-color: #3b82f6;
  /* Blue line appears on top */
}

/* Icon Styling */
.icon-box {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  /* Light blue background */
  color: #3b82f6;
  /* Blue Icon */
  border-radius: 12px;
  /* Rounded square */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: background 0.3s, color 0.3s;
}

.service-card:hover .icon-box {
  background: #3b82f6;
  /* Fills blue on hover */
  color: white;
  /* Icon turns white */
}

/* Text Styling */
.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* "Learn More" Link */
.service-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-card:hover .service-link {
  gap: 15px;
  /* Arrow moves forward on hover */
}

/* --- PROJECTS SECTION GLOBAL --- */
.projects-section {
  padding: 80px 0;
  background: #fff;
}

.sub-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}
.text-blue { color: #1e3a8a !important; }
.text-orange { color: #FF7F00 !important; }

/* Common Card Styling */
.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: #e2e8f0;
}

.card-body {
  padding: 20px;
}

.category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.project-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.project-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- WEB PROJECT GRID --- */
/* Creates a grid that fits 3 items horizontally on desktop */
.project-grid-web {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Small Browser Mockup Frame */
.browser-mockup-small {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.browser-header {
  background: #f8fafc;
  padding: 8px 15px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid #e2e8f0;
}

.dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.browser-screen {
  width: 100%;
  /* Enforces 16:9 aspect ratio for laptop view */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
}

.browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .browser-screen img {
  transform: scale(1.05); /* Subtle zoom effect on hover */
}

/* --- MOBILE PROJECT GRID --- */
/* Creates a grid that fits 4 items horizontally on desktop */
.project-grid-mobile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Mobile layout specific tweaks */
.mobile-card-layout {
  padding-top: 25px;
  background: #f8fafc; /* Slightly different bg for mobile cards */
}

/* Small Phone Mockup Frame */
.phone-mockup-small {
  width: 140px; /* Fixed small width */
  margin: 0 auto;
  border: 6px solid #333; /* Phone bezel */
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.phone-screen {
  width: 100%;
  /* Enforces 9:16 aspect ratio for phone view */
  aspect-ratio: 9 / 16;
  background: white;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .project-grid-web, .project-grid-mobile {
    /* On mobile, cards will stack automatically due to auto-fit */
    gap: 20px;
  }
  .sub-header {
    text-align: center;
  }
}

/* --- Why Choose Us Section --- */
.why-us-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
  /* Light gray background to separate from other sections */
  text-align: center;
}

/* Header Styling */
.badge-blue {
  background: rgba(30, 58, 138, 0.1);
  /* Light blue bg */
  color: #1e3a8a;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.section-header p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* Grid Layout (Auto-Responsive) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Creates 4 columns, auto-stacks on mobile */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Card Styling */
.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Very subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  /* Prepare for hover border */
}

/* Hover Effect: Lift Up */
.feature-card:hover {
  transform: translateY(-10px);
  /* Moves up */
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  /* Stronger shadow */
  border-color: rgba(30, 58, 138, 0.1);
}

/* Icon Styling */
.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px auto;
  /* Centers the icon */
  transition: transform 0.3s;
}

.feature-card:hover .icon-wrapper {
  transform: rotateY(180deg);
  /* Fun spin effect on hover */
}

/* Text inside cards */
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* TESTIMONIAL */

/* --- Testimonial Section --- */
.testimonial-marquee {
  background: #1e3a8a;
  /* Your Brand Blue */
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

/* Badge Style (Matches Why Us) */
.badge-blue-light {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-marquee h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
}

/* --- Marquee Container --- */
.marquee-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  /* Adds a fade effect on sides */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  gap: 30px;
  /* Space between cards */
  animation: scroll 25s linear infinite;
  /* Smooth continuous scroll */
  padding-left: 30px;
  /* Initial offset */
}

/* Pause animation when user hovers to read */
.marquee-content:hover {
  animation-play-state: paused;
}

/* --- The Premium Review Card --- */
.review-card {
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 20px;
  /* Matches Service/WhyUs Cards */
  width: 350px;
  /* Fixed width for consistent look */
  flex-shrink: 0;
  /* Prevents squishing */
  white-space: normal;
  /* Allows text to wrap normally inside card */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  /* Gentle lift effect */
}

/* Star Ratings */
.stars {
  color: #f59e0b;
  /* Amber/Gold color */
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* Review Text */
.review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

/* Client Info at Bottom */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.client-icon {
  width: 45px;
  height: 45px;
  background: #eff6ff;
  color: #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.client-info h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a8a;
}

.client-info small {
  color: #888;
  font-size: 0.85rem;
}

/* The Animation Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Assumes 2 sets of identical cards */
}

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  /* Deep Blue to Navy */
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  /* Light gray text */
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Secondary Button (Outline Light) */
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background: white;
  color: #0f172a;
  border-color: white;
}

/* Conatct Section */

/* --- Compact Contact Section --- */
.contact-compact {
  padding: 60px 0; /* Much smaller than the usual 100px */
  background-color: #f8f9fa;
  border-top: 1px solid #e2e8f0;
}

/* Header Styling */
.section-title {
  font-size: 1.8rem; /* Smaller headline */
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 5px;
}

/* Horizontal Info Bar */
.contact-info-bar {
  display: flex;
  justify-content: flex-end; /* Pushes info to the right */
  gap: 15px;
  flex-wrap: wrap;
}

/* Icon Colors */
.text-orange { color: #FF7F00; }
.text-blue { color: #1e3a8a; }

/* Form Container */
.form-container-compact {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Compact Inputs */
.compact-input {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.compact-input:focus {
  background: white;
  border-color: #1e3a8a;
  box-shadow: none;
}

/* The "Message Group" Layout */
.message-group {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.message-group textarea {
  flex-grow: 1; /* Takes up all available space */
  resize: none; /* Prevents dragging to resize */
}

/* The Compact Button */
.btn-compact-submit {
  background: #FF7F00; /* Logo Orange */
  color: white;
  border: none;
  padding: 0 30px;
  height: 50px; /* Matches the height of the textarea approx */
  border-radius: 8px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s;
}

.btn-compact-submit:hover {
  background: #e66e00; /* Darker Orange */
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .contact-info-bar {
    justify-content: flex-start; /* Align left on mobile */
    margin-top: 20px;
  }
  
  .message-group {
    flex-direction: column; /* Stack button below text area on mobile */
  }
  
  .btn-compact-submit {
    width: 100%; /* Full width button on mobile */
  }
}


/* --- FOOTER SECTION --- */
.footer-section {
  background-color: #0b1120;
  /* Very dark blue/black */
  color: #94a3b8;
  /* Muted text color for readability */
  padding: 70px 0 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  /* 4 Columns layout */
  gap: 40px;
  margin-bottom: 50px;
  max-width: 1200px;
  /* Limits width on big screens */
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* Footer Column Styling */
.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #3b82f6;
  /* Brand Blue */
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Links List */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover {
  color: #3b82f6;
  /* Blue on hover */
  padding-left: 5px;
  /* Slight slide effect */
}

/* Contact Icons */
.contact-col i {
  margin-right: 10px;
  color: #3b82f6;
  width: 20px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

/* Footer Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 columns on tablet */
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
    text-align: center;
  }

  .social-links {
    justify-content: center;
    /* Center icons on mobile */
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline-light {
    margin-left: 0 !important;
    /* Remove left margin on mobile */
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .header {
    padding: 15px 20px;
  }

  section {
    padding: 60px 20px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-left {
    display: none;
  }

  .container {
    justify-content: center;
  }
}