:root {
  --theme-bg: #2c2f32;
  --gradient-start: #2c2f32;
  --gradient-end: #1e2022;
  --overlay1-start: rgba(0, 102, 204, 0.9);
  --overlay1-end: rgba(0, 60, 150, 0.6);
  --overlay2-start: rgba(0, 80, 170, 0.5);
  --overlay2-end: rgba(0, 40, 100, 0.2);
  --overlay3-start: rgba(0, 120, 255, 0.3);
  --overlay3-end: rgba(0, 60, 140, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: white;
}

/* Base styles remain the same */
.hero {
  position: relative;
  height: 90vh;
  background: linear-gradient(
    130deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  display: flex;
  align-items: center;
  justify-content: var(--gradient-start);
  text-align: left;
  overflow: hidden;
}

.overlays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  transform-origin: center;
}

.s1 {
  left: -20%;
  top: -10%;
  width: 90%;
  height: 120%;
  background: linear-gradient(
    130deg,
    var(--overlay1-start),
    var(--overlay1-end)
  );
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
  transform: rotate(4deg);
  opacity: 0.9;
}

.s2 {
  top: 5%;
  width: 70%;
  left: -15%;
  height: 100%;
  background: linear-gradient(
    120deg,
    var(--overlay2-start),
    var(--overlay2-end)
  );
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  transform: rotate(8deg);
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.s3 {
  left: -15%;
  top: 15%;
  width: 45%;
  height: 85%;
  background: linear-gradient(
    110deg,
    var(--overlay3-start),
    var(--overlay3-end)
  );
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
  transform: rotate(12deg);
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero-cont {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero-cont {
    max-width: 90%;
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Adjust shapes for smaller screens */
  .s1 {
    left: -25%;
    width: 100%;
    height: 110%;
  }

  .s2 {
    left: -20%;
    width: 80%;
  }

  .s3 {
    left: -20%;
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-cont {
    max-width: 95%;
    padding: 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-top: 0.75rem;
  }

  /* Further adjust shapes for mobile */
  .s1 {
    left: -30%;
    top: -5%;
    width: 110%;
    height: 105%;
  }

  .s2 {
    left: -25%;
    width: 90%;
  }

  .s3 {
    left: -25%;
    width: 60%;
  }
}

/* Extra small devices */
@media screen and (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }
}

/* Landscape orientation for mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 400px;
  }

  .hero-cont {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
}

/* High-resolution displays */
@media screen and (min-width: 1400px) {
  .hero-cont {
    max-width: 700px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }
}

.about-us {
  padding: 2rem;
  margin: 2rem;
  padding-top: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.heading {
  padding: 20px;
  color: gray;
  border-bottom: 1px dotted #0074b7;
  margin-left: 0;
  padding-left: 0;
}

.about-us .heading p {
  color: #000000;
}

.heading i {
  color: #0074b7;
}

.main-about {
  display: flex;
  flex-direction: column;
  color: #2c2f32;
  padding: 2rem 0rem;
  gap: 20px;
}

.main-about h2 {
  font-size: 42px;
}

.about-content {
  display: flex;
  gap: 2rem; /* Reduced base gap */
  color: #2c2f32;
  justify-content: space-between;
}

.about-content h3 {
  font-size: 30px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
}

.about-para {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Fixed image styling */
.about-content img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive Design for All Screens */
@media (max-width: 1200px) {
  .about-content {
    gap: 3rem; /* Adjusted gap */
  }

  .main-about h2 {
    font-size: 38px;
  }

  .about-content h3 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 17px;
  }

  .about-content img {
    max-height: 350px;
  }
}

@media (max-width: 1024px) {
  .about-content {
    gap: 2.5rem;
  }

  .main-about h2 {
    font-size: 36px;
  }

  .about-content h3 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-content img {
    max-height: 320px;
  }
}

@media (max-width: 900px) {
  .about-us {
    padding: 1.5rem;
    margin: 1.5rem;
    gap: 25px;
  }

  .about-content {
    gap: 2rem;
  }

  .main-about h2 {
    font-size: 32px;
  }

  .about-content h3 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-content img {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 1rem;
    margin: 1rem;
    gap: 20px;
  }

  .heading {
    padding: 15px;
  }

  .main-about {
    padding: 1.5rem 0rem;
    gap: 15px;
  }

  .about-content {
    flex-direction: column;
    gap: 1.5rem; /* Reduced gap for mobile */
  }

  .main-about h2 {
    font-size: 28px;
  }

  .about-content h3 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-content img {
    max-height: 280px;
  }

  .about-para {
    gap: 15px;
  }
}

@media (max-width: 650px) {
  .about-us {
    padding: 0.8rem;
    margin: 0.8rem;
    gap: 18px;
  }

  .heading {
    padding: 12px;
  }

  .main-about {
    padding: 1rem 0rem;
    gap: 12px;
  }

  .about-content {
    gap: 1.5rem;
  }

  .main-about h2 {
    font-size: 26px;
  }

  .about-content h3 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .about-content img {
    max-height: 250px;
  }

  .about-para {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 0.5rem;
    margin: 0.5rem;
    gap: 15px;
  }

  .heading {
    padding: 10px;
    font-size: 0.9rem;
  }

  .main-about {
    padding: 0.8rem 0rem;
    gap: 10px;
  }

  .about-content {
    gap: 1rem;
  }

  .main-about h2 {
    font-size: 24px;
  }

  .about-content h3 {
    font-size: 18px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .about-content img {
    max-height: 220px;
  }

  .about-para {
    gap: 10px;
  }
}

@media (max-width: 375px) {
  .about-us {
    padding: 0.3rem;
    margin: 0.3rem;
    gap: 12px;
  }

  .heading {
    padding: 8px;
    font-size: 0.85rem;
  }

  .main-about {
    padding: 0.5rem 0rem;
    gap: 8px;
  }

  .about-content {
    gap: 0.8rem;
  }

  .main-about h2 {
    font-size: 22px;
  }

  .about-content h3 {
    font-size: 17px;
  }

  .about-content p {
    font-size: 13px;
    line-height: 1.4;
  }

  .about-content img {
    max-height: 200px;
  }

  .about-para {
    gap: 8px;
  }
}

@media (max-width: 320px) {
  .about-us {
    padding: 0.2rem;
    margin: 0.2rem;
    gap: 10px;
  }

  .heading {
    padding: 6px;
    font-size: 0.8rem;
  }

  .main-about {
    padding: 0.3rem 0rem;
    gap: 6px;
  }

  .about-content {
    gap: 0.5rem;
  }

  .main-about h2 {
    font-size: 20px;
  }

  .about-content h3 {
    font-size: 16px;
  }

  .about-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  .about-content img {
    max-height: 180px;
  }

  .about-para {
    gap: 6px;
  }
}

/* Large screens above 1200px */
@media (min-width: 1201px) {
  .about-us {
    padding: 2rem;
    margin: 2rem;
  }

  .about-content {
    gap: 5rem; /* Larger gap only on desktop */
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  .about-us {
    padding: 3rem;
    margin: 3rem;
    gap: 35px;
  }

  .main-about h2 {
    font-size: 46px;
  }

  .about-content h3 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 19px;
  }

  .about-content img {
    max-height: 450px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
  .about-us {
    padding: 4rem;
    margin: 4rem;
    gap: 40px;
  }

  .main-about h2 {
    font-size: 50px;
  }

  .about-content h3 {
    font-size: 34px;
  }

  .about-content p {
    font-size: 20px;
  }

  .about-content img {
    max-height: 500px;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .about-content {
    flex-direction: row;
    gap: 2rem;
  }

  .about-content img {
    max-height: 250px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .about-us,
  .main-about,
  .about-content {
    transition: none;
  }
}

/* Print styles */
@media print {
  .about-us {
    padding: 1rem;
    margin: 1rem;
    background: white !important;
    color: black !important;
  }

  .about-content img {
    max-height: 250px;
  }
}

.our-infra {
  background: #2c2f32;
  color: #ffffff;
}

.our-infra > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.our-infra .heading {
  padding: 10px 0;
  color: #b0b3b8;
  border-bottom: 1px dotted #0074b7;
  margin-bottom: 2rem;
}

.our-infra .heading i {
  color: #0074b7;
  margin-right: 8px;
}

.our-infra .heading p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

/* Main Title */
.our-infra > div > div:nth-child(2) > h2 {
  font-size: 32px;
  margin-bottom: 2rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

/* Main Infrastructure Layout - Side by side */
.main-director {
  display: flex;
  flex-direction: column;
  color: #2c2f32;
  padding: 3rem 0;
  gap: 30px;
}

.main-director h1 {
  font-size: 42px;
  border-bottom: 2px solid #0074b7;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.director-content {
  display: flex;
  gap: 4rem;
  color: #2c2f32;
  justify-content: space-between;
  align-items: flex-start;
}

.director-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.director-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.director-para {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  flex: 1;
}

/* Person image styling - portrait oriented */
.director-content img {
  width: 400px;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .director-content {
    gap: 3rem;
  }

  .main-director h1 {
    font-size: 38px;
  }

  .director-content h3 {
    font-size: 28px;
  }

  .director-content p {
    font-size: 17px;
  }

  .director-content img {
    width: 350px;
    height: 450px;
  }
}

@media (max-width: 1024px) {
  .main-director {
    padding: 2.5rem 0;
    gap: 25px;
  }

  .director-content {
    gap: 2.5rem;
  }

  .main-director h1 {
    font-size: 36px;
  }

  .director-content h3 {
    font-size: 26px;
  }

  .director-content p {
    font-size: 16px;
  }

  .director-content img {
    width: 320px;
    height: 420px;
  }
}

@media (max-width: 900px) {
  .main-director {
    padding: 2rem 0;
    gap: 20px;
  }

  .director-content {
    gap: 2rem;
  }

  .main-director h1 {
    font-size: 32px;
  }

  .director-content h3 {
    font-size: 24px;
  }

  .director-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .director-para {
    gap: 20px;
  }

  .director-content img {
    width: 300px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .main-director {
    padding: 1.5rem 0;
    gap: 15px;
  }

  .director-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .main-director h1 {
    font-size: 28px;
    text-align: center;
  }

  .director-content h3 {
    font-size: 22px;
  }

  .director-content p {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }

  .director-para {
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .director-content img {
    width: 280px;
    height: 350px;
  }
}

@media (max-width: 650px) {
  .main-director {
    padding: 1rem 0;
  }

  .director-content {
    gap: 1.5rem;
  }

  .main-director h1 {
    font-size: 26px;
  }

  .director-content h3 {
    font-size: 20px;
  }

  .director-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .director-content img {
    width: 250px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .main-director {
    padding: 0.8rem 0;
    gap: 10px;
  }

  .director-content {
    gap: 1rem;
  }

  .main-director h1 {
    font-size: 24px;
  }

  .director-content h3 {
    font-size: 18px;
  }

  .director-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .director-para {
    gap: 12px;
  }

  .director-content img {
    width: 220px;
    height: 280px;
  }
}

@media (max-width: 375px) {
  .main-director {
    padding: 0.5rem 0;
  }

  .director-content {
    gap: 0.8rem;
  }

  .main-director h1 {
    font-size: 22px;
  }

  .director-content h3 {
    font-size: 17px;
  }

  .director-content p {
    font-size: 13px;
    line-height: 1.4;
  }

  .director-content img {
    width: 200px;
    height: 250px;
  }
}

@media (max-width: 320px) {
  .main-director {
    padding: 0.3rem 0;
  }

  .director-content {
    gap: 0.5rem;
  }

  .main-director h1 {
    font-size: 20px;
  }

  .director-content h3 {
    font-size: 16px;
  }

  .director-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  .director-content img {
    width: 180px;
    height: 220px;
  }
}

/* Large screens above 1200px */
@media (min-width: 1201px) {
  .director-content {
    gap: 5rem;
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  .main-director {
    padding: 4rem 0;
    gap: 35px;
  }

  .main-director h1 {
    font-size: 46px;
  }

  .director-content h3 {
    font-size: 32px;
  }

  .director-content p {
    font-size: 19px;
  }

  .director-content img {
    width: 450px;
    height: 550px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
  .main-director {
    padding: 5rem 0;
    gap: 40px;
  }

  .main-director h1 {
    font-size: 50px;
  }

  .director-content h3 {
    font-size: 34px;
  }

  .director-content p {
    font-size: 20px;
  }

  .director-content img {
    width: 500px;
    height: 600px;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .director-content {
    flex-direction: row;
    gap: 2rem;
    text-align: left;
  }

  .director-content img {
    width: 200px;
    height: 250px;
  }

  .director-para {
    align-items: flex-start;
    text-align: left;
  }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .director-content {
    gap: 3rem;
  }

  .director-content img {
    width: 300px;
    height: 380px;
  }
}
/* Quality Section - With image on right */
.quality-section {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: #0074b7;
  padding: 2rem;
  margin-bottom: 2rem;
}

.quality-content {
  flex: 1;
}

.quality-content h2 {
  color: #2c2f32;
  font-size: 30px;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.quality-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
}

.know-more-btn {
  display: inline-block;
  background: #2c2f32;
  color: white;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.know-more-btn:hover {
  background: #005a8e;
}

/* Quality Image on the right */
.quality-image {
  flex: 1;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b3b8;
  font-size: 16px;
  overflow: hidden;
}

/* Actual image styling */
.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Values Grid */
.value {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-item {
  padding: 1.5rem 0;
  border-top: 1px dotted #0074b7;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-item h2 {
  color: #ffffff;
  font-size: 22px;
  margin: 0 0 1rem 0;
  font-weight: 600;
  padding-bottom: 0.5rem;
}

.value-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #b0b3b8;
  margin: 0 0 1rem 0;
  flex: 1;
}

.read-more-btn {
  display: inline-block;
  color: #0074b7;
  padding: 6px 15px;
  text-decoration: none;
  border: 1px solid #0074b7;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.read-more-btn:hover {
  background: #0074b7;
  color: white;
}

/* Comprehensive Responsive Design */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .our-infra > div {
    padding: 3rem;
    max-width: 1400px;
  }

  .our-infra > div > div:nth-child(2) > h2 {
    font-size: 36px;
  }

  .infra-image {
    height: 400px;
  }

  .quality-image {
    height: 300px;
  }

  .stat-item h1 {
    font-size: 32px;
  }
}

/* Standard Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .our-infra > div {
    padding: 2.5rem;
  }

  .infra-main,
  .quality-section {
    gap: 2.5rem;
  }
}

/* Small Desktop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
  .our-infra > div {
    padding: 2rem;
  }

  .infra-main,
  .quality-section {
    gap: 2rem;
  }

  .infra-image {
    height: 320px;
  }

  .quality-image {
    height: 220px;
  }
}

/* Tablet Landscape (900px - 1023px) */
@media (max-width: 1023px) and (min-width: 900px) {
  .our-infra > div {
    padding: 1.5rem;
  }

  .infra-main,
  .quality-section {
    gap: 1.5rem;
  }

  .infra-image {
    height: 300px;
  }

  .quality-image {
    height: 200px;
  }

  .value {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Tablet (768px - 899px) */
@media (max-width: 899px) and (min-width: 768px) {
  .our-infra > div {
    padding: 1.25rem;
  }

  .our-infra > div > div:nth-child(2) > h2 {
    font-size: 28px;
  }

  .infra-main,
  .quality-section {
    gap: 1.5rem;
  }

  .infra-image {
    height: 280px;
  }

  .quality-image {
    height: 180px;
  }

  .value {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item h1 {
    font-size: 24px;
  }

  .quality-content h2,
  .value-item h2 {
    font-size: 18px;
  }
}

/* Large Mobile (650px - 767px) */
@media (max-width: 767px) and (min-width: 650px) {
  .our-infra > div {
    padding: 1rem;
  }

  .our-infra > div > div:nth-child(2) > h2 {
    font-size: 26px;
  }

  .infra-main,
  .quality-section {
    flex-direction: column;
    gap: 1.5rem;
  }

  .infra-image,
  .quality-image {
    height: 250px;
    width: 100%;
  }

  .value {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item,
  .value-item {
    padding: 1.25rem;
  }

  .quality-section {
    padding: 1.5rem;
  }
}

/* Mobile (480px - 649px) */
@media (max-width: 649px) and (min-width: 480px) {
  .our-infra > div {
    padding: 0.8rem;
  }

  .our-infra > div > div:nth-child(2) > h2 {
    font-size: 24px;
  }

  .heading {
    padding: 8px 0;
  }

  .heading p {
    font-size: 15px;
  }

  .infra-main,
  .quality-section {
    flex-direction: column;
    gap: 1.25rem;
  }

  .infra-image,
  .quality-image {
    height: 220px;
  }

  .value {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .stat-item,
  .value-item {
    padding: 1rem;
  }

  .quality-section {
    padding: 1.25rem;
  }

  .stat-item h1 {
    font-size: 22px;
  }

  .quality-content h2,
  .value-item h2 {
    font-size: 17px;
  }

  .quality-content p,
  .value-item p {
    font-size: 14px;
  }
}

/* Small Mobile (375px - 479px) */
@media (max-width: 479px) and (min-width: 375px) {
  .our-infra > div {
    padding: 0.5rem;
  }

  .our-infra > div > div:nth-child(2) > h2 {
    font-size: 22px;
  }

  .heading {
    padding: 6px 0;
  }

  .heading p {
    font-size: 14px;
  }

  .infra-main,
  .quality-section {
    flex-direction: column;
    gap: 1rem;
  }

  .infra-image,
  .quality-image {
    height: 200px;
    font-size: 16px;
  }

  .value {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-item,
  .value-item {
    padding: 0.8rem;
  }

  .quality-section {
    padding: 1rem;
  }

  .stat-item h1 {
    font-size: 20px;
  }

  .quality-content h2,
  .value-item h2 {
    font-size: 16px;
  }

  .quality-content p,
  .value-item p {
    font-size: 13px;
    line-height: 1.4;
  }

  .know-more-btn,
  .read-more-btn {
    padding: 6px 15px;
    font-size: 12px;
  }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
  .our-infra > div {
    padding: 0.3rem;
  }

  .our-infra > div > div:nth-child(2) > h2 {
    font-size: 20px;
  }

  .heading {
    padding: 5px 0;
  }

  .heading p {
    font-size: 13px;
  }

  .infra-main,
  .quality-section {
    flex-direction: column;
    gap: 0.8rem;
  }

  .infra-image,
  .quality-image {
    height: 180px;
    font-size: 14px;
  }

  .value {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .stat-item,
  .value-item {
    padding: 0.7rem;
  }

  .quality-section {
    padding: 0.8rem;
  }

  .stat-item h1 {
    font-size: 18px;
  }

  .quality-content h2,
  .value-item h2 {
    font-size: 15px;
  }

  .quality-content p,
  .value-item p {
    font-size: 12px;
    line-height: 1.4;
  }

  .know-more-btn,
  .read-more-btn {
    padding: 5px 12px;
    font-size: 11px;
  }
}

/* Ultra-wide screens (1920px+) */
@media (min-width: 1920px) {
  .our-infra > div {
    max-width: 1600px;
    padding: 4rem;
  }

  .our-infra > div > div:nth-child(2) > h2 {
    font-size: 40px;
  }

  .infra-image {
    height: 450px;
  }

  .quality-image {
    height: 350px;
  }

  .stat-item h1 {
    font-size: 36px;
  }

  .quality-content h2 {
    font-size: 28px;
  }

  .value-item h2 {
    font-size: 24px;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 767px) and (orientation: landscape) {
  .infra-main,
  .quality-section {
    flex-direction: row;
  }

  .infra-image,
  .quality-image {
    height: 200px;
  }

  .value {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .our-infra * {
    transition: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .our-infra {
    background: #000000;
  }

  .infra-image,
  .quality-image,
  .stat-item,
  .quality-section,
  .value-item {
    background: #111111;
    border-color: #ffffff;
  }
}

/* Print Styles */
@media print {
  .our-infra {
    background: white !important;
    color: black !important;
  }

  .infra-image,
  .quality-image,
  .stat-item,
  .quality-section,
  .value-item {
    background: #f5f5f5 !important;
    border-color: #000000 !important;
  }

  .stat-item h1,
  .know-more-btn,
  .read-more-btn {
    color: #000000 !important;
  }
}

/* Policy Section with Text Inside Image */
/* Policy Section with Real Images */
.policy-section {
  padding: 60px 20px;
}

.policy-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  padding: 20px 0;
  color: black;
  border-bottom: 1px dotted #0074b7;
  margin-bottom: 40px;
  font-size: 16px;
}

.section-heading i {
  color: #0074b7;
  margin-right: 8px;
}

.section-heading p {
  margin: 0;
  font-weight: 500;
}

/* Two Column Policy with Real Images */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.policy-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
}

.policy-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 40px;
  position: relative;
}

.policy-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.226);
}

.policy-content {
  position: relative;
  z-index: 2;
  color: white;
}

.policy-content h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.policy-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Awards Section - Real Images */
.awards-section {
  padding: 60px 20px;
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.award-card {
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}

.award-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

/* Articles Section with Real Images */
.articles-section {
  padding: 60px 20px;
}

.articles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.article-card {
  border-radius: 8px;
  overflow: hidden;
}

.article-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.article-tag {
  display: block;
  color: #0074b7;
  text-align: left;
  padding: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .policy-grid,
  .awards-grid,
  .articles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .policy-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .policy-grid,
  .awards-grid,
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .policy-section,
  .awards-section,
  .articles-section {
    padding: 40px 15px;
  }

  .policy-card {
    height: 300px;
  }

  .award-card {
    height: 200px;
  }

  .article-image {
    height: 150px;
  }

  .policy-content h3 {
    font-size: 24px;
  }

  .policy-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .policy-section,
  .awards-section,
  .articles-section {
    padding: 30px 10px;
  }

  .section-heading {
    padding: 15px 0;
    font-size: 14px;
  }

  .policy-card {
    height: 250px;
  }

  .award-card {
    height: 180px;
  }

  .article-image {
    height: 120px;
  }

  .policy-content {
    padding: 20px;
  }

  .policy-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .policy-content p {
    font-size: 13px;
  }
}
.info-bar {
  background: #2c2f32; /* Primary dark charcoal */
  color: #ffffff;
  font-size: 14px;
  margin-top: 0;
}

.info-container {
  display: flex;
  justify-content: space-between;
  background-color: #3e4347; /* Graphite gray secondary */
  padding: 5px;
  margin-top: 0;
  align-items: center;
  width: 90%;
  margin: auto;
}

.info-links a {
  color: #eaecee; /* Off-white text */
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.info-links a:hover {
  color: #0074b7; /* Steel blue hover */
}

.info-links a i {
  margin-right: 5px;
  color: #0074b7; /* Accent icons */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2c2f32; /* Primary dark */
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin: 10px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  padding: 5px;
  filter: brightness(1.65) contrast(1.3); /* Slightly stronger boost */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo i {
  color: #0074b7; /* Accent color */
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  padding: 10px 15px;
  display: flex;
  gap: 5px;
  align-items: center;
  transition: color 0.3s;
}

.nav-links a i {
  margin-right: 5px;
  color: #0074b7; /* Subtle blue icon accent */
}

.nav-links a:hover {
  color: #0074b7; /* Steel blue hover */
  border-radius: 5px;
}

/* Get in Touch Button */
.get-in-touch-btn {
  background: #0074b7; /* Primary blue accent */
  color: #ffffff;
  border: none;
  margin-right: 5px;
  padding: 10px;
  border-radius: 45px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.get-in-touch-btn:hover {
  background: #005a8e; /* Deep marine hover */
}

/* Dropdown */
.dropdown-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #3e4347; /* Graphite gray dropdown */
  color: #ffffff;
  flex-direction: column;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.dropdown-menu li a {
  padding: 10px;
  color: #ffffff;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background: #0074b7; /* Highlight hover */
  color: #ffffff;
}

/* Burger */
/* Burger - Fixed Spacing */
.burger {
  display: none;
  cursor: pointer;
  background: #3e4347; /* Graphite gray dropdown */
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 12px 15px;
  margin: 10px 15px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 44px;
}

.burger span {
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Spacing Fixes */
@media (max-width: 768px) {
  .burger {
    display: flex;
    margin: 8px 12px;
    padding: 10px 13px;
    height: 42px;
    min-width: 46px;
  }

  .burger span {
    font-size: 22px;
  }
}

@media (max-width: 650px) {
  .burger {
    margin: 6px 10px;
    padding: 8px 11px;
    height: 40px;
    min-width: 44px;
  }

  .burger span {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .burger {
    margin: 5px 8px;
    padding: 7px 10px;
    height: 38px;
    min-width: 42px;
  }

  .burger span {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .burger {
    margin: 4px 6px;
    padding: 6px 8px;
    height: 36px;
    min-width: 40px;
  }

  .burger span {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .burger {
    margin: 3px 5px;
    padding: 5px 7px;
    height: 34px;
    min-width: 38px;
  }

  .burger span {
    font-size: 14px;
  }
}

/* Enhanced Responsive Design for All Screens */

/* Large Desktop (1200px+) */
@media (min-width: 1201px) {
  .navbar {
    padding: 0 40px;
  }

  .nav-logo img {
    height: 65px;
  }

  .nav-links a {
    padding: 12px 18px;
    font-size: 1.05rem;
  }

  .get-in-touch-btn {
    padding: 12px 24px;
    font-size: 1.05rem;
  }
}

/* Standard Desktop (1024px - 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
  .navbar {
    padding: 0 30px;
  }

  .nav-links a {
    padding: 10px 14px;
    font-size: 1rem;
  }

  .get-in-touch-btn {
    padding: 10px 20px;
  }
}

/* Small Desktop (900px - 1024px) */
@media (max-width: 1024px) and (min-width: 901px) {
  .navbar {
    padding: 0 25px;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .get-in-touch-btn {
    padding: 8px 18px;
    font-size: 0.95rem;
  }

  .nav-logo img {
    height: 55px;
  }
}

/* Tablet Landscape (768px - 900px) */
@media (max-width: 900px) and (min-width: 769px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .get-in-touch-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .nav-logo img {
    height: 50px;
  }

  .info-container {
    width: 95%;
  }
}

/* Tablet (768px) - Your existing breakpoint */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 100%;
    background: #2c2f32;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    width: 100%;
    transition: height 0.3s ease;
  }

  .nav-links.open {
    height: auto;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
  }

  .nav-links a {
    padding: 15px 20px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: relative;
    top: 0;
    width: 100%;
    background: #3e4347;
  }

  .burger {
    display: flex;
    align-items: center;
    padding: 10px 15px;
  }

  /* Info Bar Responsive */
  .info-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px;
  }

  .info-links a {
    margin: 0 10px;
    display: inline-block;
  }

  .nav-logo img {
    height: 50px;
  }

  .get-in-touch-btn {
    background-color: transparent;
  }
}

/* Large Mobile (650px - 768px) */
@media (max-width: 768px) and (min-width: 651px) {
  .navbar {
    padding: 0 15px;
  }

  .nav-logo img {
    height: 48px;
  }

  .burger {
    padding: 8px 12px;
  }

  .info-container {
    padding: 8px;
  }

  .get-in-touch-btn {
    background-color: transparent;
  }
}

/* Mobile (480px - 650px) */
@media (max-width: 650px) and (min-width: 481px) {
  .navbar {
    padding: 0 12px;
  }

  .nav-logo img {
    height: 45px;
  }

  .burger {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .nav-links a {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .info-container {
    padding: 6px;
  }

  .info-links a {
    margin: 0 8px;
    font-size: 0.9rem;
  }

  .get-in-touch-btn {
    background-color: transparent;
  }
}

/* Small Mobile (375px - 480px) */
@media (max-width: 480px) and (min-width: 376px) {
  .navbar {
    padding: 0 10px;
  }

  .nav-logo img {
    height: 42px;
  }

  .burger {
    padding: 5px 8px;
    font-size: 0.85rem;
  }

  .nav-links a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .info-container {
    padding: 5px;
  }

  .info-links a {
    margin: 0 6px;
    font-size: 0.85rem;
  }

  .get-in-touch-btn {
    margin-right: 3px;
    padding: 8px 12px;
    font-size: 0.85rem;
    background-color: transparent;
  }
}

/* Extra Small Mobile (320px - 375px) */
@media (max-width: 375px) and (min-width: 321px) {
  .navbar {
    padding: 0 8px;
  }

  .nav-logo img {
    height: 40px;
  }

  .burger {
    padding: 4px 6px;
    font-size: 0.8rem;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .info-container {
    padding: 4px;
    width: 98%;
  }

  .info-links a {
    margin: 0 4px;
    font-size: 0.8rem;
  }

  .get-in-touch-btn {
    margin-right: 2px;
    padding: 6px 10px;
    font-size: 0.8rem;
    background-color: transparent;
  }
}

/* Ultra Small Mobile (below 320px) */
@media (max-width: 320px) {
  .navbar {
    padding: 0 5px;
  }

  .nav-logo img {
    height: 38px;
  }

  .burger {
    padding: 3px 5px;
    font-size: 0.75rem;
  }

  .nav-links a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }

  .info-container {
    padding: 3px;
    width: 99%;
    flex-direction: column;
    gap: 5px;
  }

  .info-links a {
    margin: 0 3px;
    font-size: 0.75rem;
    display: block;
  }

  .get-in-touch-btn {
    margin-right: 1px;
    padding: 5px 8px;
    font-size: 0.75rem;
    background-color: transparent;
  }
}

/* Ultra Wide Screens (1920px+) */
@media (min-width: 1920px) {
  .navbar {
    padding: 0 60px;
  }

  .nav-logo img {
    height: 70px;
  }

  .nav-links a {
    padding: 15px 22px;
    font-size: 1.1rem;
  }

  .get-in-touch-btn {
    padding: 15px 28px;
    font-size: 1.1rem;
  }

  .info-container {
    width: 85%;
    padding: 8px;
  }
}

/* Info Bar Specific Responsive */
@media (max-width: 480px) {
  .info-bar {
    font-size: 12px;
  }

  .info-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .info-links a {
    margin: 2px 4px;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .nav-links {
    max-height: 70vh;
    overflow-y: auto;
  }

  .nav-links a {
    padding: 10px 15px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .nav-links,
  .nav-logo img,
  .info-links a,
  .get-in-touch-btn {
    transition: none;
  }

  .nav-links a:hover,
  .get-in-touch-btn:hover {
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .navbar {
    background: #000000;
    border-bottom: 2px solid #ffffff;
  }

  .nav-links a {
    color: #ffffff;
  }

  .nav-links a:hover {
    background: #ffffff;
    color: #000000;
  }
}

/* Print Styles */
@media print {
  .info-bar,
  .navbar {
    display: none;
  }
}

/* Contact Drawer - High Specificity */
.contact-drawer {
  position: fixed !important;
  top: 0 !important;
  right: -450px !important;
  width: 450px !important;
  height: 100vh !important;
  background: #2c2f32 !important; /* Core dark charcoal */
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.25) !important;
  color: #ffffff !important;
  z-index: 10000 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  pointer-events: auto !important;
  isolation: isolate !important;
  box-sizing: border-box !important;
}

.contact-drawer-content {
  padding: 2rem;
  position: relative;
  color: #ffffff;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.contact-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #eaecee;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: color 0.3s;
}

.contact-drawer-close:hover {
  color: #0074b7; /* Accent blue hover */
}

/* Contact Form Overlay */
.contact-drawer-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.contact-drawer-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Contact Form Styles */
.contact-form-header {
  margin-bottom: 2rem;
  padding-right: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form-header h2 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.contact-form-header p {
  color: #b0b3b8;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.error-message {
  color: #e53935;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
  min-height: 1rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* Field Focus States */
.form-group input:focus:invalid,
.form-group select:focus:invalid,
.form-group textarea:focus:invalid {
  box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.25);
  background-color: transparent;
}

.form-group input:focus:valid,
.form-group select:focus:valid,
.form-group textarea:focus:valid {
  box-shadow: 0 0 0 0.2rem rgba(0, 116, 183, 0.25);
  background-color: transparent;
}

/* Form Row with Side-by-Side Fields */
.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure form groups within form-row stay contained */
.form-row .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #eaecee;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #555a5f;
  background-color: transparent;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0074b7;
  background-color: transparent;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  color: #ffffff;
}

/* Submit Button */
.submit-btn {
  background: #0074b7; /* Primary blue accent */
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.submit-btn:hover {
  background: #005a8e; /* Deep hover */
}

.submit-btn:disabled {
  background: #a0a0a0;
  cursor: not-allowed;
}

/* Loading state for submit button */
.submit-btn.loading {
  background: #5c636a;
  cursor: not-allowed;
  position: relative;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  right: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Body scroll lock */
body.contact-drawer-open {
  overflow: hidden !important;
}

/* Success and Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53935;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: #28a745;
}

/* Success Message */
.form-success-message {
  width: 100%;
  box-sizing: border-box;
}

/* Responsive Design for All Screens */
@media (max-width: 1200px) {
  .contact-drawer {
    width: 400px !important;
    right: -400px !important;
  }
}

@media (max-width: 992px) {
  .contact-drawer {
    width: 380px !important;
    right: -380px !important;
  }

  .contact-drawer-content {
    padding: 1.75rem;
  }
}

@media (max-width: 768px) {
  .contact-drawer {
    width: 100% !important;
    right: -100% !important;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-drawer-content {
    padding: 1.5rem;
  }

  .contact-form-header {
    margin-bottom: 1.5rem;
    padding-right: 1rem;
  }

  .contact-form-header h2 {
    font-size: 1.375rem;
  }

  .contact-form {
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .contact-drawer-content {
    padding: 1.25rem;
  }

  .contact-drawer-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 35px;
    height: 35px;
    font-size: 1.75rem;
  }

  .contact-form-header {
    margin-bottom: 1.25rem;
    padding-right: 0;
  }

  .contact-form-header h2 {
    font-size: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-drawer-content {
    padding: 1rem;
  }

  .contact-drawer-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }

  .contact-form-header {
    margin-bottom: 1rem;
  }

  .contact-form-header h2 {
    font-size: 1.125rem;
  }

  .contact-form-header p {
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 8px;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 10px;
    font-size: 0.9rem;
  }

  .error-message {
    font-size: 0.75rem;
  }

  .form-row {
    gap: 0.5rem;
  }
}

@media (max-width: 360px) {
  .contact-drawer-content {
    padding: 0.75rem;
  }

  .contact-form {
    gap: 8px;
  }

  .form-row {
    gap: 0.75rem;
  }

  .contact-form-header h2 {
    font-size: 1rem;
  }

  .contact-form-header p {
    font-size: 0.85rem;
  }
}

/* Large screens above 1200px */
@media (min-width: 1201px) {
  .contact-drawer {
    width: 450px !important;
    right: -450px !important;
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  .contact-drawer {
    width: 500px !important;
    right: -500px !important;
  }

  .contact-drawer-content {
    padding: 2.5rem;
  }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
  .contact-drawer {
    width: 550px !important;
    right: -550px !important;
  }
}

/* Height-based responsiveness */
@media (max-height: 600px) {
  .contact-drawer-content {
    padding: 1rem;
  }

  .contact-form-header {
    margin-bottom: 1rem;
  }

  .form-group textarea {
    min-height: 80px;
  }
}

/* Orientation-based adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .contact-drawer {
    height: 100vh !important;
    overflow-y: auto !important;
  }

  .contact-drawer-content {
    min-height: fit-content;
  }

  .form-group textarea {
    min-height: 60px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .contact-drawer {
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3) !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .contact-drawer,
  .contact-drawer-overlay,
  .submit-btn,
  .error-message {
    transition: none !important;
    animation: none !important;
  }
}

/* Dark mode consistency (already dark but ensuring consistency) */
@media (prefers-color-scheme: dark) {
  .contact-drawer {
    background: #2c2f32 !important;
    color: #ffffff !important;
  }
}

/* Print styles */
@media print {
  .contact-drawer,
  .contact-drawer-overlay {
    display: none !important;
  }
}

.footer {
  background: #2c2f32; /* Primary dark */
  color: #ffffff;
  padding: 40px 20px 20px;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 0;
  box-sizing: border-box;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  border-bottom: 2px solid #0074b7; /* Steel Blue accent */
  color: #0074b7; /* Steel Blue accent */
  padding-bottom: 8px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section ul li a {
  text-decoration: none;
  color: #eaecee; /* Off-white text */
  transition: color 0.3s ease;
  display: block;
  width: 100%;
}

.footer-section ul li:hover a {
  color: #0074b7;
}

.footer-section ul li:hover {
  color: #0074b7;
  cursor: pointer;
}

.footer-section.about {
  flex: 1.5;
  min-width: 300px;
}

.logo {
  margin-bottom: 20px;
  display: inline-block;
}

.logo img {
  width: auto;
  height: 60px;
  max-width: 100%;
  filter: brightness(1.65) contrast(1.3); /* Slightly stronger boost */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.about-text {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #d3d5d8; /* Muted light gray text */
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-icons a:hover {
  background: #0074b7; /* Blue hover */
  color: #ffffff;
  transform: translateY(-3px);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #d3d5d8;
  text-align: left;
}

.contact-info li i {
  margin-right: 10px;
  color: #0074b7; /* Accent icons */
  min-width: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #d3d5d8;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    max-width: 1000px;
    gap: 25px;
  }

  .footer-section {
    min-width: 220px;
  }
}

@media (max-width: 1024px) {
  .footer-container {
    gap: 20px;
  }

  .footer-section {
    min-width: 200px;
  }

  .footer-section.about {
    min-width: 280px;
  }
}

@media (max-width: 900px) {
  .footer-container {
    justify-content: space-around;
  }

  .footer-section {
    flex: 0 1 calc(50% - 20px);
    min-width: 250px;
  }

  .footer-section.about {
    flex: 0 1 100%;
    min-width: 100%;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 15px 15px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-section {
    min-width: 100%;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .footer-section ul li {
    text-align: center;
  }
}

@media (max-width: 650px) {
  .footer-container {
    gap: 25px;
  }

  .footer-section {
    margin-bottom: 10px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 12px 15px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 6px;
  }

  .logo img {
    height: 50px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
    margin-top: 30px;
    padding-top: 15px;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .contact-info li {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 375px) {
  .footer {
    padding: 20px 10px 15px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .logo img {
    height: 45px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .footer {
    padding: 15px 8px 12px;
  }

  .footer-container {
    gap: 20px;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Large screens above 1200px */
@media (min-width: 1201px) {
  .footer-container {
    max-width: 1200px;
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-container {
    max-width: 1400px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
  .footer-container {
    max-width: 1600px;
  }

  .footer-section h3 {
    font-size: 1.4rem;
  }

  .about-text,
  .footer-section ul li a,
  .contact-info li {
    font-size: 1.1rem;
  }
}

/* Print styles */
@media print {
  .footer {
    background: #ffffff !important;
    color: #000000 !important;
    border-top: 2px solid #000000;
  }

  .footer-section h3 {
    color: #000000 !important;
    border-bottom-color: #000000;
  }

  .social-icons {
    display: none;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .footer-section ul li,
  .social-icons a,
  .logo img {
    transition: none;
    transform: none;
  }

  .footer-section ul li:hover {
    transform: none;
  }

  .social-icons a:hover {
    transform: none;
  }

  .logo img:hover {
    transform: none;
  }
}

/* Custom Scrollbar for Entire Website */
/* Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 6px;
  border: 2px solid #1e1e1e;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #005a8e;
  border: 2px solid #1e1e1e;
}

::-webkit-scrollbar-thumb:active {
  background: #004a7a;
}

::-webkit-scrollbar-corner {
  background: #1e1e1e;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #0074b7 #1e1e1e;
}

/* Apply to all elements that can scroll */
* {
  scrollbar-width: thin;
  scrollbar-color: #0074b7 #1e1e1e;
}

/* Smooth scrolling for entire site */
html {
  scroll-behavior: smooth;
}

/* Specific styling for body */
body {
  scrollbar-width: thin;
  scrollbar-color: #0074b7 #1e1e1e;
}

/* Textareas */
textarea::-webkit-scrollbar {
  width: 8px;
}

textarea::-webkit-scrollbar-track {
  background: #2c2f32;
  border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 4px;
}

/* Contact drawer specific (already in your code but ensuring consistency) */
.contact-drawer::-webkit-scrollbar {
  width: 8px;
}

.contact-drawer::-webkit-scrollbar-track {
  background: #2c2f32;
  border-radius: 4px;
}

.contact-drawer::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 4px;
}

/* Firefox for contact drawer */
.contact-drawer {
  scrollbar-width: thin;
  scrollbar-color: #0074b7 #2c2f32;
}

/* Any element with overflow */
div::-webkit-scrollbar,
section::-webkit-scrollbar,
main::-webkit-scrollbar,
aside::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

div::-webkit-scrollbar-track,
section::-webkit-scrollbar-track,
main::-webkit-scrollbar-track,
aside::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 4px;
}

div::-webkit-scrollbar-thumb,
section::-webkit-scrollbar-thumb,
main::-webkit-scrollbar-thumb,
aside::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 4px;
}

/* Responsive scrollbars */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    border: 1px solid #1e1e1e;
  }

  .contact-drawer::-webkit-scrollbar {
    width: 6px;
  }

  textarea::-webkit-scrollbar {
    width: 6px;
  }
}

@media (max-width: 480px) {
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  ::-webkit-scrollbar-thumb {
    border: 1px solid #1e1e1e;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  ::-webkit-scrollbar-thumb {
    background: #005a8e;
    border: 1px solid #ffffff;
  }

  ::-webkit-scrollbar-track {
    background: #000000;
  }

  html {
    scrollbar-color: #005a8e #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  ::-webkit-scrollbar-thumb {
    transition: none;
  }
}

/* Print styles - hide scrollbars */
@media print {
  ::-webkit-scrollbar {
    display: none;
  }

  html {
    scrollbar-width: none;
  }
}

/* Ensure scrollbars work on all possible scrollable elements */
[style*="overflow: auto"]::-webkit-scrollbar,
[style*="overflow: scroll"]::-webkit-scrollbar,
[style*="overflow-x: auto"]::-webkit-scrollbar,
[style*="overflow-y: auto"]::-webkit-scrollbar,
[style*="overflow-x: scroll"]::-webkit-scrollbar,
[style*="overflow-y: scroll"]::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

[style*="overflow: auto"]::-webkit-scrollbar-track,
[style*="overflow: scroll"]::-webkit-scrollbar-track,
[style*="overflow-x: auto"]::-webkit-scrollbar-track,
[style*="overflow-y: auto"]::-webkit-scrollbar-track,
[style*="overflow-x: scroll"]::-webkit-scrollbar-track,
[style*="overflow-y: scroll"]::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 4px;
}

[style*="overflow: auto"]::-webkit-scrollbar-thumb,
[style*="overflow: scroll"]::-webkit-scrollbar-thumb,
[style*="overflow-x: auto"]::-webkit-scrollbar-thumb,
[style*="overflow-y: auto"]::-webkit-scrollbar-thumb,
[style*="overflow-x: scroll"]::-webkit-scrollbar-thumb,
[style*="overflow-y: scroll"]::-webkit-scrollbar-thumb {
  background: #0074b7;
  border-radius: 4px;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}
