* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #003f7f;
  --secondary: #09b909;
  --accent: #09b909;
  --light: #f5f5f5;
  --border: #ccc;
  --text: #333;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

nav {
  background: var(--primary);
  border-bottom: 3px solid var(--secondary);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  position: relative;
}

.logo {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  background: none;
  border: none;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--primary);
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-title {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
  list-style: none;
  padding: 1rem 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
}

.mobile-nav-links a::before {
  content: "→";
  margin-right: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a.active::before {
  opacity: 1;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.page {
  display: none;
  min-height: 100vh;
  padding: 90px 0 2rem;
}

.page.active {
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  background: linear-gradient(135deg, var(--primary), #94eba2);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  border-bottom: 4px solid var(--secondary);
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.image-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid var(--border);
  background: white;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f8f9fa;
}

.slide:nth-child(1) {
  background: linear-gradient(45deg, #e3f2fd, #bbdefb);
}
.slide:nth-child(2) {
  background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
}
.slide:nth-child(3) {
  background: linear-gradient(45deg, #fff3e0, #ffe0b2);
}

.slide-content {
  text-align: center;
  padding: 2rem;
  color: var(--text);
}

.slide-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.slide-content p {
  font-size: 1rem;
}

.slider-dots {
  text-align: center;
  margin-top: 1rem;
  background: white;
  padding: 0.5rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--primary);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin: 3rem 0 2rem;
  text-align: center;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 1rem;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 63, 127, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--primary));
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 63, 127, 0.2);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-top: 50px solid rgba(220, 20, 60, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover::after {
  border-left: 80px solid transparent;
  border-top: 80px solid rgba(220, 20, 60, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  padding-bottom: 0.5rem;
}

.service-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transition: width 0.4s ease;
}

.service-card:hover h3::after {
  width: 60px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  position: relative;
  z-index: 2;
}

.service-card[data-category="eia"]::before {
  background: linear-gradient(90deg, #28a745, #20c997);
}

.service-card[data-category="iee"]::before {
  background: linear-gradient(90deg, #007bff, #6610f2);
}

.service-card[data-category="research"]::before {
  background: linear-gradient(90deg, #fd7e14, #dc3545);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid .service-card {
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
}

/* Team Section Styles */
#team .container {
  max-width: 1200px;
}

.executive-team-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 2rem auto 3rem auto;
  padding: 1rem;
  max-width: 700px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  padding: 1rem;
}

.team-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 63, 127, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 63, 127, 0.1);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 63, 127, 0.15);
}

.team-card.executive {
  border: 2px solid #d4a017;
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.team-card.executive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a017, #b8860b);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 63, 127, 0.2);
  transition: all 0.3s ease;
}

.team-card.executive .team-avatar {
  border-color: #d4a017;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 63, 127, 0.3);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  color: var(--primary);
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.team-card.executive h3 {
  color: #b8860b;
  font-weight: 700;
}

.designation {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  opacity: 0.8;
}

.team-card.executive .designation {
  color: #b8860b;
  font-weight: 600;
}

.sub-designation {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0.3rem 0 0 0;
  opacity: 0.8;
}

.team-card.executive .sub-designation {
  color: #b8860b;
  font-weight: 600;
}

.contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: linear-gradient(135deg, #003f7f, #004a99);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 63, 127, 0.3);
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.contact-icon {
  font-size: 1.5rem;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.contact-content {
  flex: 1;
}

.contact-content h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-content p {
  margin: 0;
  opacity: 0.95;
  line-height: 1.4;
  font-size: 0.95rem;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.phone-item,
.email-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 0.5rem 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-item span,
.email-item span {
  font-weight: normal;
  font-size: 0.95rem;
}

.call-btn,
.email-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: normal;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
}

.call-btn:hover,
.email-btn:hover {
  background: #218838;
  transform: none;
  box-shadow: none;
}

.map-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-header {
  padding: 1.5rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.map-header h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;
}

.map-header p {
  color: #6c757d;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: normal;
}

.directions-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: normal;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
}

.directions-btn:hover {
  background: #0056b3;
  transform: none;
  box-shadow: none;
}

.map-frame {
  width: 100%;
  height: 400px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.stats-section {
  background: var(--light);
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 0.5rem;
}

#about .container {
  max-width: 900px;
}

#about .section-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin: 2rem 0 2.5rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.8rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.3px;
}

#about p:first-of-type {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 500;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  margin-bottom: 2.5rem;
}

#about h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin: 2.5rem 0 1.2rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

#about h3 {
  color: var(--text);
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

#about ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

#about ul li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

#about ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}

#about .highlight-box {
  background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
  padding: 1.8rem;
  border-radius: 15px;
  border-left: 5px solid var(--accent);
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#about .highlight-box p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--primary);
  font-size: 1.1rem;
}

#about strong {
  color: var(--primary);
  font-weight: 600;
}

#about .text-center {
  text-align: center;
}

footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 2rem 0 0.5rem 0;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: #3498db;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.4rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.2rem 0;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: #3498db;
  text-decoration: underline;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-weight: 600;
  color: #3498db;
  font-size: 0.8rem;
}

.footer-phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-left: 0.8rem;
}

.footer-phone-list span {
  font-size: 0.8rem;
  color: #ecf0f1;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #34495e;
  margin-top: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: #bdc3c7;
  font-size: 0.75rem;
}

/* Enhanced Mobile Responsive Styles */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
  .executive-team-row {
    gap: 2rem;
    max-width: 600px;
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .contact-modern-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .nav-container {
    padding: 0.8rem 1.5rem;
  }
}

/* Standard Tablets (768px and below) */
@media (max-width: 768px) {
  .executive-team-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .nav-container {
    padding: 0.8rem 1rem;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  .logo img {
    width: 35px;
    height: 35px;
  }
  
  .hero {
    padding: 2.5rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 2.5rem 0 1.5rem;
  }
  
  .stats-grid {
    gap: 2rem;
    flex-direction: column;
  }
  
  .stat-item {
    padding: 0.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .slide {
    height: 280px;
  }
  
  .slide-content {
    padding: 1.5rem;
  }
  
  .slide-content h3 {
    font-size: 1.3rem;
  }
  
  .slide-content p {
    font-size: 0.95rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    font-size: 3rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 0.5rem;
  }
  
  .team-card {
    padding: 1.5rem 1rem;
  }
  
  .team-avatar {
    width: 80px;
    height: 80px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  footer {
    padding: 1.5rem 0 0.5rem 0;
  }
  
  /* Enhanced Mobile Contact Section */
  .contact-modern-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 1.8rem 1.2rem;
    border-radius: 15px;
  }
  
  .contact-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-detail {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  
  .contact-icon {
    display: block;
    font-size: 2rem;
    margin: 0 auto 0.8rem;
    text-align: center;
  }
  
  .contact-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .contact-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  
  .phone-numbers {
    gap: 1rem;
  }
  
  .phone-item,
  .email-item {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: none;
    margin-bottom: 0.8rem;
    text-align: center;
  }
  
  .phone-item span,
  .email-item span {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  
  .call-btn,
  .email-btn {
    display: inline-block;
    background: #28a745;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  }
  
  .call-btn:hover,
  .email-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  }
  
  .map-frame {
    height: 300px;
  }
  
  .map-header {
    padding: 1.2rem;
  }
  
  .map-header h4 {
    font-size: 1.1rem;
  }
  
  .map-header p {
    font-size: 0.85rem;
  }
  
  /* About Page Responsive */
  #about .section-title {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
  }
  
  #about p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  #about p:first-of-type {
    font-size: 1.1rem;
    padding: 1.2rem;
  }
  
  #about h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
  }
  
  #about h3 {
    font-size: 1.2rem;
  }
  
  #about ul li {
    font-size: 1rem;
  }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .executive-team-row {
    gap: 1rem;
  }
  
  .page {
    padding: 80px 0 1.5rem;
  }
  
  .nav-container {
    padding: 0.6rem 0.8rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo img {
    width: 30px;
    height: 30px;
  }
  
  .hero {
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .slide {
    height: 220px;
  }
  
  .slide-content {
    padding: 1rem;
  }
  
  .slide-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 1.2rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin: 2rem 0 1.2rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .team-card {
    padding: 1.2rem 1rem;
  }
  
  .team-avatar {
    width: 70px;
    height: 70px;
  }
  
  .team-card h3 {
    font-size: 1.1rem;
  }
  
  .designation,
  .sub-designation {
    font-size: 0.8rem;
  }
  
  .mobile-nav {
    width: 100%;
    right: -100%;
  }
  
  .container {
    padding: 0 0.8rem;
  }
  
  .stats-grid {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  /* Enhanced Mobile Contact for Small Screens */
  .contact-card {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }
  
  .contact-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  
  .contact-detail {
    margin-bottom: 1.5rem;
    padding: 0.8rem 0;
  }
  
  .contact-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
  
  .contact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .contact-content p {
    font-size: 0.95rem;
  }
  
  .phone-item,
  .email-item {
    padding: 0.8rem;
    margin-bottom: 0.6rem;
  }
  
  .phone-item span,
  .email-item span {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
  
  .call-btn,
  .email-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .map-frame {
    height: 250px;
  }
  
  .map-header {
    padding: 1rem;
  }
  
  .map-header h4 {
    font-size: 1rem;
  }
  
  .directions-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  /* About Page Small Mobile */
  #about .section-title {
    font-size: 1.4rem;
    margin: 1.5rem 0 1.2rem;
  }
  
  #about p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  #about p:first-of-type {
    font-size: 1rem;
    padding: 1rem;
  }
  
  #about h2 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
  }
  
  #about h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
  }
  
  #about ul li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
  
  #about .highlight-box {
    padding: 1.2rem;
    margin: 1.5rem 0;
  }
  
  #about .highlight-box p {
    font-size: 1rem;
  }
  
  .footer-content {
    padding: 0 1rem;
    gap: 1.2rem;
  }
  
  .footer-section h4 {
    font-size: 0.9rem;
  }
  
  .footer-links a {
    font-size: 0.75rem;
  }
  
  .footer-phone-list span {
    font-size: 0.75rem;
  }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
  .nav-container {
    padding: 0.5rem;
  }
  
  .logo {
    font-size: 0.9rem;
  }
  
  .logo img {
    width: 28px;
    height: 28px;
  }
  
  .hero {
    padding: 1.5rem 0.8rem;
  }
  
  .hero h1 {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .container {
    padding: 0 0.5rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .team-card {
    padding: 1rem;
  }
  
  .contact-card {
    padding: 1.2rem 0.8rem;
  }
  
  .mobile-menu-toggle span {
    width: 22px;
  }
}