/* Global */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #222;
  -webkit-font-smoothing:antialiased;
  overflow-x: hidden;
  padding-top: 70px;
}
.body-about { background-color: #f4f6f8; color: #333; }

/* Header / Navbar */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #fff;
  color: #0a2a49;
  height: 70px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  transform: translateZ(0);
}
header.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.logo { display:flex; align-items:center; gap:10px; height: 100%; }
.logo img { height: 75px; width:auto; display:block; transition: none; }
.logo img:hover { transform: none; }
.logo h1 { font-size:1.1rem; letter-spacing:0.5px; margin:0; font-weight:600; color:#0a2a49; text-transform: uppercase; }
nav ul { list-style:none; display:flex; gap:26px; align-items:center; margin:0; }
nav a { color:#0a2a49; text-decoration:none; font-weight:500; transition:color .2s; }
nav a:hover { color:#00aaff; }

/* Burger Menu */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: #0a2a49; margin: 5px; transition: all 0.3s ease; }

/* Dropdown Menu */
nav ul li { position: relative; }
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.dropdown-content a {
  display: block;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #00aaff;
  padding-left: 25px;
}
.dropbtn::after { content: ' ▾'; font-size: 0.8em; }

/* Media Queries for Nav */
@media (min-width: 769px) {
  nav ul li:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .burger { display: block; }
  nav ul {
    position: absolute;
    right: 0;
    height: 92vh;
    top: 70px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    padding-top: 30px;
  }
  nav ul.nav-active { transform: translateX(0%); }
  nav ul li { width: 100%; text-align: center; }
  .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
  .toggle .line2 { opacity: 0; }
  .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
  
  .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin-top: 10px;
  }
  nav ul li.active-dropdown .dropdown-content { display: block; }
  .dropdown-content a { 
      padding: 12px 15px; 
      border-bottom: 1px solid rgba(0,0,0,0.05); 
      text-align: center;
      font-size: 0.9rem;
      display: block;
      width: 100%;
  }
  /* Prevent hover shift on mobile */
  .dropdown-content a:hover { padding-left: 15px; background: transparent; color: #00aaff; }
  
  header { padding:0 20px; }
  .logo h1 { display: none; }
  nav ul { gap:15px; font-size:0.85rem; }
}

/* Footer */
footer {
  background-color: #F9F6EE;
  color: #333;
  padding: 8px 10px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  max-width: 800px;
  margin: 0 auto;
}
.footer-logo {
  height: 200px;
  width: auto;
  margin-bottom: 0;
  display: block;
}
.footer-contact, .footer-address {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 20px;
  margin: 10px 0 5px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 10px;
  width: 100%;
  justify-content: center;
}
.footer-social .social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 45px; height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.footer-social .social-icon svg { fill: #333; width: 22px; height: 22px; }
.footer-social .social-icon:hover {
  background: #00aaff;
  border-color: #00aaff;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
}
.footer-social .social-icon:hover svg { fill: #fff; }
.footer-copyright {
  font-size: 0.9rem;
  color: #777;
  border-top: none;
  padding-top: 5px;
  width: 100%;
  margin-top: 0;
}
.footer-links {
  margin-top: 8px;
  width: 100%;
}
.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #00aaff;
}

/* --- NEW INTERACTIVE SLIDER STYLES --- */
.s-slider {
  display: flex;
  height: calc(100vh - 70px); /* Adjust for fixed header */
  width: 100%;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: none;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}
.s-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 3;
}
.s-bg-layer {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}
#bg-back {
  background-size: cover;
  background-position: center;
  z-index: 1;
}
#bg-front {
  z-index: 2;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  left: 0;
  right: auto;
  will-change: opacity;
  transform: translateZ(0);
}
.s-bg-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.main-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 10%;
}
.s-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 450px; /* Increased for 9 items */
  width: 2px;
  background: rgba(255,255,255,0.2);
  margin-right: 50px;
  position: relative;
}
.dot {
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  left: -6px;
  transition: 0.3s;
  z-index: 100;
}
.dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: transparent;
}
.dot:hover { background: #fff; transform: scale(1.2); }
.dot.active { 
  background: #fff; 
  transform: scale(1.5);
  box-shadow: 0 0 15px #fff;
}
.content-container { flex: 1; }
.s-changing-widget h2, 
.s-changing-widget p {
  display: none;
  opacity: 0;
  margin: 0;
  transition: 0.5s;
}
.s-changing-widget .active {
  display: block;
  opacity: 1;
  animation: slideUp 0.6s ease-out forwards;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.s-changing-widget h2 { font-size: 4rem; text-transform: uppercase; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.s-changing-widget p { font-size: 1.1rem; color: #ccc; max-width: 500px; margin-top: 10px !important; }
.visual-container {
  width: 600px;
  height: 500px;
  position: relative;
  flex-shrink: 0;
  margin-right: 0;
}
.visual-wrapper {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
}
.visual-card {
  width: 350px;
  height: 100%;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  box-shadow: none;
  flex-shrink: 0;
  opacity: 0.5;
  transform: scale(0.9) translateZ(0);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  cursor: pointer;
}
.visual-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.visual-card.active {
  opacity: 1;
  transform: scale(1.05) translateZ(0);
  box-shadow: none;
  z-index: 2;
}
.visual-card.hidden {
  opacity: 0;
  transform: scale(0.5) translateX(-150px);
  pointer-events: none;
  transition: all 0.4s ease-out;
}

@media (max-width: 900px) {
  .visual-container { 
      display: block; 
      width: 100%; 
      height: 300px; 
      margin-top: 80px; 
      order: 3; 
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  }
  .visual-wrapper { left: 50%; margin-left: -110px; } /* Center the 220px card */
  .visual-card { width: 220px; height: 100%; }
  .s-changing-widget h2 { font-size: 2.5rem; }
  .main-wrapper { padding: 0 20px; flex-direction: column; justify-content: center; height: 100%; }
  .s-bar { 
    margin-right: 0; 
    flex-direction: row; 
    width: 100%; 
    height: 2px; 
    margin-top: 40px; 
    order: 2;
  }
  .dot { left: auto; top: -6px; }
  .content-container { text-align: center; order: 1; flex: 0; }
  .s-changing-widget p { margin: 15px auto 0 !important; }
  
  /* Ensure content has background on mobile for domain detail page */
  .creative-section, .services, .why-choose, .testimonials, footer {
    position: relative;
    z-index: 2;
    background-color: #fff;
  }

  /* Footer Mobile Structure */
  footer { padding: 2rem 1rem !important; }
  .footer-logo { height: 150px !important; margin-bottom: 1rem !important; }
  .footer-contact { 
      display: flex !important; 
      flex-direction: column !important; 
      gap: 0.5rem !important; 
      font-size: 0.9rem !important;
      line-height: 1.4 !important;
  }
  .footer-contact .contact-sep { display: none !important; }
  .footer-address { margin-top: 0.5rem !important; font-size: 0.9rem !important; }
  .footer-social { margin-top: 1.5rem !important; padding-top: 1rem !important; }
}

/* Horizontal Scroll Section */
.horizontal-scroll-section {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}
.h-scroll-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}
.h-scroll-header h3 {
  font-size: 2.5rem;
  color: #0a2a49;
  margin-bottom: 10px;
  font-weight: 700;
}
.h-scroll-header p {
  color: #666;
  font-size: 1.1rem;
}
.h-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 40px;
  padding: 60px 0;
  align-items: center;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.h-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.h-card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  transition: none;
  cursor: pointer;
  transform: scale(1);
  margin: 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: strict;
}
.h-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
  backface-visibility: hidden;
  transform: translateZ(0);
  pointer-events: none;
}
.h-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 50%;
}
.h-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.h-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.4;
}

.services {
  background: linear-gradient(180deg, #ffffff 0%, #eef4f8 100%);
  padding: 80px 60px;
  text-align:center;
}
.services h3 {
  color:#0a2a49;
  font-size:2.5rem;
  margin-bottom:50px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.services h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #00aaff;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.service-grid {
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  align-items:start;
}
.service {
  background: #fff;
  border-radius:12px;
  padding:30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items: center;
  gap:15px;
  cursor: pointer;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.service img { 
  width:100%; 
  height:180px; 
  object-fit:cover; 
  border-radius: 8px; 
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service h4 { color:#0a2a49; font-size:1.2rem; font-weight: 600; margin:0; }
.service p { font-size: 0.95rem; color: #555; line-height: 1.5; margin: 0; }
.service .know-more { color: #00aaff; font-weight: 600; text-decoration: none; font-size: 0.9rem; margin-top: auto; }
.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.service:hover img {
  transform: scale(1.1);
}

/* About Preview Section */
.about-preview {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}
.about-text { flex: 1; }
.about-text h2 {
  font-size: 3rem;
  color: #0a2a49;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
.about-text h2::after {
  content: ''; display: block; width: 80px; height: 4px; background: #00aaff; margin-top: 10px; border-radius: 2px;
}
.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}
.about-image { flex: 1; position: relative; }
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 20px 20px 0px rgba(0, 170, 255, 0.1);
  transition: transform 0.3s ease;
}
.about-image:hover img { transform: scale(1.02); }
.btn-modern {
  display: inline-block;
  padding: 15px 35px;
  background: #0a2a49;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(10, 42, 73, 0.2);
}
.btn-modern:hover {
  background: #00aaff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 170, 255, 0.3);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2a49 0%, #061b30 100%);
  color: #fff;
  text-align: center;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  padding: 0 20px;
}
.stat-item {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}
.stat-item:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-container { flex-direction: column; text-align: center; }
  .about-text h2::after { margin: 10px auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.why-choose {
  padding: 80px 60px;
  background-color: #f4f6f8;
  text-align: center;
}
.why-choose h3 { color: #0a2a49; font-size: 2.2rem; margin-bottom: 50px; font-weight: 600; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.why-item h4 { color: #0a2a49; font-size: 1.2rem; margin-bottom: 10px; }
.why-item p { color: #555; font-size: 0.95rem; }
.testimonials {
  padding: 80px 60px;
  text-align: center;
  background: #eef4f8;
}
.testimonials h3 {
  color: #0a2a49;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.testimonials h3::after {
  content: ''; display: block; width: 60px; height: 4px; background: #00aaff; margin: 0.5rem auto 0; border-radius: 2px;
}
.testimonial-row {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.testimonial-row::-webkit-scrollbar { display: none; }
.testimonial-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 80px 30px 40px;
  flex: 0 0 350px;
  max-width: 350px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-top: 40px; /* To accommodate the portrait sticking out */
}
.portrait-container {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
}
.portrait-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 75px; /* Half height for semi-circle */
  background-color: #00aaff; /* Theme color */
  border-radius: 150px 150px 0 0;
  z-index: 1;
}
.portrait-img {
  position: absolute;
  top: 15px; /* Spacing from top of arc */
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials .user-name { font-size: 18px; font-weight: 700; color: #0a2a49; margin: 0; }
.testimonials .user-name::after { content: none; }
.user-title { font-size: 13px; color: #00aaff; margin: 5px 0 20px; font-weight: 500; }
.testimonial-text { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 25px; font-style: normal; }
.stars { color: #ffcc00; font-size: 14px; }

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  padding-bottom: 20px;
}
.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  color: #0a2a49;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
}
.nav-btn:hover { background: #0a2a49; color: #fff; transform: scale(1.1); }

@media (max-width: 1100px) {
  .testimonial-row { gap: 30px; }
}
.client-logos {
  padding: 60px 0;
  background: #f4f6f8;
  overflow: hidden;
  position: relative;
}
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.client-box {
  width: 200px;
  height: 120px;
  background: #fff;
  border-radius: 16px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.client-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.client-box img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.client-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 1100px) {
  .service-grid, .why-grid { max-width:960px; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero h2 { font-size:2rem; }
  .hero p { font-size:1rem; padding: 0 20px; }
  .services { padding:50px 20px; }
  .service-grid, .why-grid { grid-template-columns: 1fr; gap:18px; }
  .testimonial-grid { flex-direction: column; }
  .slide-content h3 { font-size: 1.8rem; }
  
  /* Mobile Layout & Typography Adjustments */
  .hero h1 { font-size: 2rem; }
  .hero .hero-lead { font-size: 1rem; }
  
  /* Section Padding Reductions */
  .bento-section { padding: 50px 20px; }
  .about-preview { padding: 50px 0; }
  .stats-section { padding: 50px 0; }
  .why-choose { padding: 50px 20px; }
  .testimonials { padding: 50px 20px; }
  .mv-new-section { padding: 60px 15px; }
  .horizontal-scroll-section { padding: 50px 0; }

  /* Box & Card Adjustments */
  .bento-card { padding: 25px; border-radius: 20px; }
  .mv-card { padding: 70px 20px 30px; border-radius: 25px; }
  .mv-floating-badge { width: 95%; padding: 15px; gap: 10px; top: -40px; border-radius: 20px; }
  .mv-badge-item i { font-size: 18px; margin-bottom: 4px; }
  .mv-badge-item span { font-size: 11px; }
  .stat-item { padding: 15px; margin-bottom: 10px; }
  .why-item { padding: 20px; }
  .testimonial-row { padding-left: 7.5vw; padding-right: 7.5vw; scroll-snap-type: x mandatory; }
  .testimonial-card { 
      padding: 60px 20px 30px; 
      margin-top: 50px; 
      flex: 0 0 85vw; 
      max-width: 85vw; 
      scroll-snap-align: center; 
  }
  .portrait-container { width: 120px; height: 120px; top: -60px; }
  .portrait-container::before { width: 120px; height: 60px; }
  .portrait-img { width: 100px; height: 100px; top: 10px; }

  /* Font Size Normalization */
  .section-header { margin-bottom: 30px; }
  .section-header h2 { font-size: 28px; margin-bottom: 15px; }
  .section-header p { font-size: 0.95rem; }
  .about-text h2 { font-size: 1.8rem; margin-bottom: 15px; }
  .about-text p { font-size: 0.95rem; margin-bottom: 20px; }
  .services h3, .testimonials h3, .why-choose h3, .h-scroll-header h3 { font-size: 1.8rem; margin-bottom: 30px; }
  .bento-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
  .bento-card p { font-size: 0.9rem; }
  .stat-item h3 { font-size: 2rem; }
  .stat-item p { font-size: 0.9rem; }
  .mv-title { font-size: 1.2rem; }
  .mv-text { font-size: 0.9rem; }
  .contact-info-panel h2 { font-size: 1.5rem; }
}

/* --- DOMAIN DETAIL STYLES --- */
.domain-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.domain-visual {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  background-color: #000;
}
.domain-visual video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.8;
}
.domain-form-wrapper {
  position: absolute;
  top: 0; right: 0; width: 35%; height: 100%;
  min-width: 500px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  padding: 40px;
  overflow-y: auto;
}
.domain-glass-form {
  margin: auto;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 25px;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  color: #0a2a49;
}
.domain-glass-form h2 {
  margin-bottom: 5px;
  font-size: 1.8rem;
  text-align: center;
  color: #0a2a49;
  font-weight: 700;
  text-transform: uppercase;
}
.domain-glass-form h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: center;
  color: #666;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: none;
}
.form-group { margin-bottom: 10px; }
.form-group label {
  display: block; margin-bottom: 8px; font-size: 0.9rem; color: #333; font-weight: 500;
}
/* Domain Inputs */
.domain-glass-form .form-group input, 
.domain-glass-form .form-group select, 
.domain-glass-form .form-group textarea {
  width: 100%;
  padding: 10px 0;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid rgba(10, 42, 73, 0.2);
  background: transparent;
  color: #0a2a49;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}
.domain-glass-form .form-group input:focus, 
.domain-glass-form .form-group select:focus, 
.domain-glass-form .form-group textarea:focus {
  background: transparent;
  border-color: #00aaff;
}
.domain-glass-form .form-group select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230a2a49%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 10px;
  padding-right: 20px;
  cursor: pointer;
}
.domain-glass-form .form-group select option {
  background-color: #ffffff;
  color: #333;
}
button.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
button.submit-btn:hover { background-color: #008ecc; }

/* Domain Scroll Button (Circular) */
.domain-scroll-circle {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.domain-scroll-circle:hover { background: rgba(255, 255, 255, 0.3); transform: scale(1.1); }
.domain-scroll-circle svg { width: 32px; height: 32px; fill: #fff; animation: bounceArrow 2s infinite; }
@keyframes bounceArrow { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(8px); } 60% { transform: translateY(4px); } }

@media (max-width: 1024px) {
  .domain-container {
    position: relative; width: 100%; height: auto; min-height: auto; overflow: visible;
  }
  .domain-visual { 
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: auto; height: auto; z-index: 0;
  }
  .domain-form-wrapper { 
    position: relative; width: 100%; height: auto; min-height: auto;
    min-width: 0;
    padding: 100px 20px 60px 20px; 
    background: transparent;
    border-left: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
  }
  .domain-glass-form { margin: 0; background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .domain-visual video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
  .domain-scroll-circle { display: none; }
}

/* --- BENTO GRID SECTION --- */
.bento-section {
    padding: 80px 10% 100px;
    background-color: #eaeff5;
    font-family: "Poppins", sans-serif;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #0a2a49;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #00aaff;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 320px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.bento-card {
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.bento-card:hover {
    transform: translateY(0);
    color: #ffffff;
}
.bento-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.bento-card h3, .bento-card p {
    position: relative;
    z-index: 2;
}
.bento-card p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.85;
}
.card-large { grid-column: span 7; }
.card-medium { grid-column: span 5; }
.bg-cream { background-color: #ffffff; color: #082B57; border: 3px solid #082B57; }
.bg-tan { background-color: #ffffff; color: #082B57; border: 3px solid #082B57; }
.bg-green { background-color: #ffffff; color: #082B57; border: 3px solid #082B57; }
.bg-white { background-color: #ffffff; color: #082B57; border: 3px solid #082B57; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Drop-down layer animation */
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}
.bento-card:hover::before { transform: translateY(0); }
.bg-cream::before { background-color: #082B57; }
.bg-tan::before { background-color: #082B57; }
.bg-green::before { background-color: #082B57; }
.bg-white::before { background-color: #082B57; }

@media (max-width: 1024px) {
    .card-large, .card-medium { grid-column: span 12; }
    .bento-grid { grid-auto-rows: min-content; }
    .bento-card { min-height: 280px; }
}

/* Bento Hover Effects */
.bento-card p.bento-hover {
    display: none;
    font-size: 0.9rem;
    line-height: 1.4;
}
.bento-card:hover p.bento-default {
    display: none;
}
.bento-card:hover p.bento-hover {
    display: block;
    animation: smoothFadeIn 0.4s ease-out forwards;
}
@keyframes smoothFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- ABOUT PAGE STYLES --- */
.hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%),
              url('Domain Images/ABOUT US.jpg') right center/cover no-repeat;
  background-attachment: fixed;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  color: white;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
  padding: 0 10%;
}
.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
  max-width: 800px;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero h1 { font-size: 4.5em; margin: 0; letter-spacing: 1px; font-weight: 700; line-height: 1.1; margin-bottom: 15px; }
.hero p { font-size: 1.35em; margin-top: 10px; opacity: 0.9; line-height: 1.5; }
.hero .hero-lead { font-size: 1.35em; line-height: 1.5; margin-bottom: 20px; }

.about-split {
  display: block; padding: 80px 60px; background: linear-gradient(135deg, #0a2a49, #072038); width: 100%; margin: 0; text-align: center;
}
.about-text { width: 100%; max-width: 1000px; margin: 0 auto; }
.about-image { display: none; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.about-image img:hover { transform: scale(1.02); }
.about-text h2 { color: #fff; font-size: 2.5em; margin-bottom: 20px; font-weight: 700; }
.about-text p { font-size: 1.1em; line-height: 1.8; color: #e0e0e0; margin-bottom: 20px; }

.about-split .about-text h2::after {
  margin: 10px auto;
  background: #00aaff;
}

/* --- NEW MISSION VISION SECTION --- */
.mv-new-section {
    padding: 100px 20px;
    background-color: #f4f6f8;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mv-card {
    background-color: white;
    border-radius: 40px;
    padding: 100px 60px 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    margin-top: 40px;
    max-width: 1300px;
    width: 100%;
}
.mv-floating-badge {
    background-color: #0a2a49;
    color: white;
    border-radius: 30px;
    padding: 30px 50px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 10;
    width: 80%;
    justify-content: space-around;
    flex-wrap: wrap;
}
.mv-badge-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
.mv-badge-item i { font-size: 24px; margin-bottom: 8px; display: block; color: #00aaff; }
.mv-badge-item span { font-size: 14px; font-weight: 500; }
.mv-content-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 20px;
    align-items: start;
}
.mv-divider { background-color: #e5e7eb; height: 100%; width: 1px; min-height: 150px; }
.mv-title {
    color: #0a2a49;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.mv-title i { color: #00aaff; }
.mv-text { color: #4b5563; line-height: 1.6; font-size: 15px; }
.mv-cta-button {
    background-color: #0a2a49;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin: 40px auto 0;
    display: block;
    width: max-content;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}
.mv-cta-button:hover { background-color: #00aaff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3); }
@media (max-width: 768px) {
    .mv-floating-badge { width: 90%; padding: 15px; gap: 10px; display: grid; grid-template-columns: 1fr 1fr; top: -65px; }
    .mv-badge-item span { font-size: 12px; }
    .mv-content-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .mv-divider { display: none; }
    .mv-card { padding: 110px 20px 40px; margin-top: 70px; }
    .mv-title { justify-content: center; }
}

.why-choose-dark {
  background: #ffffff;
  color: #0a2a49;
  text-align: center;
  padding: 70px 80px;
}
.why-choose-dark h2 { margin-bottom: 30px; font-size: 2.2em; letter-spacing: 0.5px; color: #0a2a49; }
.choose-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto;
}
.choose-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  transition: 0.3s;
  text-align: center;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.choose-box:hover { background: #f4f6f8; transform: translateY(-5px); }
.choose-box svg { height: 50px; fill: #00aaff; margin-bottom: 10px; }
.choose-box h4 { margin-bottom: 10px; color: #0a2a49; }
.choose-box p { font-size: 0.95em; color: #666; }

@media (max-width: 768px) {
  /* Hero Section Restructuring */
  .hero { 
      background-attachment: scroll !important; 
      background-position: 65% center;
      height: auto; 
      min-height: 80vh; 
      padding: 120px 20px 60px; 
      align-items: center; 
      text-align: center; 
  }
  .hero h1 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 15px; }
  .hero .hero-lead { font-size: 1.1rem; line-height: 1.5; margin-bottom: 20px; }
  .hero p { font-size: 1rem; padding: 0 10px; }

  /* About Section Restructuring */
  .about-split, .mission-vision, .why-choose-dark { padding: 60px 20px; }
  .about-split { flex-direction: column; text-align: left; }
  .about-text h2 { font-size: 2rem; text-align: center; margin-bottom: 30px; }
  .about-text p { font-size: 1rem; line-height: 1.7; text-align: justify; margin-bottom: 20px; }
  
  /* Why Choose Section Restructuring */
  .why-choose-dark h2 { font-size: 1.8rem; margin-bottom: 30px; }
  .choose-grid { grid-template-columns: 1fr; gap: 20px; }
  .choose-box { padding: 25px 20px; }
  .choose-box h4 { font-size: 1.2rem; }
  .choose-box p { font-size: 0.95rem; }
}

/* --- TABLET SPECIFIC ADJUSTMENTS (iPad Portrait/Landscape) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Header & Nav */
  header { padding: 0 30px; }
  
  /* Hero Sections */
  .hero { height: auto; min-height: 50vh; padding: 100px 40px 60px; }
  .hero h1 { font-size: 3rem; }
  
  /* About Page */
  .about-split { padding: 60px 40px; }
  .about-text h2 { font-size: 2.4rem; }
  
  /* Contact Page Restructuring */
  .contact-page-container { padding: 100px 30px 60px; }
  .contact-card-wrapper { flex-direction: column; max-width: 800px; margin: 0 auto; }
  .contact-info-panel { min-height: auto; padding: 40px; flex: 0 0 auto; }
  .contact-form-panel { padding: 40px; }
  .form-row-split { display: flex; gap: 20px; }
  
  /* Grids - Force 2 Columns */
  .service-grid, .why-grid, .flip-grid, .info-grid, .stats-grid, .bento-grid { 
      grid-template-columns: repeat(2, 1fr); 
      gap: 20px;
  }
  .flip-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .card-large, .card-medium { grid-column: span 2; }
  
  /* Testimonials */
  .testimonial-card { flex: 0 0 320px; max-width: 320px; }
}

/* --- CONTACT PAGE STYLES --- */
.contact-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  background-color: #082B57;
  padding: 50px 20px;
  position: relative;
  z-index: 1;
}

.contact-card-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  margin-top: 0;
}

.contact-info-panel {
  background: #011a38;
  color: #fff;
  flex: 0 0 40%;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.contact-info-panel h2 { font-size: 1.8rem; margin-bottom: 15px; color: #fff; }
.contact-info-panel p { color: #ccc; font-size: 0.95rem; margin-bottom: 30px; }

.info-row { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.info-row svg { fill: #00aaff; width: 24px; height: 24px; }
.info-row span { font-size: 1rem; color: #eee; }

.contact-socials { display: flex; gap: 15px; margin-top: 20px; }
.contact-socials a { 
  width: 40px; height: 40px; border-radius: 50%; 
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
}
.contact-socials a:hover { background: #00aaff; }
.contact-socials a svg { fill: #fff; width: 20px; height: 20px; }

/* Decorative circles */
.circle-dec { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); z-index: 0; }
.circle-1 { width: 150px; height: 150px; bottom: -50px; right: -50px; }
.circle-2 { width: 80px; height: 80px; top: 50px; right: 30px; }

.contact-form-panel {
  flex: 1;
  padding: 30px;
  background: #fff;
}

.form-row-split { display: flex; gap: 20px; margin-bottom: 15px; }
.form-group-new { flex: 1; display: flex; flex-direction: column; margin-bottom: 15px; }
.form-group-new label { font-size: 0.9rem; color: #555; margin-bottom: 5px; font-weight: 500; }
.form-group-new input, .form-group-new select, .form-group-new textarea {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
  color: #333;
  background: transparent;
  border-radius: 0;
}
.form-group-new input:focus, .form-group-new select:focus, .form-group-new textarea:focus {
  border-bottom-color: #00aaff;
}

.send-msg-btn {
  background: #00aaff;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
  align-self: flex-start;
}
.send-msg-btn:hover { background: #008ecc; box-shadow: 0 5px 15px rgba(0,170,255,0.3); }

.full-width-map { width: 100%; height: 400px; }
.full-width-map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 768px) {
  .contact-page-container { padding: 110px 15px 60px; }
  .contact-card-wrapper { flex-direction: column; }
  .contact-info-panel { flex: auto; padding: 40px 25px; }
  .contact-info-panel h2 { font-size: 1.6rem; }
  .contact-form-panel { padding: 40px 25px; }
  .form-row-split { flex-direction: column; gap: 0; }
  .send-msg-btn { width: 100%; margin-top: 20px; }
  .full-width-map { height: 280px; }
}

/* --- NEW DOMAIN SECTIONS (Flip Cards & Info Grids) --- */

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Flip Cards (Systems) */
.flip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2rem; }
.flip-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.flip { perspective: 1000px; height: 260px; }
.flip-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1); }
.flip:hover .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  backface-visibility: hidden;
}
.flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #f0f9ff 0%, #e1f5fe 100%);
  border-color: #00aaff;
}
.flip-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ecf7ff;
  display: grid;
  place-items: center;
  color: #00aaff;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(17, 181, 228, 0.18);
  font-size: 1.5rem;
  transform: translateY(-5px);
}
.flip-face h3 { color: #0a2a49; font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
.flip-face h4 { color: #00aaff; font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }
.flip-face p { font-size: 0.95rem; color: #555; line-height: 1.5; margin: 0; }
.learn-link { margin-top: 15px; color: #00aaff; font-weight: 700; text-decoration: none; font-size: 0.9rem; }
.learn-link:hover { text-decoration: underline; }

@media (max-width: 1100px) {
  .flip-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .flip-grid, .flip-grid.cols-4 { grid-template-columns: 1fr; }
}

/* Info Cards (Benefits) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 2rem; }
.info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.info-top { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 12px; }
.info-badge {
  padding: 5px 12px; border-radius: 20px;
  background: #e0f2fe; color: #0284c7;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.info-top strong { color: #0a2a49; font-size: 1.1rem; }
.info-card p { color: #555; font-size: 0.95rem; line-height: 1.6; margin: 0; }

@media (max-width: 600px) {
  .info-grid { grid-template-columns: 1fr; }
}