* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: #0b1f3a;
  color: #fff;
  font-size: 14px;
}

.top-bar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
}

.top-bar i {
  margin-right: 6px;
}

.social-icons a {
  color: #fff;
  margin-left: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #4da3ff;
}

/* ================= MAIN HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 80px;
}

/* Navigation */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #0b1f3a;
  font-weight: 600;
  position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #1e73ff;
}

/* CTA Button */
.btn-demo {
  background: #1e73ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}

.btn-demo small {
  display: block;
  font-size: 11px;
  opacity: 0.9;
}

.btn-demo:hover {
  background: #155ad6;
}

/* ================= BURGER MENU ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #0b1f3a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

  .logo img {
    height: 65px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid #eee;
  }

  .nav-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
  }

  .nav-menu.active {
    max-height: 500px;
  }

  .btn-demo {
    display: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .top-bar {
    font-size: 12px;
  }

  .top-bar-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}



/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  height: 90vh;
  background: url("./images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.75); /* blue tint */
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #1e73ff;
  color: #fff;
  padding: 14px 26px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #155ad6;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn-outline:hover {
  background: #fff;
  color: #0b1f3a;
}


/* ================= WHY CHOOSE US ================= */
.why-choose {
  padding: 80px 0;
  background: #f6f9ff;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: 36px;
  color: #0b1f3a;
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b1f3a;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}


/* ================= POST JOB SUPPORT ================= */
.post-job-support {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b1f3a, #123c73);
  color: #fff;
}

/* layout */
.support-flex {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* left content */
.support-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.support-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.support-content ul {
  list-style: none;
  margin-bottom: 25px;
  padding-left: 0;
}

.support-content li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.support-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e73ff;
  font-size: 14px;
}

/* right box */
.support-box {
  background: rgba(255,255,255,0.12);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.support-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.support-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.support-box span {
  display: inline-block;
  background: #1e73ff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .post-job-support {
    padding: 60px 0;
  }

  .support-flex {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .support-content h2 {
    font-size: 32px;
  }

  .support-box {
    padding: 25px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .post-job-support {
    padding: 45px 0;
    text-align: center;
  }

  .support-content h2 {
    font-size: 26px;
  }

  .support-content p {
    font-size: 15px;
  }

  .support-content ul {
    text-align: left;
  }

  .support-content li {
    font-size: 14px;
  }

  .support-box {
    padding: 22px;
  }

  .support-box h3 {
    font-size: 20px;
  }

  .support-box p {
    font-size: 14px;
  }

  .support-box span {
    font-size: 12px;
    padding: 7px 12px;
  }
}



/* ================= ACCORDION SECTION ================= */
/* ================= ACCORDION SECTION ================= */
.accordion-section {
  padding: 100px 0;
  background: #ffffff;
}

/* layout */
.accordion-flex {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* intro */
.accordion-intro h2 {
  font-size: 2.5rem;
  color: #0b1f3a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.accordion-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* accordion item */
.accordion-item {
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* header */
.accordion-header {
  width: 100%;
  background: #f8fbff;
  border: none;
  padding: 20px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0b1f3a;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #eef4ff;
}

.accordion-header .icon {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 28px;
}

.accordion-content p {
  padding: 24px 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* active state */
.accordion-item.active .accordion-header {
  background: linear-gradient(135deg, #1e73ff, #005eff);
  color: #fff;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 28px 8px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .accordion-section {
    padding: 70px 0;
  }

  .accordion-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accordion-intro h2 {
    font-size: 2.1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .accordion-section {
    padding: 50px 0;
  }

  .accordion-intro h2 {
    font-size: 1.8rem;
  }

  .accordion-intro p {
    font-size: 1rem;
  }

  .accordion-header {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .accordion-header .icon {
    font-size: 20px;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-content p {
    font-size: 14.5px;
    padding: 18px 0;
  }
}



/* ================= USP CARDS STYLES ================= */
.usp-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.usp-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  border: 1px solid rgba(30, 115, 255, 0.08);
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #1e73ff, #005eff);
  transition: height 0.4s ease;
}

.usp-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.usp-card:hover::before {
  height: 100%;
}

.usp-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  background: linear-gradient(135deg, #1e73ff33, #005eff22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
  user-select: none;
  pointer-events: none;
}

.usp-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.usp-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .usp-section {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .usp-card {
    padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  .usp-number {
    font-size: 50px;
  }
  
  .usp-card h3 {
    font-size: 1.25rem;
  }
}


/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
  overflow: hidden;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: #0b1f3a;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.testimonial-slider {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.testimonial-card {
  min-width: calc(100% - 30px);
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
  border: 1px solid rgba(30, 115, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid #1e73ff;
}

.stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-card p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 1.3rem;
  color: #0b1f3a;
  margin-bottom: 6px;
}

.testimonial-card span {
  font-size: 14.5px;
  color: #666;
}

/* Navigation */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1e73ff;
  color: white;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(30, 115, 255, 0.3);
  transition: 0.3s;
}

.nav-btn:hover {
  background: #005eff;
  transform: translateY(-50%) scale(1.1);
}

.prev { left: -25px; }
.next { right: -25px; }

/* Dots */
.dots-container {
  text-align: center;
  margin-top: 40px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #1e73ff;
  transform: scale(1.3);
}

/* Responsive */
@media (min-width: 768px) {
  .testimonial-card {
    min-width: calc(50% - 30px);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: calc(33.333% - 30px);
  }
  .prev { left: -30px; }
  .next { right: -30px; }
}

@media (max-width: 640px) {
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .prev { left: 10px; }
  .next { right: 10px; }
}


/* ================= TESTIMONIAL VIDEO SECTION ================= */
.testimonial-video-section {
  padding: 80px 0;
  background: #f6f9ff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.video-card iframe {
  width: 100%;
  height: 200px;
}

.video-card h4 {
  padding: 15px 10px;
  font-size: 16px;
  color: #0b1f3a;
}


/* ================= FOOTER ================= */
.footer {
  background: #0b1f3a;
  color: #fff;
  padding: 60px 0 25px;
}

.footer-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 35px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

/* Headings */
.footer h4 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
}

/* Text & links */
.footer p,
.footer a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.7;
  display: block;
}

.footer a:hover {
  color: #1e73ff;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #1e73ff;
}

/* Quick Links List */
.footer ul {
  padding-left: 18px;      /* bullets ke liye space */
  margin: 0;
}

.footer ul li {
  list-style: disc;        /* bullets ON */
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.footer ul li a {
  display: inline;         /* bullets ke saath natural flow */
  color: #ccc;
}

.footer ul li a:hover {
  color: #1e73ff;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .footer {
    padding: 45px 0 20px;
  }

  .footer-flex {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer ul {
    padding-left: 20px;
    text-align: left;
    display: inline-block;
  }
}






/* ================= ABOUT HERO ================= */
.about-hero {
  height: 60vh;
  background: url("./images/about.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.about-hero .hero-overlay {
  background: rgba(11,31,58,0.92); /* 0.8 → 0.92 = much darker! */
}

.about-hero .hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.about-hero .hero-content p {
  font-size: 18px;
}

/* ================= VISION & MISSION ================= */
.vision-mission {
  padding: 80px 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.vision-card {
  background: #f6f9ff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vision-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b1f3a;
}

.vision-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* ================= OUR STORY ================= */
.our-story {
  padding: 60px 0;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.our-story p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* ================= STATS ================= */
.stats-section {
  padding: 60px 0;
  background: #f6f9ff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 25px;
  text-align: center;
}

.stat-card h3 {
  font-size: 28px;
  color: #1e73ff;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: #555;
}

.stat-card h3 {
  transition: color 0.3s ease;
}


/* ================= ABOUT USP ================= */
.about-usp {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.about-usp .usp-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.about-usp .usp-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0b1f3a;
}

.about-usp .usp-card p {
  font-size: 14px;
  color: #555;
}


/* ================= SERVICES HERO ================= */
.services-hero {
  height: 60vh;
  background: url("./images/about.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.services-hero .hero-overlay {
  background: rgba(11,31,58,0.65);
}

.services-hero .hero-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.services-hero .hero-content p {
  font-size: 17px;
  color: #fff;
}

/* ================= SERVICES SECTION ================= */
/* .services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1e73ff40, transparent);
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-heading h2 {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #0b1f3a, #1e73ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  font-weight: 700;
}

.section-heading p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.services-counter {
  display: inline-block;
  background: linear-gradient(135deg, #1e73ff, #005eff);
  color: white;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(30, 115, 255, 0.3);
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border-color: rgba(30, 115, 255, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0b1f3a;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card.mm { --card-accent: #ff6b6b; }
.service-card.fico { --card-accent: #4ecdc4; }
.service-card.abap { --card-accent: #45b7d1; }
.service-card.sd { --card-accent: #96ceb4; }
.service-card.pp { --card-accent: #feca57; }
.service-card.qm { --card-accent: #ff9ff3; }
.service-card.pm { --card-accent: #54a0ff; }
.service-card.hcm { --card-accent: #5f27cd; }
.service-card.bi { --card-accent: #00d2d3; }
.service-card.crm { --card-accent: #ff9f43; }
.service-card.pmo { --card-accent: #00b894; }
.service-card.basis { --card-accent: #e17055; }
.service-card.ewm { --card-accent: #fdcb6e; }
.service-card.ariba { --card-accent: #6c5ce7; }
.service-card.sf { --card-accent: #a29bfe; }

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge.popular { background: linear-gradient(135deg, #ff6b6b, #ee5a52); color: white; }
.badge.new { background: linear-gradient(135deg, #00d2d3, #00b894); color: white; }
.badge.hot { background: linear-gradient(135deg, #fdcb6e, #f39c12); color: white; }
.badge.cloud { background: linear-gradient(135deg, #a29bfe, #6c5ce7); color: white; animation: badge-bounce 2s infinite; }

@keyframes pulse-glow {
  0% { box-shadow: 0 8px 25px rgba(30, 115, 255, 0.3); }
  100% { box-shadow: 0 8px 35px rgba(30, 115, 255, 0.5); }
}

@keyframes badge-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .services-section {
    padding: 80px 0;
  }
  
  .service-card {
    padding: 35px 25px;
  }
} 

*/

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(30,115,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.section-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 18px;
}

.section-heading p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  border: 1px solid rgba(30, 115, 255, 0.1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e73ff, #005eff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #1e73ff, #005eff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 115, 255, 0.3);
  transition: all 0.4s ease;
}

.service-card:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(30, 115, 255, 0.4);
}

.icon-circle .icon {
  font-size: 40px;
  color: white;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
  
  .service-card {
    padding: 35px 24px;
  }
  
  .section-heading h2 {
    font-size: 2.3rem;
  }
}


/* ================= PLACEMENTS LOGOS CAROUSEL ================= */
.placements-section {
  padding: 60px 0;
  text-align: center;
  background: #f6f9ff;
}

.placements-section h2 {
  margin-bottom: 40px;
}

.placements-logos {
  overflow: hidden;
  position: relative;
}

.logo-slide {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: slide 25s linear infinite;
}

.logo-slide img {
  max-height: 60px;
  transition: transform 0.3s, filter 0.3s;
}

.logo-slide img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #1e73ff);
}

/* Infinite sliding animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-slide img {
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .logo-slide img {
    max-height: 35px;
    gap: 25px;
  }
}


/* ================= GALLERY SECTION ================= */
.gallery-section {
  padding: 80px 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Gallery Card */
.gallery-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    gap: 20px;
  }
}


/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* Contact Info Card */
.contact-info {
  background: linear-gradient(135deg, #0b1f3a, #123c73);
  color: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  font-size: 14.5px;
  margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
  background: #f8fbff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #0b1f3a;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1e73ff;
}

/* ================= MAP SECTION ================= */
.map-section {
  margin-top: 60px;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 30px;
  }
}
