/* Why Choose Section */
/* Updated why choose section styling to match dark background design with feature cards */
.why-choose-section {
  background: linear-gradient(rgba(25, 35, 56, 0.85), rgba(25, 35, 56, 0.85)),
    url("/placeholder.svg?height=400&width=1200") center / cover;
  padding: 100px 0;
  color: white;
}

.why-choose-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.why-choose-text {
  flex: 1;
}

.why-choose-text h2 {
  font-family: "Tenor Sans", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #31487a;
  margin-bottom: 40px;
  line-height: 1.2;
}

.why-choose-cards {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-choose-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(49, 72, 122, 0.3);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.card-icon {
  color: #31487a;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.why-choose-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #31487a;
  margin-bottom: 15px;
}

.why-choose-card p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Defense section */
.defense-section {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
}

.defense-content h2 {
  font-family: "Tenor Sans", serif;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 400;
}

.defense-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.defense-cta-btn {
  background: transparent;
  color: var(--primary-gold);
  padding: 12px 30px;
  border: 2px solid var(--primary-gold);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}

.defense-cta-btn:hover {
  background: var(--primary-gold);
  color: var(--white);
}

/* Areas Section */
.areas-section {
  background: #d9e1f1;
  padding: 80px 0;
}

.areas-title {
  text-align: center;
  margin-bottom: 60px;
}

.areas-title h2 {
  font-family: "Tenor Sans", serif;
  font-size: 42px;
  color: #1e2e4f;
  font-weight: 400;
  letter-spacing: 1px;
}

.areas-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.area-button {
  background: transparent;
  border: 2px solid #31487a;
  color: #1e2e4f;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.area-button.active {
  background: #31487a;
  color: white;
}

.area-button:hover {
  background: #31487a;
  color: white;
}

.featured-card {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 400px;
  background-image: url("assets/img/law-school-time.jpg");
  background-size: cover;
  background-position: center;
}

.featured-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 40, 38, 0.85) 0%, rgba(43, 40, 38, 0.3) 100%);
  display: flex;
  align-items: center;
  padding: 60px;
}

.featured-card-content {
  max-width: 400px;
}

.featured-card h3 {
  font-family: "Tenor Sans", serif;
  font-size: 28px;
  color: #8fb3e2;
  margin-bottom: 20px;
  font-weight: 400;
}

.featured-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: white;
  line-height: 1.6;
  margin-bottom: 30px;
}

.featured-card .btn-secondary {
  background: #31487a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.featured-card .btn-secondary:hover {
  background: #1e2e4f;
  transform: translateY(-2px);
}

/* Inventory Section */
.inventory-section {
  background: var(--dark-bg);
  color: var(--white);
  padding: 80px 0;
  position: relative;
}

.inventory-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.inventory-text h2 {
  font-family: "Tenor Sans", serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.inventory-text p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.inventory-image {
  text-align: center;
}

.inventory-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* About Section */
.about-section {
  background-color: #d9e1f1;
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  font-family: "Tenor Sans", serif;
  font-size: 2.5rem;
  color: #31487a;
  margin-bottom: 30px;
  line-height: 1.2;
  font-weight: 400;
}

.about-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #27282c;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-text .main-description {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #27282c;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.about-text .detailed-description {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 35px;
  line-height: 1.6;
  font-weight: 400;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* Service Section */
.service-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.service-content h2 {
  font-family: "Tenor Sans", serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-content p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Testimonials Section */
.testimonials-section {
  background: #d9e1f1;
  padding: 80px 0;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title h2 {
  font-family: "Tenor Sans", serif;
  font-size: 2.5rem;
  color: #31487a;
  font-weight: 400;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
  border: 3px solid #31487a;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #31487a;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
}

/* Blog Section */
.blog-section {
  background: var(--cream);
  padding: 80px 0;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h2 {
  font-family: "Tenor Sans", serif;
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.blog-header .highlight {
  background: var(--primary-gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.blog-card p {
  font-size: 14px;
  color: var(--text-dark);
}

/* Location Section */
.location-section {
  background: var(--white);
  padding: 80px 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-text h2 {
  font-family: "Tenor Sans", serif;
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.location-item {
  margin-bottom: 20px;
}

.location-item h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

.location-item p {
  font-size: 16px;
  color: var(--text-dark);
}

.location-image {
  text-align: center;
}

.location-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* CTA Section */
/* Updated CTA section to match exact design with dark background and proper styling */
.cta-section {
  background: linear-gradient(rgba(39, 40, 44, 0.85), rgba(39, 40, 44, 0.85)),
    url("/placeholder.svg?height=400&width=1200") center / cover;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.cta-content h2 {
  font-family: "Tenor Sans", serif;
  font-size: 3rem;
  margin-bottom: 25px;
  color: #31487a;
  font-weight: 400;
  line-height: 1.2;
}

.cta-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: white;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-2px);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
}

/* Footer */
/* Completely updated footer to match exact design with proper sections and styling */
.footer {
  background: #000000;
  color: var(--white);
  padding: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  padding: 60px 0;
  align-items: start;
}

.footer-logo-section {
  display: flex;
  justify-content: flex-start;
}

.footer-logo h3 {
  font-family: "Tenor Sans", serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 400;
}

.footer-logo p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: white;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-areas-section h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #31487a;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-areas-section ul {
  list-style: none;
  padding: 0;
}

.footer-areas-section ul li {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 15px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-institutional-section h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #31487a;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-institutional-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.footer-institutional-section ul li {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 15px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-btn {
  background: #31487a;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-block;
  margin-bottom: 30px;
}

.footer-contact-btn:hover {
  background: #1e2e4f;
  transform: translateY(-2px);
}

.footer-social h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #31487a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-link {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
}

.social-link:hover {
  color: #31487a;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 30px 0;
  text-align: center;
  background: #000000;
}

.footer-bottom p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: white;
  opacity: 0.6;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-credit {
  margin-top: 10px !important;
  font-size: 0.7rem !important;
  opacity: 0.4 !important;
}

/* Mobile bottom navigation styles */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  justify-content: space-around;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(169, 141, 94, 0.2);
  z-index: 1000;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  transition: color 0.3s;
  padding: 8px 12px;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  color: var(--primary-gold);
}

.mobile-nav-item svg {
  margin-bottom: 4px;
}

.mobile-nav-item span {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Header styling */
.header {
  background: var(--dark-bg);
  color: var(--white);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Tenor Sans", serif;
  font-size: 28px;
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 400;
}

.logo-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: var(--white);
  display: block;
  margin-top: -5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-gold);
}

.dropdown-arrow {
  margin-left: 5px;
  font-size: 12px;
}

.contact-btn {
  background: transparent;
  color: var(--primary-gold);
  padding: 12px 24px;
  border: 2px solid var(--primary-gold);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: var(--primary-gold);
  color: var(--white);
}

/* Hero section */
/* Updated hero section to support video background with opacity overlay */
.hero {
  position: relative;
  color: var(--white);
  padding: 120px 0 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Tenor Sans", serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--primary-gold);
  font-weight: 400;
}

.hero-text .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-text .specialization {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 400;
}

.hero-text .specialization-item {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-btn {
  background: var(--primary-gold);
  color: var(--white);
  padding: 15px 35px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: background 0.3s;
  display: inline-block;
}

.hero-cta-btn:hover {
  background: var(--secondary-gold);
}

.hero-image {
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: 700px;
  border-radius: 0;
}

/* Adding complete CSS styles for the entire website */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #31487a;
  --secondary-gold: #8fb3e2;
  --light-gold: #d9e1f1;
  --cream: #8fb3e2;
  --dark-bg: #192338;
  --darker-bg: #1e2e4f;
  --white: #ffffff;
  --text-dark: #333333;
  --black: #000000;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced mobile responsiveness for all sections */
@media (max-width: 768px) {
  /* Center logo on mobile and hide desktop navigation */
  .nav {
    justify-content: center;
    position: relative;
    padding: 15px 20px;
  }

  .nav-menu {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  .logo {
    text-align: center;
  }

  /* Show bottom navigation only on mobile */
  .mobile-bottom-nav {
    display: flex;
  }

  /* Add padding bottom to body to account for bottom navigation */
  body {
    padding-bottom: 80px;
  }

  /* Improve hero section mobile responsiveness */
  .hero {
    min-height: 70vh;
    margin-top: 80px; /* Account for fixed header height */
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  /* Improved defense section mobile layout */
  .defense-section {
    padding: 60px 20px;
  }

  .defense-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .defense-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Improve areas section mobile responsiveness */
  .areas-section {
    padding: 60px 20px;
  }

  .areas-title h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .areas-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }

  .area-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .featured-card {
    margin: 0 10px;
  }

  .featured-card-overlay {
    padding: 30px 25px;
  }

  .featured-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .featured-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Improved inventory section mobile layout */
  .inventory-section {
    padding: 60px 20px;
  }

  .inventory-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .inventory-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .inventory-text p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Improve about section mobile responsiveness */
  .about-section {
    padding: 60px 20px;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .about-image img {
    width: 100%;
    height: 700px;
    border-radius: 15px;
  }

  .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* Improved service section mobile layout */
  .service-section {
    padding: 60px 20px;
  }

  .service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .service-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .service-form {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .form-group {
    width: 100%;
  }

  .form-group input {
    font-size: 0.9rem;
    padding: 12px 15px;
  }

  /* Improve why choose section mobile responsiveness */
  .why-choose-section {
    padding: 60px 20px;
  }

  .why-choose-content {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .why-choose-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .why-choose-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-choose-card {
    padding: 30px 25px;
  }

  .why-choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .why-choose-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Improve testimonials section mobile responsiveness */
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-title h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .testimonial-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Improved blog section mobile layout */
  .blog-section {
    padding: 60px 20px;
  }

  .blog-header h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .blog-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Improved location section mobile layout */
  .location-section {
    padding: 60px 20px;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .location-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .location-item {
    margin-bottom: 25px;
  }

  .location-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .location-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Improved CTA section mobile layout */
  .cta-section {
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .cta-btn {
    padding: 15px 30px;
    font-size: 0.95rem;
  }

  /* Improve footer mobile responsiveness */
  .footer {
    padding: 60px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo-section h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .footer-logo-section p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .footer-areas-section h4,
  .footer-institutional-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .footer-areas-section ul li,
  .footer-institutional-section ul li {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .footer-contact-btn {
    margin: 20px 0;
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .footer-social h5 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .footer-bottom {
    padding: 20px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .footer-credit {
    font-size: 0.8rem;
  }
}

/* Enhanced mobile styles for smaller screens */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .areas-title h2,
  .about-text h2,
  .why-choose-text h2,
  .defense-content h2,
  .inventory-text h2,
  .service-content h2,
  .location-text h2,
  .cta-content h2 {
    font-size: 1.8rem;
  }

  .testimonials-title h2,
  .blog-header h2 {
    font-size: 1.6rem;
  }

  .mobile-nav-item {
    font-size: 11px;
    padding: 6px 8px;
  }

  .featured-card-overlay {
    padding: 25px 20px;
  }

  .why-choose-card,
  .testimonial-card {
    padding: 25px 20px;
  }

  .service-form .form-group input {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  .blog-card-content {
    padding: 20px 15px;
  }

  .location-item {
    margin-bottom: 20px;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
