/* Color Palette */
:root {
  --primary-blue: #003366; /* Match the logo blue */
  --hover-blue: #002244;
  --light-bg: #f5f7fa;
  --text-dark: #222;
  --text-gray: #666;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(
    135deg,
    #f5f7fa 0%,
    #eef2f5 100%
  ); /* Subtle aesthetic gradient */
  color: var(--text-dark);
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

/* Classic Page Transitions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animations slightly for flow */
.about-hero-ref {
  animation-delay: 0.1s;
}
.priority-section-modern {
  animation-delay: 0.3s;
}
.feature-rows-section {
  animation-delay: 0.5s;
}
.why-choose-section {
  animation-delay: 0.7s;
}
.cta-banner {
  animation-delay: 0.9s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo-box {
  color: var(--primary-blue);
  font-weight: 900;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 4px;
}
.nav-links .active {
  border-bottom: 2px solid var(--primary-blue);
}
.nav-links .btn-nav {
  background: var(--primary-blue);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.btn-nav:hover {
  background: var(--hover-blue);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 1px;
  transition: 0.3s;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
  background: url("images/hero_banner.png");
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  color: var(--primary-blue);
  position: relative;
  text-align: left; /* Ensure left alignment */
}
.hero-container {
  max-width: 900px;
  margin-left: 0; /* Align to the left edge of container */
  padding-left: 20px; /* Slight offset as requested */
}
.hero-tagline {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.hero-text {
  margin-left: 200px; /* Increased margin for better alignment */
  max-width: 700px;
}
.hero-text h1 {
  font-size: 60px; /* Slightly larger */
  color: var(--primary-blue);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5); /* Subtle readability boost */
}

.hero-text p {
  font-size: 20px;
  color: #003366;
  margin-bottom: 40px;
  max-width: 650px;
  font-weight: 500;
  line-height: 1.6;
}

/* Animations */
.hero-text,
.feature-bar,
.about-content,
.services-grid,
.testimonial-slider,
.contact-container {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0; /* Start hidden for animation */
  transform: translateY(30px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay animations for staggering effect */
.feature-bar {
  animation-delay: 0.3s;
}
.about-content {
  animation-delay: 0.5s;
}
.services-grid {
  animation-delay: 0.2s;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}
.btn-blue {
  background: var(--primary-blue);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}
.btn-blue:hover {
  background: var(--hover-blue);
}
.btn-white {
  background: #fff;
  color: var(--primary-blue);
  border: 1px solid #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
}
/* Removed hero-visual since it's background now */

/* Feature Bar */
.feature-bar-wrapper {
  margin-top: -70px; /* Increased overlap */
  position: relative;
  z-index: 10;
  padding: 0 10px; /* Safety padding for small screens */
}
.feature-bar {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 35px 40px;
  border-bottom: 4px solid var(--primary-blue); /* Accent line */
  transition: transform 0.3s ease;
}
.feature-bar:hover {
  transform: translateY(-5px);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid #eee;
  padding: 0 25px;
}
.feature-item:last-child {
  border: none;
}
.feature-item i {
  font-size: 24px;
  color: var(--primary-blue);
  width: 60px;
  height: 60px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.feature-item:hover i {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}
.f-text h4 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 4px;
  font-weight: 700;
}
.f-text p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.4;
}

/* About Section */
.about-section {
  padding: 100px 20px; /* Match container padding */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sub-heading {
  color: var(--primary-blue);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 15px; /* Increased margin to account for underline offset */
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 8px; /* Proper alignment below text */
  text-decoration-thickness: 2px;
}
.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}
.about-img img {
  width: 100%;
  border-radius: 5px;
}
.btn-blue-small {
  background: var(--primary-blue);
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* Services Section */
.services-section {
  background: url("images/procat-bag.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
}
.section-title {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary-blue);
  margin: 10px auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.service-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e4e7f0;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-label {
  padding: 15px;
  font-weight: bold;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #fff;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-left h2 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 36px;
}
.contact-details {
  margin-top: 30px;
}
.c-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #444;
}
.c-item i {
  color: var(--primary-blue);
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 51, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-right {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}
.contact-form h3 {
  margin-bottom: 20px;
  color: var(--primary-blue);
}
.form-group {
  margin-bottom: 15px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
}
.form-group textarea {
  height: 120px;
  resize: none;
}
.btn-submit {
  background: var(--primary-blue);
  color: #fff;
  border: none;
  padding: 15px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}
.btn-submit:hover {
  background: var(--hover-blue);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
  overflow: hidden;
}
.testimonial-slider {
  overflow: hidden;
  width: 100%;
  padding: 10px 0; /* Space for shadow */
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  flex: 0 0 100%;
  min-width: 100%;
  /* Mobile: 1 per view, no gap needed if 100% */
}
.testimonial-card .stars {
  color: #f39c12;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial-card h4 {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 15px;
}

/* Partners Section */
.partners-section {
  padding: 60px 0;
  background-color: #f2f6fa; /* Light blue/gray to differentiate from contact section */
  /* background: url("images/client-bag.jpg"); */ /* Removed image to ensure distinct color separation */
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid #e1e8ed; /* Subtle border for extra separation */
}
.partners-slider {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.partners-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.client-item {
  display: inline-block;
  margin: 0 40px;
  vertical-align: middle;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.client-item img {
  max-height: 60px;
  max-width: 150px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}
.client-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Stats Bar */
.stats-bar-wrapper {
  background: var(--primary-blue);
  color: #fff;
  padding: 40px 0;
}
.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat-item i {
  font-size: 40px;
  opacity: 0.8;
}
.stat-item h3 {
  font-size: 32px;
  line-height: 1;
}
.stat-item p {
  font-size: 14px;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: #001a33;
  color: #b3c2d1;
  padding-top: 80px;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: #b3c2d1;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}
.white-logo {
  color: #fff;
  margin-bottom: 20px;
}
.f-socials a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  transition: 0.3s;
}
.f-socials a:hover {
  color: var(--primary-blue);
}
.footer-bottom {
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
}

/* =========================================
   NEW STYLES FOR SERVICES & ABOUT PAGES
   ========================================= */

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border: none;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: slideDown 0.3s ease-out;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #9ca3af;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f4f6;
}

.close-modal:hover {
  color: #111;
  background: #e5e7eb;
}

.modal h2 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-size: 24px;
  padding-right: 30px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animations for all pages */
.about-hero-container,
.priority-section,
.priority-section-modern,
.feature-row,
.why-choose-section,
.page-header,
.services-page-grid,
.cta-banner,
.contact-page-grid {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.feature-row:nth-child(even) {
  animation-delay: 0.2s;
}

/* Updated Page Header to match Hero */
.page-header {
  background: url("images/hero_banner.png");
  background-size: cover;
  background-position: center;
  padding: 140px 0; /* Match Hero padding */
  text-align: left;
  position: relative;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 48px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.page-header p {
  font-size: 20px;
  color: #003366;
  font-weight: 500;
  max-width: 650px;
}

/* Match Hero indentation on desktop */
@media (min-width: 992px) {
  .page-header h1,
  .page-header p {
    margin-left: 200px;
  }
}

/* Brochure Button */
.nav-links .btn-brochure {
  background: transparent !important;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links .btn-brochure:hover {
  background: var(--primary-blue) !important;
  color: #fff !important;
}

/* Single line CTA buttons on Services Page */
.cta-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 769px) {
  .cta-buttons {
    flex-wrap: nowrap;
  }
}

/* Services Page Grid */
.services-page-section {
  padding: 60px 0;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-page-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
  transition: 0.3s;
}
.service-page-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.sp-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #e6eaf0; /* Light blue tint */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 28px;
}
.sp-content {
  flex-grow: 1;
}
.sp-content h3 {
  color: var(--primary-blue);
  font-size: 20px;
  margin-bottom: 15px;
}
.sp-content ul {
  list-style: none;
  margin-bottom: 20px;
}
.sp-content ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
  color: var(--text-gray);
  font-size: 14px;
}
.sp-content ul li::before {
  content: "•";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
  font-weight: bold;
}
.btn-learn-more {
  display: inline-block;
  background: var(--primary-blue);
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.btn-learn-more:hover {
  background: var(--hover-blue);
}

/* CTA Banner */
.cta-banner {
  padding: 60px 0;
  background: #f0f4f8; /* Very light blue/gray */
}
.cta-banner.gray-bg {
  background: #eef2f5;
}
.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-content h3 {
  font-size: 22px;
  color: var(--primary-blue);
}
.cta-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.btn-whatsapp:hover {
  background: #128c7e;
}

/* Stylish CTA Services Section */
.cta-banner.cta-services {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
  padding: 50px 0;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
  position: relative;
  overflow: hidden;
}

/* Add a subtle pattern overlay */
.cta-banner.cta-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-banner.cta-services .cta-content {
  justify-content: center; /* Center aligned */
  flex-direction: column; /* Stack initially or on small screens? User said single line */
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Desktop layout for single line */
@media (min-width: 992px) {
  .cta-banner.cta-services .cta-content {
    flex-direction: row; /* Single line */
    text-align: left;
    gap: 50px;
  }

  .cta-banner.cta-services .cta-content h3 {
    margin-bottom: 0;
  }
}

.cta-banner.cta-services .cta-content h3 {
  color: #fff; /* White text for contrast */
  font-size: 24px;
  font-weight: 600;
}

.cta-banner.cta-services .cta-content h3 span {
  color: rgba(255, 255, 255, 0.9);
  display: inline-block; /* Ensure it flows nicely */
  margin-left: 10px;
}

/* Button modifications for dark background */
.cta-banner.cta-services .btn-blue {
  background: #fff;
  color: var(--primary-blue);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap; /* Ensure text stays on single line */
}

.cta-banner.cta-services .btn-blue:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-banner.cta-services .btn-whatsapp {
  background: rgba(37, 211, 102, 0.2); /* Transparent glass effect */
  border: 1px solid #25d366;
  backdrop-filter: blur(5px);
  white-space: nowrap; /* Ensure text stays on single line */
}

.cta-banner.cta-services .btn-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

/* About Page Ref Styles */
.about-hero-ref {
  padding: 100px 0;
  background: url("images/hero_banner.png"); /* Keeping consistent background as requested initially but styled like reference */
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ah-text .sub-heading-hero {
  color: var(--primary-blue);
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.ah-text h1 {
  font-size: 48px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ah-text p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
  max-width: 500px;
}

.ah-image-collage img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 5px solid rgba(255, 255, 255, 0.5);
}

/* Priority Section Modern */
.priority-section-modern {
  padding: 100px 0 60px 0;
  text-align: center;
  background: #fff;
  position: relative;
}

.priority-section-modern .container {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0; /* Start hidden for animation */
  animation-delay: 0.3s; /* Slight delay */
}

/* =========================================
   CCTV AMC Page Styles
   ========================================= */

/* Hero Section */
.amc-hero {
  padding: 140px 0 100px; /* Matched top padding to index hero */
  background: url("images/hero_banner.png"); /* Same background as index page */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: visible; /* Allow stats bar to overlap */
}

.amc-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.amc-hero-text h1 {
  font-size: 54px; /* Increased to match index page closer */
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5); /* Added text shadow like index */
}

.amc-hero-text p {
  font-size: 20px; /* Increased to match index page */
  color: #003366; /* Matched color to index page */
  margin-bottom: 30px;
  max-width: 550px;
  font-weight: 500;
  line-height: 1.6;
}

.amc-hero-buttons {
  display: flex;
  gap: 15px;
}

.amc-hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */ /* Optional shadow */
}

/* Stats Bar */
.amc-stats-bar {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  margin-top: -60px; /* Overlap hero */
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.amc-stat {
  flex: 1;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid #eee;
}

.amc-stat:last-child {
  border-right: none;
}

.amc-stat.highlighted {
  background: #fff0f0; /* Light red/pink tint to match reference */
  justify-content: center;
}

.amc-stat i {
  font-size: 32px;
  color: var(--primary-blue);
}

.amc-stat h3 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.amc-stat p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.amc-stat p span {
  display: block;
  font-size: 12px;
  color: #888;
}

/* What's Included */
.amc-included {
  padding: 80px 0; /* Reduced spacing */
  background-color: #f9fbfc;
  position: relative;
  z-index: 5;
}

.amc-inspection-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

.amc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; /* Increased gap */
  margin-top: 70px;
}

.amc-feature-card {
  background: #fff;
  padding: 60px 40px; /* Larger padding for clean look */
  border-radius: 15px; /* Softer corners */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); /* Soft large shadow */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.amc-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px; /* Thicker accent line */
  background: linear-gradient(90deg, var(--primary-blue), #0056b3);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.amc-feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.amc-feature-card:hover::before {
  transform: scaleX(1);
}

.amc-feature-card .icon-box {
  width: 90px;
  height: 90px;
  background: #eef6ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  color: var(--primary-blue);
  font-size: 36px;
  transition: all 0.4s ease;
}

.amc-feature-card:hover .icon-box {
  background: var(--primary-blue);
  color: #fff;
  transform: rotateY(360deg) scale(1.1);
}

.amc-feature-card h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}

.amc-feature-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Why Choose Us */
.amc-why-choose {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Decorative background element */
.amc-why-choose::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 51, 102, 0.05) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.amc-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center; /* Center vertically */
  position: relative;
  z-index: 1;
}

.amc-why-text h2 {
  font-size: 42px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.amc-why-text .sub-text {
  font-size: 20px;
  color: #666;
  margin-bottom: 50px;
  font-weight: 500;
}

.amc-checklist {
  list-style: none;
  padding: 0;
}

.amc-checklist li {
  background: transparent; /* Clean look without box per item */
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
  border-left: none;
}

.amc-checklist li:hover {
  transform: translateX(10px);
  border-left: none;
  box-shadow: none;
}

.amc-checklist .check-icon {
  min-width: 50px;
  height: 50px;
  background: transparent;
  color: var(--primary-blue);
  border-radius: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 28px;
  margin-top: 0;
}

.amc-checklist h4 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.amc-checklist p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Form Styles Refined */
.amc-form-wrapper {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.simple-quote-form .form-group {
  margin-bottom: 25px;
}

.simple-quote-form input,
.simple-quote-form textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #e0e0e0;
  background: #fcfcfc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.simple-quote-form input:focus,
.simple-quote-form textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.1);
  outline: none;
  background: #fff;
}

.simple-quote-form .btn-blue.full-width {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 10px;
}

/* Scroll Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}

.amc-checklist h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.amc-checklist p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Quote Form Card */
.amc-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.simple-quote-form .form-group {
  margin-bottom: 20px;
}

.simple-quote-form input,
.simple-quote-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #eee;
  background: #f9f9f9;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
}

.simple-quote-form .btn-blue.full-width {
  width: 100%;
  justify-content: center;
  padding: 15px;
}

.form-footer {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.form-footer p {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.form-footer i {
  color: var(--primary-blue);
  margin-right: 5px;
}

/* Sectors We Serve */
.amc-sectors {
  background: #f4f8fb;
  padding: 100px 0;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.sector-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.sector-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--primary-blue);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sector-icon {
  font-size: 40px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  background: #eef6ff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
  background: var(--primary-blue);
  color: #fff;
  transform: rotateY(360deg);
}

.sector-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.sector-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Adjustments for AMC Page */
@media (max-width: 992px) {
  .amc-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .amc-hero-buttons {
    justify-content: center;
  }

  .amc-hero-image {
    margin-top: 40px;
  }

  .amc-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amc-split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .amc-stats-bar {
    flex-direction: column;
    margin-top: 30px;
  }

  .amc-stat {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 20px;
    justify-content: center;
    text-align: center;
  }

  .amc-features-grid {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .amc-checklist li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .amc-why-text {
    text-align: center;
  }

  .amc-stat.highlighted {
    align-items: center;
    text-align: center;
  }
}

.priority-section-modern h2 {
  font-size: 42px;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.priority-section-modern p {
  font-size: 19px;
  color: #4a4a4a; /* Darker gray for better contrast */
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
  font-weight: 400;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Rows Refinement */
.feature-rows-section {
  margin-top: 80px; /* Added spacing to prevent overlap */
  position: relative;
  z-index: 1; /* Ensure it sits properly in stack */
}

.feature-row {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 80px;
  display: flex;
  align-items: stretch; /* Stretch to make equal height */
  gap: 40px;
  min-height: 400px; /* Ensure substantial height regardless of content */
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.fr-image,
.fr-content {
  flex: 1;
}

.fr-image {
  display: flex; /* Ensures image container fills height */
}

.fr-image img {
  width: 100%;
  height: 100%; /* Fill the container height */
  object-fit: cover; /* Cover without distortion */
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fr-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
}

.fr-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.why-choose-grid .testimonial-card {
  min-width: 0; /* Reset min-width from slider styles */
  margin: 0; /* Reset margin from slider styles */
  flex: auto; /* Reset flex from slider styles */
}

.fr-content .btn-learn-more {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 35px; /* Larger click area */
  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    #004d99 100%
  ); /* Gradient button */
  color: #fff;
  border-radius: 50px; /* Modern pill shape */
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3); /* Soft shadow */
  text-align: center;
}

.fr-content .btn-learn-more:hover {
  background: linear-gradient(90deg, #002244 0%, #003366 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

@media (max-width: 768px) {
  .fr-content .btn-learn-more {
    width: 100%; /* Full width on mobile */
    padding: 15px 20px;
  }
}

/* Why Choose Section */
.why-choose-section {
  background-color: #f8fbff; /* Light background to differentiate */
  padding: 80px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tc-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 30px;
  overflow: hidden;
}

.tc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-info h4 {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 2px;
}

.tc-info .small-text {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.tc-body p {
  font-style: normal;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Bottom CTA Refinement */
.cta-banner {
  padding: 100px 0;
  background: #f4f7fa; /* Light clean background */
  position: relative;
  text-align: center;
}

.cta-content-center {
  position: relative;
  z-index: 2;
}

.cta-content-center h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--primary-blue);
  font-weight: 700;
}

.cta-content-center p {
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto 40px auto;
  color: #555;
}

.cta-buttons-center {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.btn-whatsapp-large {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  padding: 16px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-whatsapp-large:hover {
  background: #f9f9f9;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-whatsapp-floating {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #25d366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  transition: 0.3s;
  z-index: 10;
}

.btn-whatsapp-floating:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .btn-whatsapp-floating {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }
  .hero {
    padding: 80px 0 100px 0; /* Extra bottom padding for overlap */
    text-align: center;
    background-position: 65% center; /* Adjust image center for mobile */
  }
  .hero-text {
    margin-left: 0;
    max-width: 100%;
    padding: 0;
  }
  .hero-text h1 {
    font-size: 36px; /* Smaller for mobile */
    white-space: normal; /* Allow wrap */
  }
  .hero-text p {
    font-size: 16px;
    white-space: normal;
    margin-bottom: 30px;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: nowrap; /* Force single row */
    gap: 10px; /* Reduce gap for mobile */
  }
  .btn-blue,
  .btn-white {
    padding: 12px 15px; /* Compact padding */
    width: auto; /* Reset full width */
    flex: 1; /* Equal width buttons */
    text-align: center;
    font-size: 14px; /* Ensure text fits */
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-bar-wrapper {
    margin-top: -60px;
    padding: 0 15px;
  }

  /* Fix About Section Padding & Alignment on Mobile */
  .about-section {
    padding: 80px 15px; /* Enough top padding to clear feature bar + side alignment */
    grid-template-columns: 1fr; /* Stack content */
    gap: 40px;
    text-align: center;
  }

  /* Standardize Section Padding on Mobile */
  .services-section,
  .testimonials-section,
  .partners-section,
  .contact-section {
    padding: 60px 0;
  }

  .hero-container,
  .services-grid,
  .contact-container,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .feature-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px; /* Compact padding for mobile */
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 0 0 20px 0;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact-right {
    padding: 25px;
  }

  .stats-bar {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .stat-item {
    flex-direction: column;
    text-align: center;
  }

  .nav-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* larger touch target */
  }
  .nav-links {
    position: absolute;
    top: 70px; /* adjusted for header height */
    right: 0;
    left: 0; /* Full width dropdown */
    background: #fff;
    flex-direction: column;
    align-items: center; /* Center items */
    gap: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
    display: none;
    z-index: 1000;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links .btn-nav {
    width: 100%;
    display: block;
  }
  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  /* NEW PAGE RESPONSIVE */
  .page-header {
    text-align: center;
  }
  .page-header h1,
  .page-header p {
    margin-left: 0;
    max-width: 100%;
    padding: 0 15px;
  }
  .services-page-grid {
    grid-template-columns: 1fr; /* Stack service cards */
  }
  .about-hero-container {
    grid-template-columns: 1fr; /* Stack about hero */
    text-align: center;
  }
  .priority-section-modern {
    padding: 60px 0 30px 0;
  }
  .priority-section-modern h2 {
    font-size: 28px;
  }
  .ah-text h1 {
    font-size: 32px;
  }
  .feature-rows-section {
    margin-top: 50px; /* Reduced spacing for mobile */
  }

  .feature-row {
    flex-direction: column; /* Stack feature rows */
    gap: 30px;
    margin-bottom: 50px;
    height: auto; /* Reset height */
  }

  /* Ensure Image comes first on mobile for alternating rows */
  .feature-row:nth-of-type(even) {
    flex-direction: column-reverse;
  }

  .fr-image img {
    height: 250px; /* Fixed height for mobile consistency */
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .btn-blue,
  .cta-buttons .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .cta-buttons-center {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons-center .btn-blue,
  .cta-buttons-center .btn-whatsapp-large {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col .logo-box {
    justify-content: center;
    margin-bottom: 20px;
  }
  .service-page-card {
    flex-direction: column;
    text-align: center;
  }
  .service-page-card .sp-icon {
    margin: 0 auto;
  }
  .fr-content {
    text-align: center;
  }
  .testimonial-card {
    text-align: center;
  }
  .tc-header {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

/* Extra Small Devices (iPhone SE, etc.) */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 32px;
  }
  .section-title {
    font-size: 24px;
  }
  .about-content h2 {
    font-size: 28px;
  }
  .feature-bar {
    padding: 20px;
  }
}

@media (min-width: 769px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
  }
}

/* Contact Page Styles */
.contact-page-section {
  padding: 80px 0;
  background: #fff;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}
.contact-info-box {
  padding-right: 20px;
}
.contact-info-box h2 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}
.contact-info-box p {
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.cd-item .icon-box {
  width: 50px;
  height: 50px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 20px;
  flex-shrink: 0;
}
.cd-text h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}
.cd-text p {
  margin-bottom: 0;
  font-size: 15px;
}
.social-links-contact {
  display: flex;
  gap: 15px;
}
.social-links-contact a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
}
.social-links-contact a:hover {
  background: var(--hover-blue);
  transform: translateY(-3px);
}

.contact-form-box {
  background: #f9fbfc;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.contact-form-box h2 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 30px;
}
.main-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.main-contact-form .form-group {
  margin-bottom: 20px;
}
.main-contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}
.main-contact-form input,
.main-contact-form textarea,
.main-contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 15px;
  transition: 0.3s;
}
.main-contact-form input:focus,
.main-contact-form textarea:focus {
  border-color: var(--primary-blue);
  outline: none;
}
.main-contact-form textarea {
  height: 120px;
  resize: vertical;
}
.main-contact-form button {
  width: 100%;
}

.map-section {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-box {
    padding-right: 0;
    text-align: center;
  }
  .cd-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .social-links-contact {
    justify-content: center;
  }
  .main-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-box {
    padding: 25px;
  }
}
