:root {
  /* Color palette */
  --blue: #0094d9;
  --blue-dark: #0077b5;
  --green: #6ecf44;
  --green-dark: #4cab2f;
  --grad-top: rgba(0,180,216,0.92);
  --grad-bottom: rgba(140,217,69,0.90);
  --text-dark: #222;
  --muted-white: rgba(255,255,255,0.92);
  --card-shadow: 0 8px 24px rgba(10,10,10,0.12);
  --radius: 40px;
}

/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) saturate(105%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 148, 217, 0.45) 0%,
    rgba(141, 183, 187, 0.35) 40%,
    rgba(80, 200, 110, 0.35) 70%,
    rgba(140, 217, 69, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 48px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-inner {
  max-width: 1100px;
  color: var(--muted-white);
  padding: 22px;
}

.hero-inner h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 56px;
  margin: 6px 0;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.hero-inner h2 {
  font-size: 28px;
  margin: 18px 0 6px;
  font-weight: 700;
  color: #fff;
  opacity: 0.98;
}

.hero-inner p.lead {
  font-size: 18px;
  margin: 14px 0 20px;
  color: rgba(255,255,255,0.95);
  max-width: 920px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}

.btn, .btn-primary {
  display: inline-block;
  background: linear-gradient(to right, var(--grad-top), var(--grad-bottom));
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  border: 3px solid var(--blue-dark);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover, .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 119, 181, 0.25);
}

.btn.ghost {
  background: transparent;
  border: 3px solid rgba(255,255,255,0.22);
  color: var(--muted-white);
  backdrop-filter: blur(2px);
}

/* About Us Section */
.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fcff 0%, #eef7fb 100%);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.about-img-bg {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  opacity: 0.35;
  z-index: 1;
  filter: blur(4px);
}

.about-title {
  font-size: 44px;
  font-family: "Montserrat", sans-serif;
  color: #0077b5;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-text {
  font-size: 18px;
  line-height: 1.65;
  color: #153245;
  margin-bottom: 20px;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 26px 0 38px;
}

.about-highlights li {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #153245;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-highlights span {
  background: linear-gradient(135deg, var(--blue), var(--green));
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.about-btn {
  padding: 16px 38px;
  font-size: 18px;
  border-radius: 50px;
}/* ===== ABOUT IMAGE SLIDER ===== */

.about-slider {
  position: relative;
  max-width: 420px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slider-track img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,148,217,0.9);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-btn:hover {
  background: #007ab5;
  transform: translateY(-50%) scale(1.08);
}

.prev { left: 12px; }
.next { right: 12px; }

/* Responsive */
@media (max-width: 900px) {
  .about-slider {
    max-width: 100%;
  }

  .slider-track img {
    height: 260px;
  }
}



/* Why Choose Us Section */
.why-us {
  background: linear-gradient(135deg,#f8fafc,#eef2f6);
  padding: 60px 20px;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.why-left {
  padding-top: 10px;
}

.why-tag {
  font-size: 24px;        /* BIG */
  font-weight: 1000;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #244a5c;
  display: inline-block;
  padding: 14px 28px;
  background: rgba(0,148,217,0.15);
  border-radius: 12px;
  margin-bottom: 18px;
}
.why-left h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;        /* smaller than span */
  font-weight: 700;
  color: #1a365d;
  line-height: 1.4;
  margin-bottom: 16px;
}


.why-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 30px;
  max-width: 420px;
}

.why-stats {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item strong {
  font-size: 24px;
  color: #0094d9;
  display: block;
  margin-bottom: 5px;
}

.stat-item span {
  font-size: 12px;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.glass-card {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.25s ease;
  min-height: 160px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(0,148,217,0.3);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  margin-bottom: 8px;
}

.icon-circle svg {
  width: 22px;
  height: 22px;
  color: #0094d9;
  transition: all 0.25s ease;
}

.glass-card:hover .icon-circle {
  background: #0094d9;
}

.glass-card:hover .icon-circle svg {
  color: #fff;
}

.glass-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}

.glass-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #718096;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 40px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-image {
  position: sticky;
  top: 120px;
}

.faq-image img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 160px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 0 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: #1a365d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,163,228,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0094d9;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question .icon {
  background: linear-gradient(135deg, #00b7ff, #00a6ff);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 18px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4a5568;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-button-wrapper {
  text-align: center;
  margin-top: 70px;
}

.faq-button {
  display: inline-block;
  background: linear-gradient(90deg, #00b7ff, #00a6ff);
  color: #fff;
  padding: 16px 42px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 30px rgba(0,163,228,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-button:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(0,163,228,0.45);
}

/* Philosophy Section */
.philosophy-wrap {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: linear-gradient(180deg, #1789d5, #1789d5);
  border-radius: 90px 90px 90px 90px;
}

.philosophy-bg .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

/* Soft Blue */
.circle-1 {
  width: 500px;
  height: 500px;
  background: #8ccae8;
  top: -200px;
  left: 10%;
  animation: floatSlow 14s ease-in-out infinite;
}

/* Muted Teal */
.circle-2 {
  width: 420px;
  height: 420px;
  background: #2c5870;
  right: 5%;
  top: 300px;
  animation: floatMedium 12s ease-in-out infinite;
}

/* Deep Blue Shadow */
.circle-3 {
  width: 700px;
  height: 700px;
  background: #5cc0f6;
  bottom: -350px;
  left: -200px;
  animation: drift 18s ease-in-out infinite;
}
.philosophy-content {
  color: #ffffff; /* already set */
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.philosophy-content {

  max-width: 860px;
  margin: auto;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}
.philosophy-content.show {
  opacity: 1;
  transform: translateY(0);
}

.philosophy-content .small-title {
  letter-spacing: 3px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  opacity: 0.9;
}
.philosophy-content p {
  line-height: 2;        /* more breathing room */
  letter-spacing: 0.5px; /* subtle spacing */
}

.philosophy-content h2 {
  line-height: 1.15;
  letter-spacing: -0.5px; /* slightly tighter for big headings */
}

/* Main heading */
.philosophy-content h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 32px;
  font-weight: 800;
}


/* Body text */
.philosophy-content p {
  font-size: clamp(17px, 1.2vw, 19px);
  margin-bottom: 22px;
  opacity: 0.98;  
  font-weight: 500; /* medium for better legibility */

}

/* Strong text blocks */
.philosophy-content strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}
/* ===============================
   JOBS / CAREER SECTION
================================ */

.jobs-section {
  padding: 60px 30px;
  background: linear-gradient(180deg, #fff, #edfdff);
  text-align: center;
  font-family: "Roboto", sans-serif;
}

/* Section Title */
.career-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0b3c89;
}

.career-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2b96d0;
  margin-bottom: 6px;
}

/* Divider */
.divider {
  width: 80px;
  height: 3px;
  background: #00aaff;
  margin: 15px auto 30px;
}

/* Intro Text */
.intro {
  max-width: 800px;
  margin: 20px auto 50px;
  color: #0d5fa8;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   BENEFITS GRID
================================ */

.benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Benefit Card */
.benefit-item {
  background: #5cc0f6;
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 84, 181, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

/* Icon */
.benefit-icon {
  min-width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fcfcfc, #ffffff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5cc0f6;
  font-size: 20px;
}

/* Card Content */
.benefit-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fefefe;
  line-height: 1.3;
}

/* List styling left-aligned */
.benefit-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.benefit-content li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.5;
}

.benefit-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-weight: bold;
}

/* ===============================
   JOBS GRID
================================ */

.jobs-title {
  margin-top: 60px;
  font-size: 26px;
  font-weight: 700;
  color: #0b3c89;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 30px auto 0;
}

/* Job Card */
.job-card {
  background: #ffffff;
  padding: 25px 18px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.14);
}

.job-card .job-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0077b5;
}

.job-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.job-card p {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #444;
}

.job-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 25px;
  border: 2px solid #00aaff;
  background: transparent;
  color: #00aaff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.job-btn:hover {
  background: #12709e;
  color: #fff;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .benefits-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-wrapper,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item,
  .job-card {
    padding: 18px 15px;
  }

  .career-title {
    font-size: 26px;
  }

  .jobs-title {
    font-size: 22px;
  }
}


/* Footer */
.footer-alt {
  background: linear-gradient(135deg, #344545, #2c4752);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  padding: 60px 20px 20px;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 25px;
  flex: 1 1 300px;
  transition: transform 0.3s, background 0.3s;
}

.footer-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.footer-card h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
}

.footer-card p, .footer-card li {
  font-size: 14px;
  line-height: 1.6;
  color: #e0f0f0;
}

.footer-card a {
  color: #e0f0f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-card a:hover {
  color: #fffc70;
}

.footer-card ul {
  list-style: none;
  padding: 0;
}

.footer-card ul li {
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background: rgba(255,255,255,0.2);
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fffc70;
  color: #1b2a3a;
}

.footer-bottom-alt {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #f0f0f0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes floatSlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

@keyframes floatMedium {
  0% { transform: translateY(0); }
  50% { transform: translateY(15px); }
  100% { transform: translateY(0); }
}

@keyframes drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(-50px); }
  100% { transform: translateX(0); }
}

/* ================= RESPONSIVE DESIGN ================= */

/* Large Tablets & Small Desktops */
@media (max-width: 1100px) {
  .hero-inner h1 {
    font-size: 44px;
  }
  
  .hero-inner h2 {
    font-size: 20px;
  }
  
  .hero-inner p.lead {
    font-size: 16px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  /* About Us */
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about-img-bg {
    display: none;
  }

  .about-highlights li {
    justify-content: center;
  }

  .about-title {
    font-size: 36px;
  }

  .about-text {
    font-size: 16px;
  }

  /* Services */
  .services {
    padding: 100px 0 80px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .services-header h2 {
    font-size: 32px;
  }

  /* Why Choose Us */
  .why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-left {
    text-align: center;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  .why-desc, .why-stats {
    max-width: 100%;
    margin: 0 auto 25px;
  }

  .why-left h2 {
    font-size: 28px;
  }

  /* FAQ */
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-title {
    font-size: 30px;
  }

  .faq-image {
    position: static;
    max-height: 300px;
    margin-bottom: 30px;
  }

  .faq-image img {
    max-height: 300px;
    object-position: center;
  }

  /* Philosophy */
  .philosophy-wrap {
    padding: 80px 15px;
    border-radius: 60px;
  }

  .philosophy-content h2 {
    font-size: 32px;
  }

  .circle-1,
  .circle-2,
  .circle-3 {
    opacity: 0.6;
  }

  /* Footer */
  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/* Mobile Phones */
@media (max-width: 700px) {
  /* Hero */
  .hero {
    min-height: 70vh;
  }
  
  .hero-content {
    padding: 30px 15px;
    justify-content: center;
  }
  
  .hero-inner {
    padding: 18px;
    text-align: center;
  }
  
  .hero-inner h1 {
    font-size: 32px;
  }
  
  .hero-inner h2 {
    font-size: 18px;
  }
  
  .hero-inner p.lead {
    font-size: 15px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .about-highlights {
    max-width: 100%;
    margin: 25px auto;
  }
 .about-highlights li {
    display: grid;
    grid-template-columns: 26px 1fr; /* icon | text */
    align-items: start;
    column-gap: 12px;

    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }

  .about-highlights span {
    width: 26px;
    height: 26px;
    margin-top: 2px; /* aligns with first text line */
  }
  /* Services */
  .services {
    padding: 80px 0 60px;
  }

  .services-header h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 30px 20px 40px;
  }

  /* Why Choose Us */
  .why-us {
    padding: 40px 15px;
  }

  .why-left h2 {
    font-size: 24px;
  }

  .why-desc {
    font-size: 15px;
  }

  .glass-card {
    padding: 16px;
    min-height: auto;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
  }

  .glass-card h3 {
    font-size: 15px;
  }

  .glass-card p {
    font-size: 13px;
  }

  .why-stats {
    flex-direction: column;
    gap: 15px;
  }

  /* FAQ */
  .faq-section {
    margin: 60px auto;
  }

  .faq-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px 0;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-button {
    padding: 14px 35px;
    font-size: 15px;
  }
  .philosophy-wrap {
    padding: 70px 18px;
    border-radius: 36px;
  }

  /* Title */
  .philosophy-content h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 22px;
  }

  /* Body text */
  .philosophy-content p {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 20px;
  }

  /* Small title */
  .philosophy-content .small-title {
    font-size: 13px;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
  }
  /* Floating circles (kept soft) */
  .circle-1 {
    width: 380px;
    height: 380px;
    top: -120px;
    left: -60px;
  }

  .circle-2 {
    width: 320px;
    height: 320px;
    top: 480px;
    right: -140px;
  }

  .circle-3 {
    width: 420px;
    height: 420px;
    bottom: -140px;
    left: -180px;
  }

  /* Jobs */
  .jobs-section {
    padding: 60px 20px;
  }

  .jobs-section h2 {
    font-size: 26px;
  }

  .intro {
    font-size: 15px;
    margin: 20px auto 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-card {
    padding: 20px;
  }

  .apply-btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  /* Hero */
  .hero-inner h1 {
    font-size: 28px;
  }
  
  .hero-inner h2 {
    font-size: 16px;
  }
  
  .hero-inner p.lead {
    font-size: 14px;
  }
  
  .btn, .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* About Us */
  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 15px;
  }

  /* Services */
  .services-header h2 {
    font-size: 24px;
  }

  .services-line span {
    width: 60px;
  }

  /* Why Choose Us */
  .why-left h2 {
    font-size: 22px;
  }

  /* FAQ */
  .faq-title {
    font-size: 24px;
  }

  .faq-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  /* Philosophy */
  .philosophy-content h2 {
    font-size: 22px;
  }

  .philosophy-content p {
    font-size: 13px;
  }

  /* Footer */
  .footer-card {
    padding: 20px;
  }

  .footer-card h3 {
    font-size: 16px;
  }

  .footer-card p, .footer-card li {
    font-size: 13px;
  }
}    /* Success Message Styles - Enhanced */
    .success-message {
        position: fixed;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
        color: white;
        padding: 22px 32px;
        border-radius: 12px;
        box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
        z-index: 10000;
        display: flex;
        align-items: center;
        gap: 18px;
        transform: translateX(150%) translateY(-20px);
        opacity: 0;
        transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.8), 
                    opacity 0.5s ease,
                    box-shadow 0.3s ease;
        max-width: 420px;
        border-left: 6px solid #2E7D32;
        overflow: hidden;
    }
    
    .success-message::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #2E7D32, #81C784);
        animation: progressBar 3s linear forwards;
    }
    
    .success-message.show {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    
    .success-icon {
        font-size: 2.8rem;
        animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
                  gentlePulse 2s infinite 0.8s;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    }
    
    .success-content h3 {
        margin: 0 0 8px 0;
        font-size: 1.35rem;
        font-weight: 700;
        letter-spacing: 0.3px;
    }
    
    .success-content p {
        margin: 0;
        opacity: 0.95;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .confetti {
        position: absolute;
        width: 12px;
        height: 12px;
        background: #FFD700;
        border-radius: 50%;
        opacity: 0;
        animation: confettiFall 2s ease-out forwards;
    }
    
    @keyframes progressBar {
        0% { width: 100%; }
        100% { width: 0%; }
    }
    
    @keyframes bounceIn {
        0% {
            transform: scale(0.3) rotate(-30deg);
            opacity: 0;
        }
        50% {
            transform: scale(1.1) rotate(10deg);
        }
        70% {
            transform: scale(0.95) rotate(-5deg);
        }
        100% {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
    }
    
    @keyframes gentlePulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    
    @keyframes confettiFall {
        0% {
            transform: translateY(-100px) rotate(0deg);
            opacity: 1;
        }
        100% {
            transform: translateY(100px) rotate(360deg);
            opacity: 0;
        }
    }
    
    /* Reviews visibility toggle */
    .review-card {
        transition: opacity 0.3s, transform 0.3s;
    }
    
    .review-card.hidden {
        display: none;
    }
    
    .view-more-container {
        text-align: center;
        margin: 30px 0;
    }
    
    .view-more-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        border: none;
        padding: 14px 35px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(88, 202, 255, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .view-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(88, 202, 255, 0.4);
    }
    
    .view-more-btn i {
        transition: transform 0.3s;
    }
    
    .view-more-btn.show-all i {
        transform: rotate(180deg);
    }
    
    /* Review counter badge */
    .reviews-count-badge {
        background: var(--secondary-color);
        color: white;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-left: 10px;
        vertical-align: middle;
    }
    
    /* Rating distribution specific styles */
    .distribution-star {
        width: 90px;
        color: #ffc107;
        font-size: 1.1rem;
        text-align: left;
    }
    
    .distribution-count {
        width: 40px;
        text-align: right;
        font-weight: 600;
        color: var(--dark-color);
    }
    
    /* Main CSS Variables */
    .reviews-section-wrapper {
        --primary-color: #58caff;
        --primary-light: #58caff;
        --primary-dark: #58caff;
        --secondary-color: #e76f51;
        --light-color: #f8f9fa;
        --gray-color: #e9ecef;
        --dark-color: #264653;
        --text-color: #333;
        --border-color: #ced4da;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --radius: 8px;
        background-color: #f5f7fa;
        color: var(--text-color);
    }
    
    .reviews-form-page {
        --primary-color: #58caff;
        --primary-light: #58caff;
        --primary-dark: #58caff;
        --secondary-color: #e76f51;
        --light-color: #f8f9fa;
        --gray-color: #e9ecef;
        --dark-color: #264653;
        --text-color: #333;
        --border-color: #ced4da;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --radius: 8px;
        background-color: #f5f7fa;
        color: var(--text-color);
        display: none;
    }
    
    .reviews-form-page.active {
        display: block;
    }
    
    .reviews-section-wrapper {
        min-height: 100vh;
    }
    
    .reviews-header {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        padding: 30px 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .reviews-header h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .reviews-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 15px;
    }
    
    .reviews-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* FIXED: Index content layout */
    .index-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }
    
    @media (min-width: 992px) {
        .index-content {
            grid-template-columns: 1fr 1fr;
            align-items: stretch;
        }
    }
    
    /* FIXED: Stats cards - same height */
    .stats-card {
        background-color: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 25px;
        margin-bottom: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* FIXED: Overall rating card */
    .overall-rating {
        text-align: center;
        padding: 20px 15px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .rating-value {
        font-size: 3rem;
        font-weight: 700;
        color:#0d5fa8;
        line-height: 1;
        margin-bottom: 10px;
    }
    
    .stars-large {
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .stars-large .star {
        font-size: 1.8rem;
        color: #ffc107;
    }
    
    .total-reviews {
        font-size: 1rem;
        color: #666;
        margin-bottom: 20px;
    }
    
    /* FIXED: Add review button */
    .add-review-btn {
        background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
        color: white;
        border: none;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: var(--radius);
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .add-review-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .reviews-section {
        margin-top: 40px;
    }
    
    .review-card {
        background-color: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 25px;
        margin-bottom: 25px;
        border-left: 5px solid var(--primary-color);
    }
    
    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .reviewer-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    .reviewer-name {
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--dark-color);
    }
    
    .reviewer-role {
        font-size: 0.9rem;
        color: #666;
        margin-top: 3px;
    }
    
    .review-stars {
        color: #ffc107;
        font-size: 1.1rem;
    }
    
    .review-date {
        font-size: 0.9rem;
        color: #888;
    }
    
    .review-content {
        margin-top: 15px;
    }
    
    .review-liked {
        margin-bottom: 15px;
    }
    
    .review-improve {
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 5px;
        margin-top: 15px;
        border-left: 3px solid #eee;
    }
    
    .review-recommend {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 15px;
    }
    
    .recommend-yes {
        background-color: #d4edda;
        color: #155724;
    }
    
    .recommend-maybe {
        background-color: #fff3cd;
        color: #856404;
    }
    
    .recommend-no {
        background-color: #f8d7da;
        color: #721c24;
    }
    
    .no-reviews {
        text-align: center;
        padding: 40px;
        color: #666;
        font-size: 1.1rem;
    }
    
    .form-container {
        max-width: 800px;
        margin: 0 auto 40px;
        background-color: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
    }
    
    .form-section {
        padding: 25px 30px;
        border-bottom: 1px solid var(--gray-color);
    }
    
    .section-title {
        display: flex;
        align-items: center;
        color: var(--primary-dark);
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    
    .section-number {
        background-color: var(--primary-color);
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        font-weight: bold;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--dark-color);
    }
    
    input[type="text"] {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    input[type="text"]:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(42, 107, 157, 0.2);
    }
    
    .radio-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
    }
    
    .radio-option {
        display: flex;
        align-items: center;
    }
    
    .radio-option input {
        margin-right: 8px;
        transform: scale(1.2);
    }
    
    .stars-rating {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 25px 0;
    }
    
    .star {
        font-size: 2.8rem;
        color: #ddd;
        cursor: pointer;
        transition: color 0.2s, transform 0.2s;
    }
    
    .star:hover {
        transform: scale(1.1);
    }
    
    .star.active {
        color: #ffc107;
    }
    
    .rating-labels {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        font-size: 0.9rem;
        color: #666;
    }
    
    textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        font-size: 1rem;
        min-height: 100px;
        resize: vertical;
        transition: border-color 0.3s;
    }
    
    textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(42, 73, 157, 0.2);
    }
    
    .recommend-options {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }
    
    .checkbox-option {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .checkbox-option input {
        margin-right: 10px;
        transform: scale(1.2);
    }
    
    .form-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
    }
    
    .submit-btn {
        background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
        color: white;
        border: none;
        padding: 16px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: var(--radius);
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .cancel-btn {
        background-color: #6c757d;
        color: white;
        border: none;
        padding: 16px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: var(--radius);
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .cancel-btn:hover {
        background-color: #5a6268;
        transform: translateY(-2px);
    }
    
    .required::after {
        content: " *";
        color: var(--secondary-color);
    }
    
    .optional {
        font-size: 0.9rem;
        color: #777;
        font-weight: normal;
    }
    
    /* FIXED: Rating distribution styles */
    .distribution-title {
        margin-top: 0;
        margin-bottom: 20px;
        color:#0d5fa8;
        font-size: 1.3rem;
    }
    
    .rating-distribution {
        margin-top: 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    #rating-distribution {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    
    .distribution-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        padding: 5px 0;
    }
    
    .distribution-bar {
        flex: 1;
        height: 20px;
        background-color: #e9ecef;
        border-radius: 10px;
        overflow: hidden;
        margin: 0 15px;
    }
    
    .distribution-fill {
        height: 100%;
        background-color: var(--primary-color);
        border-radius: 10px;
    }
    
    .back-to-index {
        display: inline-block;
        color: white;
        text-decoration: none;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }
    
    .back-to-index i {
        margin-right: 8px;
    }
    
    @media (max-width: 991px) {
        .stats-card {
            min-height: 250px;
        }
    }
    
    @media (max-width: 768px) {
        .success-message {
            top: 10px;
            right: 10px;
            left: 10px;
            max-width: calc(100% - 20px);
            transform: translateY(-100%);
        }
        
        .success-message.show {
            transform: translateY(0);
        }
    }
.bg-video, .bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
  
    
   /* Services */
.services {
    padding: 80px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header span {
    font-size: 28px;
    color: #0b3c89;
    font-weight: 600;
}

.services-header h2 {
    font-size: 24px;
    color: #0b3c89;
    font-weight: 700;
}

/* Divider */
.services-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 25px auto 35px;
}

.services-line span {
    width: 100px;
    height: 2px;
    background: #44a5ff;
}

.services-line i {
    width: 10px;
    height: 10px;
    background: #44a5ff;
    border-radius: 50%;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card container */
.card-container {
    perspective: 1000px;
    height: 420px;
    overflow: hidden; /* 🔥 VERY IMPORTANT */
}

/* Card */
.service-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* Desktop hover */
@media (hover: hover) {
    .card-container:hover .service-card {
        transform: rotateY(180deg);
    }
}

/* Front & Back */
.card-front,
.card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 30px 25px 40px;
    display: flex;
    flex-direction: column;
}

/* Front */
.card-front {
    background: #5cc0f6;
    border-top: 4px solid #a7e0fe;
    overflow: hidden;
}
.success-msg {
  margin-top: 15px;
  padding: 12px;
  background: #e6f7ff;
  color: #055160;
  border: 1px solid #b6effb;
  border-radius: 6px;
  font-weight: 500;
}

/* Icons */
.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(255,255,255,.15);
}

.icon i {
    font-size: 28px;
    color: #fff;
}

.card-front h3,
.card-front p {
    color: #fff;
}

/* Decorative circles (FIXED 🔥) */
.card-front-circles {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    pointer-events: none;
}

.card-front-circles .circle {
    width: 160px;
    height: 160px;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
}

/* Back */
.card-back {
    transform: rotateY(180deg);
    padding: 0;
    background: #000;
}

.card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1;
}

.card-back-content {
    position: absolute;
    inset: 0;
    padding: 30px 25px 40px;
    z-index: 2;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .card-container {
        height: 390px;
    }

    .card-front-circles .circle {
        width: 120px;
        height: 120px;
    }
}

/* iPad Landscape (1024px to 1366px) – FORCE 3 CARDS */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {

    .services {
        padding: 70px 20px 50px; /* reduce side padding */
    }

    .services-grid {
        width: 100%;
        max-width: 1140px; /* exact safe width */
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 🔥 KEY FIX */
        gap: 20px;
    }

    .card-container {
        height: 420px;
    }
}
.career-title {
  font-size: 1.4rem;     /* smaller H text */
  font-weight: 500;
  line-height: 1.4;
  color: #0d5fa8;
}

.career-label {
  display: block;
  font-size: 1.8rem;     /* slightly bigger than h2, not too big */
  font-weight: 600;
  letter-spacing: 3px;
  color: #0d5fa8;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.career-label::after {
  content: "";
  display: block;
  width: 40px;          /* smaller divider */
  height: 2px;
  background: #0d5fa8;
  margin: 8px auto 0;
}


