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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
  line-height: 1.6;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #0072ff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-menu li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu li a:hover {
  color: #0072ff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #0072ff;
  border-radius: 2px;
  display: block;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 2rem;
    background: #fff;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1.5rem 2rem;
    border-radius: 8px;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

.hero {
  background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
  color: #fff;
  padding: 5rem 0 4rem 0;
  text-align: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #0072ff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: #0072ff;
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.services {
  background: #f7f9fb;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  font-size: 2rem;
  color: #0a174e;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.services-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 250px;
  max-width: 320px;
  min-width: 220px;
  margin: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(255,45,45,0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #0a174e;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  color: #444;
}

@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    max-width: 90%;
  }
}

.about {
  background: #fff;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2rem;
  color: #0a174e;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 2rem;
}

.about-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
}

.about-highlights li {
  background: #f7f9fb;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #0a174e;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

@media (max-width: 700px) {
  .about-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  .about-highlights li {
    padding: 1rem;
  }
}

.contact {
  background: #f7f9fb;
  padding: 4rem 0 3rem 0;
  text-align: center;
}

.contact-container {
  max-width: 500px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2rem;
  color: #0a174e;
  margin-bottom: 2rem;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  resize: none;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ff2d2d;
  outline: none;
}

.contact-form button {
  align-self: flex-end;
}

.footer {
  background: #0a174e;
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer span {
  font-size: 1rem;
  opacity: 0.85;
}

/* Header Styles */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.header-left:hover {
  opacity: 0.8;
}
.logo-svg {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0a174e;
  letter-spacing: 1px;
}
.logo-tagline {
  font-size: 0.85rem;
  color: #666;
}
.main-nav { 
  margin-left: auto;
  margin-right: 1.25rem;
}
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: 0;
}
.main-nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap; /* keep ABOUT US / CONTACT US on one line */
  transition: color 0.2s;
}
/* Dropdown Menu Styles */
.dropdown { 
  position: relative; 
  display: inline-block;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0 0 0.5rem 0;
  margin-top: 1.5rem;
  list-style: none;
  border: 1px solid #e0e0e0;
  display: block;
  flex-direction: column;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}




.dropdown-toggle:hover {
  background: linear-gradient(45deg, #ff2d2d, #0a174e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  list-style: none;
  flex: none;
  float: none;
}

.dropdown-menu li:first-child a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.6rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
  border-top: 2px solid #ff8c00;
  white-space: nowrap;
}

.dropdown-menu li:not(:first-child) a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.6rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: #f8f9fa;
  color: #ff2d2d;
  padding-left: 1.2rem;
}

.main-nav ul li:not(.dropdown) a:hover {
  background: linear-gradient(45deg, #ff2d2d, #0a174e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding-left: 0.75rem;
}
.header-actions::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: #ddd;
}
.enquiry-btn {
  background: none;
  border: 2px solid #ff2d2d;
  color: #ff2d2d;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.enquiry-btn:hover {
  background: #ff2d2d;
  color: #fff;
}
.enquiry-icon {
  font-size: 1.3rem;
}
.explore-menu {
  font-size: 1.1rem;
  color: #222;
  cursor: pointer;
  display: none; /* desktop: hidden */
  align-items: center;
  gap: 0.3rem;
}

/* Main Layout */
.main-content {
  display: flex;
  flex-direction: row;
  min-height: 80vh;
  background: none !important;
}

/* Sidebar Styles */
.sidebar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  background: linear-gradient(135deg, rgba(10, 23, 78, 0.85) 0%, rgba(10, 23, 78, 0.75) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 1.5rem 2rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .sidebar {
    background: linear-gradient(135deg, rgba(10, 23, 78, 0.7) 0%, rgba(10, 23, 78, 0.6) 100%);
  }
}
.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}
.sidebar-feature {
  position: relative;
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid transparent;
}
.sidebar-feature:hover {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: #ff2d2d;
  transform: translateX(5px);
}
.sidebar-feature a { display: contents; color: inherit; text-decoration: none; }
.sidebar-feature .sidebar-icon {
  font-size: 2.1rem;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-right: 0.7rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.sidebar-feature .sidebar-icon.animated {
  animation: gently-breathe 2.4s ease-in-out infinite;
}
@keyframes gently-breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25)); }
}
.sidebar-feature .sidebar-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sidebar-feature .sidebar-title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.sidebar-feature .sidebar-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: normal;
  margin-left: 0;
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 0.15rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.sidebar-feature:not(:last-child)::after {
  display: none;
}
.sidebar-feature-active,
.sidebar-feature-active .sidebar-icon,
.sidebar-feature-active .sidebar-sub {
  color: #ff4d00 !important;
}
.sidebar-feature:hover .sidebar-icon,
.sidebar-feature:hover .sidebar-title {
  color: #ffd700 !important;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5)) !important;
}
.sidebar-feature:hover .sidebar-sub {
  color: rgba(255, 255, 255, 1) !important;
}
.sidebar ul li:not(:last-child)::after {
  display: none;
}
.sidebar-icon {
  font-size: 2.1rem;
  margin-right: 1rem;
  vertical-align: middle;
  filter: none;
  color: #fff;
}
.sidebar-sub {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  font-weight: normal;
  margin-left: 2.8rem;
  opacity: 0.95;
  text-shadow: none;
}
/* Floating call button */
.sidebar-call-btn {
  position: absolute;
  left: 10px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  background: #ffd600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  z-index: 20;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s;
}
.sidebar-call-btn:hover {
  background: #ffe066;
}
.sidebar-call-btn svg {
  width: 28px;
  height: 28px;
  fill: #222;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-overlay {
    background: rgba(0,0,0,0.1);
  }
}
.hero-phone-img {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-img img {
  width: 350px;
  max-width: 90vw;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg-slider .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.hero-bg-slider .hero-bg.active {
  opacity: 1;
  z-index: 2;
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  z-index: 1001;
  display: flex;
  gap: 10px;
  background: none;
  box-shadow: none;
}
.hero-slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #000;
  opacity: 0.7;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, background 0.3s;
}
.hero-slider-dots .dot.active {
  opacity: 1;
  background: #fff;
}
.hero-slider-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: rgba(10,23,78,0.08);
  z-index: 20;
  overflow: hidden;
}
.hero-slider-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff2d2d 0%, #0a174e 100%);
  transition: width 0.3s linear;
}
.whatsapp-fab {
  position: fixed !important;
  left: 32px !important;
  bottom: 32px !important;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 999999999 !important;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: whatsapp-fab-up 0.7s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: auto !important;
}
.whatsapp-fab img {
  width: 36px;
  height: 36px;
}
.whatsapp-fab:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}
@keyframes whatsapp-fab-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.down-arrow-fab {
  position: fixed !important;
  right: 32px !important;
  bottom: 32px !important;
  width: 72px;
  height: 72px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 999999998 !important; /* just below WhatsApp but still above everything */
  cursor: pointer;
  animation: arrow-bounce 1.2s infinite;
  pointer-events: auto !important;
}
@media (max-width: 768px) {
  .whatsapp-fab {
    left: 16px !important;
    bottom: 16px !important;
    width: 56px !important;
    height: 56px !important;
    z-index: 999999999 !important;
  }
  .whatsapp-fab img {
    width: 30px;
    height: 30px;
  }
  .down-arrow-fab {
    right: 16px !important;
    bottom: 16px !important;
    width: 60px !important;
    height: 60px !important;
    z-index: 999999998 !important;
  }
  .down-arrow-fab svg {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 480px) {
  .whatsapp-fab {
    left: 12px !important;
    bottom: 12px !important;
    width: 52px !important;
    height: 52px !important;
  }
  .whatsapp-fab img {
    width: 28px;
    height: 28px;
  }
  .down-arrow-fab {
    right: 12px !important;
    bottom: 12px !important;
    width: 56px !important;
    height: 56px !important;
  }
  .down-arrow-fab svg {
    width: 44px;
    height: 44px;
  }
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}
.down-arrow-fab svg {
  width: 56px;
  height: 56px;
  display: block;
}
.hero-bottom-fade {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, #fff 80%, transparent 100%);
  z-index: 21;
  pointer-events: none;
}
.down-arrow-fab.up svg path {
  transform: rotate(180deg);
  transform-origin: 28px 28px;
}
#scroll-fab { cursor: pointer; }

/* Responsive */
@media (max-width: 1100px) {
  .main-content {
    flex-direction: column;
  }
  .hero-section {
    position: relative;
  }
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
    padding: 1rem 0.5rem;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(10, 23, 78, 0.85) 0%, rgba(10, 23, 78, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
  }
  .sidebar ul {
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .sidebar-feature {
    flex: 1 1 auto;
    min-width: 200px;
    max-width: 280px;
  }
  .sidebar-sub {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .sidebar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0.4rem 0.5rem 0.2rem !important;
  }
  .sidebar ul {
    gap: 0.25rem !important;
  }
  .sidebar-feature {
    margin-bottom: 0.25rem !important;
    padding: 0.5rem 0.7rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 50vh;
    padding-bottom: 60px;
  }
  .hero-bg-slider {
    z-index: 1 !important;
  }
  .hero-bg-slider .hero-bg {
    z-index: 1 !important;
  }
  .hero-bg-slider .hero-bg.active {
    z-index: 2 !important;
    opacity: 1 !important;
  }
  .sidebar {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0.5rem 0.5rem 0.3rem !important;
    margin-top: 0 !important;
  }
  .sidebar ul {
    gap: 0.3rem !important;
    padding: 0 !important;
  }
  .sidebar-feature {
    margin-bottom: 0.3rem !important;
    padding: 0.6rem 0.8rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
  }
  .hero-slider-dots {
    bottom: 20px !important;
  }
}
@media (max-width: 700px) {
  .main-header {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0.5rem;
  }
  .header-left {
    width: 100%;
    justify-content: center;
  }
  .logo-title {
    font-size: 1.2rem;
  }
  .logo-tagline {
    font-size: 0.75rem;
  }
  .main-nav ul {
    gap: 1rem;
  }
  .header-actions {
    gap: 0.7rem;
    width: 100%;
    justify-content: center;
  }
  .hero-phone-img img {
    width: 220px;
  }
  /* Mobile-only Explore menu button */
  .explore-menu { display: inline-flex; }
  /* Collapse nav by default on mobile */
  .main-nav { width: 100%; }
  .main-nav ul { display: none; flex-direction: column; padding: 0.5rem 0; }
  .main-nav.open ul { display: flex; }
  .main-nav ul li a { padding: 0.5rem 0; }
  .enquiry-btn {
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
  }
}
@media (max-width: 480px) {
  .main-header {
    padding: 0.5rem 0.25rem;
  }
  .logo-svg {
    width: 50px;
    height: 50px;
  }
  .logo-title {
    font-size: 1rem;
  }
  .logo-tagline {
    font-size: 0.7rem;
  }
  .enquiry-btn {
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
  }
  .enquiry-icon {
    font-size: 1.1rem;
  }
}

.map-animate-container {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  animation: fadeInMap 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
.contact-map {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  border-radius: 18px;
}
@keyframes fadeInMap {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 700px) {
  .map-animate-container {
    max-width: 98vw;
  }
  .contact-map {
    height: 200px;
  }
}

.products {
  background: #fff;
  padding: 4rem 0 3rem 0;
  text-align: center;
}
.products-container {
  max-width: 1300px;
  margin: 0 auto;
}
.products h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}
.product-card {
  --product-bg: none;
  display: block;
  width: 100%;
  max-width: 370px;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111; /* fallback */
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.28); }
.product-card::before { content: ""; position: absolute; inset: 0; background-image: var(--product-bg); background-size: cover; background-position: center; filter: none; transform: scale(1.02); transition: transform .45s ease; }
.product-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55)); transition: opacity .3s ease; }
.product-card:hover::before { transform: scale(1.06); }

.product-title { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.2rem; display:flex; justify-content:center; }
.product-card .product-title span { display:inline-block; color:#ffffff; font-size:1.35rem; font-weight:800; letter-spacing:.2px; padding:.2rem .4rem; border-radius:8px; text-shadow: 0 2px 10px rgba(0,0,0,.55); transition: color .2s ease; }
.product-card:hover .product-title span { color:#ff7a00; }
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .products {
    padding: 2rem 0.5rem;
  }
  .products h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  .product-card {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .products h2 {
    font-size: 1.75rem;
  }
  .products-grid {
    gap: 1rem;
  }
}

/* Page hero with rack image */
.page-hero { position: relative; height: 260px; background-size: cover; background-position: center; display:flex; align-items:center; justify-content:center; }
.page-hero-overlay { position:absolute; inset:0; background: rgba(10,23,78,0.35); }
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: #fff; font-size: 2.2rem; letter-spacing: .5px; text-shadow: 0 2px 6px rgba(0,0,0,0.35); }
/* Product detail layout */
.product-detail-container { max-width: 1200px; margin: 0 auto; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
.detail-media { background:#fff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 22px rgba(0,0,0,0.08); padding: 1.25rem; }
.detail-media img { width: 100%; height: 100%; max-height: 520px; object-fit: contain; background:#fff; display:block; }
.detail-info h2 { font-size: 1.9rem; color:#0a174e; margin: 0 0 .5rem 0; }
.detail-category { color:#ff2d2d; font-weight:700; margin-bottom:.5rem; }
.detail-short { font-size:1.05rem; color:#333; margin-bottom:1rem; }
.detail-specs h3 { margin-top:1rem; }
.detail-specs ul { padding-left: 1.2rem; }
.detail-specs li { margin: .35rem 0; }

/* CTA buttons (rounded red with arrow) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.2rem;
  background: #ff2d2d;
  color: #fff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255,45,45,0.28);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-cta:hover { background: #f1351f; transform: translateY(-1px); box-shadow: 0 14px 28px rgba(255,45,45,0.34); }
.btn-cta .arrow { font-weight: 900; margin-left: 4px; }

.detail-actions { display: flex; gap: 0.8rem; margin-top: 1rem; }

@media (max-width: 900px) {
  .product-detail-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
  .product-detail-container {
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .product-detail-container {
    padding: 0 0.5rem;
  }
  .detail-info h2 {
    font-size: 1.5rem;
  }
  .detail-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

/* MEP section (replaces home services/products) */
.mep-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
}
.mep-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.mep-eyebrow {
  color: #ff2d2d;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .25rem;
}
.mep-section h2 {
  font-size: 2rem;
  color: #0a174e;
  margin-bottom: .75rem;
  font-weight: 700;
}
.mep-intro {
  color: #555;
  max-width: 900px;
  margin-bottom: 1.8rem;
}
.mep-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2rem;
}
.mep-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform .2s, box-shadow .2s;
}
.mep-card:hover { transform: translateY(-6px); box-shadow: 0 6px 24px rgba(255,45,45,.15); }
.mep-card-icon { font-size: 2.2rem; line-height: 1; }
.mep-card-body h3 { color: #0a174e; font-size: 1.25rem; margin-bottom: .5rem; }
.mep-card-body p { color: #444; }
.mep-link { display: inline-block; margin-top: .9rem; color: #ff2d2d; text-decoration: none; font-weight: 600; }
.mep-link span { margin-left: .25rem; }
@media (max-width: 900px) { 
  .mep-section {
    padding: 2rem 0.5rem;
  }
  .mep-container {
    padding: 0 0.5rem;
  }
  .mep-section h2 {
    font-size: 1.75rem;
  }
  .mep-cards { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .mep-section h2 {
    font-size: 1.5rem;
  }
  .mep-card {
    padding: 1.25rem 1rem;
  }
  .mep-card-body h3 {
    font-size: 1.1rem;
  }
}

/* Happy customers marquee */
.happy-customers { background: #f7f9fb; padding: 3rem 0; }
.happy-customers h2 { text-align: center; font-size: 2rem; color: #0a174e; margin-bottom: 1.5rem; font-weight: 700; }
.logos-slider { max-width: 1200px; margin: 0 auto; }
.logos-viewport { overflow: hidden; position: relative; }
.logos-track { display: flex; align-items: center; gap: 1.5rem; transition: transform .6s ease; }
.logo-item { flex: 0 0 calc((100% - (1.5rem * 4)) / 5); display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid #e6ebf2; border-radius: 12px; height: 130px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.logo-item img { max-height: 92px; max-width: 92%; width: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; filter: contrast(1.3) saturate(1.2) brightness(1.1); }
.logos-dots { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.logos-dots .dot { width: 28px; height: 6px; border-radius: 6px; background: #d6d6d6; transition: background .25s, width .25s; }
.logos-dots .dot.active { background: #ff2d2d; width: 40px; }
@media (max-width: 1000px) { 
  .logo-item { 
    flex-basis: calc((100% - (1.5rem * 3)) / 4); 
  } 
}
@media (max-width: 700px) { 
  .happy-customers {
    padding: 2rem 0.5rem;
  }
  .happy-customers h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .logo-item { 
    flex-basis: calc((100% - (1.5rem * 1)) / 2); 
    height: 100px;
  }
  .logo-item img {
    max-height: 70px;
  }
}
@media (max-width: 480px) {
  .happy-customers h2 {
    font-size: 1.5rem;
  }
  .logo-item {
    height: 90px;
  }
  .logo-item img {
    max-height: 60px;
  }
}

.contact-page-container {
    max-width: 900px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem 2.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}
.contact-info {
    flex: 1 1 320px;
    min-width: 280px;
}
.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0a174e;
}
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #222;
}
.contact-info a {
    color: #ff2d2d;
    text-decoration: none;
    word-break: break-all;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-map-container {
    flex: 1 1 340px;
    min-width: 280px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    animation: fadeInMap 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
.contact-map {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
}
@keyframes fadeInMap {
    from { opacity: 0; transform: translateY(40px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
    .contact-page-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.2rem 0.5rem;
    }
    .contact-map {
        height: 220px;
    }
}

.site-info-section {
  background: #f7f9fb;
  padding: 3rem 0 2rem 0;
  border-top: 1px solid #e0e7ef;
}
.site-info-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-info-block {
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 1.5rem;
}
.site-info-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a174e; /* dark blue */
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  border-left: 4px solid #ff2d2d; /* red accent */
  padding-left: 0.5rem;
}
.site-info-block p {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.site-info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-info-block ul li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #222;
}
.site-info-block ul li a {
  color: #0a174e;
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 500;
}
.site-info-block ul li a:hover {
  color: #ff2d2d;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .site-info-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .site-info-block {
    min-width: 0;
  }
}

.unified-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
  margin: 3rem auto;
  max-width: 1100px;
}
.unified-contact .contact-info {
  flex: 2 1 340px;
  min-width: 280px;
}
.unified-info-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.unified-info-row .site-info-block {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  flex: 1 1 180px;
  min-width: 160px;
}
.compact-map {
  flex: 1 1 260px;
  min-width: 200px;
  max-width: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  animation: fadeInMap 1.2s cubic-bezier(.68,-0.55,.27,1.55);
  margin: 0 auto;
}
.compact-map .contact-map {
  width: 100%;
  height: 180px;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .unified-contact {
    flex-direction: column;
    gap: 2rem;
    padding: 1.2rem 0.5rem;
  }
  .unified-info-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  .compact-map {
    max-width: 98vw;
  }
  .compact-map .contact-map {
    height: 140px;
  }
}

.contact-info-grid {
  background: #ff2d2d;
  padding: 2rem 0 3rem 0;
}
.info-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.info-col {
  position: relative;
  padding: 0 1rem;
}
.info-col + .info-col {
  border-left: 1px solid rgba(255,255,255,0.2);
}
.info-col h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.accent-lines {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 1rem;
}
.accent-lines i:first-child {
  width: 14px; height: 4px; background: #fff; display: inline-block; border-radius: 2px;
}
.accent-lines i:last-child {
  width: 34px; height: 4px; background: #fff; display: inline-block; border-radius: 2px;
}
.info-about p {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.btn-read-more {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #ff2d2d;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn-read-more::after {
  content: ' →';
  margin-left: 0.3rem;
}
.btn-read-more:hover {
  background: #f0f0f0;
  color: #e82626;
}
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.icon-list li {
  position: relative;
  padding-left: 20px;
  color: #fff;
}
.icon-list li::before {
  content: '\203A';
  position: absolute;
  left: 0; top: 0;
  color: #fff;
}
.icon-list a { color: #fff; text-decoration: none; }
.icon-list a:hover { text-decoration: underline; color: #f0f0f0; }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list a { color: #fff; text-decoration: none; }
.contact-list a:hover { color: #f0f0f0; text-decoration: underline; }
.ci { width: 20px; height: 20px; display: inline-block; margin-top: 2px; flex-shrink: 0; }
.ci-phone { background: linear-gradient(0deg, #fff 0%, #fff 100%); -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.07 21 3 13.93 3 5a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.24 1.01l-2.2 2.2z"/></svg>') center/contain no-repeat; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.07 21 3 13.93 3 5a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.24 1.01l-2.2 2.2z"/></svg>') center/contain no-repeat; }
.ci-mail { background: linear-gradient(0deg, #fff 0%, #fff 100%); -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>') center/contain no-repeat; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>') center/contain no-repeat; }
.ci-map { background: linear-gradient(0deg, #fff 0%, #fff 100%); -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z"/></svg>') center/contain no-repeat; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 00-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 00-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z"/></svg>') center/contain no-repeat; width: 20px; height: 20px; }

@media (max-width: 1000px) {
  .info-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem;
    padding: 0 1rem;
  }
}
@media (max-width: 700px) {
  .contact-info-grid {
    padding: 2rem 0;
  }
  .info-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  .info-col {
    padding: 0 0.5rem;
  }
  .info-col + .info-col { 
    border-left: none; 
    border-top: 1px solid rgba(255,255,255,0.2); 
    padding-top: 1.2rem; 
  }
  .info-col h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .info-col h3 {
    font-size: 1.1rem;
  }
  .icon-list li, .contact-list li {
    font-size: 0.95rem;
  }
}

/* Vision & Mission Section */
.vision-mission {
  background: #fff; /* match About section light background */
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.vision-mission::before { display: none; }

/* Ensure no child in Vision & Mission creates a higher stacking context above the arrow */
/* Remove any local stacking contexts inside the cards */
.vision-mission * { position: relative; z-index: auto; }

.vision-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch; /* make cards equal height */
}

.vision-card, .mission-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: slideInUp 0.8s ease-out;
  height: 100%; /* equalize heights within grid */
  display: flex;
  flex-direction: column;
}

.vision-card {
  animation-delay: 0.2s;
}

.mission-card {
  animation-delay: 0.4s;
}

.vision-card::before, .mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff2d2d 0%, #0a174e 100%);
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255,45,45,0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.vision-icon {
  background: linear-gradient(135deg, #ff2d2d 0%, #ff6b6b 100%);
  color: #fff;
}

.mission-icon {
  background: linear-gradient(135deg, #0a174e 0%, #1e3a8a 100%);
  color: #fff;
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: rotate 3s linear infinite;
  z-index: -1;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a174e;
  margin: 0;
  position: relative;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff2d2d, #0a174e);
  border-radius: 2px;
  animation: expandWidth 1s ease-out 0.5s both;
}

.card-content {
  position: relative;
  margin-top: auto; /* push content to use space evenly */
}

.card-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  position: relative;
}

.highlight {
  background: linear-gradient(120deg, #ff2d2d 0%, #0a174e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff2d2d, #0a174e);
  opacity: 0.3;
  animation: underlineGlow 2s ease-in-out infinite;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 50px;
  }
}

@keyframes underlineGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vision-card, .mission-card {
    padding: 2rem;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .vision-mission {
    padding: 3rem 0;
  }
  
  .vision-card, .mission-card {
    padding: 1.5rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .card-content p {
    font-size: 1rem;
  }
}
