/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* COLORS */
:root {
  --primary: #0f172a;
  --secondary: #1e3a8a;
  --accent: #38bdf8;
  --highlight: #f97316;
  --light: #f8fafc;
}

/* TOP BAR */
.top-bar {
  background: white;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.top-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.top-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.top-content h1 {
  font-size: 18px;
  color: #111;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

/* NAV MENU */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--accent);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  display: none;
  flex-direction: column;
  min-width: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.dropdown-menu a {
  padding: 12px;
  color: #111;
}

.dropdown-menu a:hover {
  background: var(--light);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 4px;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    background: var(--primary);
    transition: 0.4s ease;
  }

  .nav-menu.active {
    top: 70px;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 20px;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
  }

  .dropdown-menu a {
    color: #ddd;
    padding-left: 20px;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .top-content h1 {
    font-size: 16px;
  }
}


/* HERO */
.hero {
  height: 100vh;
  position: relative;
}

.hero-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 1s;
}

.hero-images img.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #1e3a8a, rgba(0,0,0,0.2));
}

/* HERO BASE */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* IMAGE SLIDER */
.hero-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 6s ease;
}

/* ACTIVE IMAGE */
.hero-images img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* OVERLAY (Luxury gradient) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.4)
  );
  z-index: 2;
}

/* CONTENT */
/* HERO CONTENT FIX */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  z-index: 3;

  max-width: 600px;
  width: 90%;

  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

/* RESPONSIVE HEADLINE */
.hero-content h1 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* RESPONSIVE TEXT */
.hero-content p {
  font-size: clamp(14px, 2.5vw, 18px);
  margin-bottom: 25px;
  color: #e2e8f0;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* PRIMARY */
.btn.primary {
  background: linear-gradient(135deg, #38bdf8, #1e3a8a);
  color: white;
  box-shadow: 0 10px 30px rgba(56,189,248,0.5);
}

.btn.primary:hover {
  transform: translateY(-4px) scale(1.05);
}

/* SECONDARY */
.btn.secondary {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn.secondary:hover {
  background: white;
  color: #0f172a;
  transform: translateY(-4px);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 40px));
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}


/* WHY */
.why {
  padding: 80px 8%;
  background: #ED6F11;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
}

.why-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);
}

/* SERVICES */
.services {
  padding: 100px 8%;
  background: #f8fafc;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #0f172a;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #38bdf8;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

/* CARD */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,23,42,0.8),
    rgba(15,23,42,0.2)
  );
  opacity: 0.7;
  transition: 0.4s ease;
}

/* TEXT */
.service-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .service-overlay {
  opacity: 0.9;
}

.service-card:hover .service-info {
  transform: translateY(-5px);
}

/* FADE IN ANIMATION */
.service-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(4) { animation-delay: 0.6s; }
.service-card:nth-child(5) { animation-delay: 0.8s; }
.service-card:nth-child(6) { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 60px;
  background: #1e3a8a;
  color: white;
}

.stat-box i {
  font-size: 30px;
  margin-bottom: 10px;
}

/* DEST */
.destinations h2{
  color: white;
}

.destinations p{
  color: white;
}

.destinations {
  padding: 80px 8%;
  text-align: center;
 background: rgba(15, 23, 42, 0.95);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.dest-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

/* CTA */
.cta {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 70px;
}

/* =======================
   FOOTER STYLES (LIGHTER VERSION)
======================= */
.footer {
  background-color: #1e293b; /* lighter luxury dark */
  color: #ffffff;
  padding: 4rem 1rem 2rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer h2, .footer h4 {
  margin-bottom: 1rem;
  color: #38bdf8; /* sky blue accent */
}

.footer p, .footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a:hover {
  color: #f97316; /* adventure orange on hover */
}

/* SOCIAL ICONS USING PNG */
.footer-contact .footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.footer-social a img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #38bdf8;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #a1a1aa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-social {
    justify-content: center;
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}
/* HERO */
.about-hero {
    height: 90vh;
    background: url("images/holiday2.jpg") center/cover no-repeat;
    position: relative;
}

.about-hero-overlay {
    background: rgba(15, 23, 42, 0.75);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.3rem;
    margin-top: 15px;
    opacity: 0.9;
}

/* WELCOME */
.about-welcome {
    padding: 100px 10%;
    text-align: center;
    background: var(--primary);
    color: white;
}

.about-welcome h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-welcome p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: auto;
    opacity: 0.85;
}

/* SPLIT */
.about-split-section {
    padding: 100px 10%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
}

.about-split-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-split-image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 15px;
}

.about-split-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.about-split-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-split-text ul {
    margin-top: 20px;
    line-height: 2;
}


/* WHY US */
.about-why-us {
    padding: 100px 10%;
    background: var(--primary);
    color: white;
    text-align: center;
}

.about-why-us h2 {
    font-size: 3rem;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.about-why-card {
    padding: 30px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.about-why-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--accent);
}

/* PARALLAX */
.about-parallax {
    height: 70vh;
    background: url("images/city.jfif") center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-parallax-content {
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

/* AIRLINES */
.about-airlines {
    padding: 100px 10%;
    background: var(--light);
    text-align: center;
}

.about-airlines h2 {
    font-size: 2.5rem;
}

.about-airline-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.about-airline-card {
    min-width: 180px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-airline-card img {
    max-width: 100px;
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: 1s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: 1s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* MOBILE */
@media(max-width: 900px) {
    .about-split-container {
        flex-direction: column;
    }

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-airline-container {
        overflow-x: auto;
    }
}
/* HERO */
.contact-hero {
    height: 70vh;
    background: url("images/woman.jpg") center/cover no-repeat;
}

.contact-hero-overlay {
    background: rgba(15, 23, 42, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* INFO */
.contact-info {
    background: var(--primary);
    padding: 80px 10%;
}

.contact-info-container {
    display: flex;
    gap: 20px;
}

.contact-card {
    flex: 1;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--accent);
}


/* FORM SECTION */
.contact-form-section {
    padding: 100px 10%;
    background: linear-gradient(to right, #e0f2fe, #f8fafc);
}

.contact-form-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* TEXT SIDE */
.contact-form-text {
    flex: 1;
}

.contact-form-text h2 {
    font-size: 2.8rem;
}

.contact-consult-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--secondary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

/* FORM SIDE (HALF WIDTH) */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form button {
    padding: 15px;
    background: var(--highlight);
    color: white;
    border: none;
    border-radius: 8px;
}

/* CTA */
.contact-cta {
    padding: 80px 10%;
    background: var(--primary);
    text-align: center;
    color: white;
}

.contact-cta h2 {
    font-size: 2.5rem;
}

.contact-cta button {
    margin-top: 20px;
    padding: 15px 30px;
    background: var(--accent);
    border: none;
    color: white;
    border-radius: 8px;
}

/* MOBILE */
@media(max-width: 900px) {
    .contact-info-container {
        flex-direction: column;
    }

    .contact-form-container {
        flex-direction: column;
    }
}

/* ==============================
   VISA & IMMIGRATION PAGE STYLES
============================== */

/* HERO */
.visa-hero {
  height: 90vh;
  background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.95)),
              url("images/visa.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}


.visa-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.visa-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.visa-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #f97316;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.visa-btn:hover {
  background-color: #e25800;
  transform: scale(1.05);
}

/* INTRO */
.visa-intro {
  background-color: #0f172a;
  color: #f8fafc;
  padding: 3rem 1rem;
  text-align: center;
  font-size: 1.1rem;
}

/* VISA TYPES */
.visa-types {
  background-color: #1e293b;
  color: #f8fafc;
  padding: 3rem 1rem;
}

.visa-types h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #38bdf8;
}

.visa-types-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.visa-type-card {
  flex: 0 0 250px;
  background-color: #0f172a;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.visa-type-card img {
  width: 80px;
  margin-bottom: 1rem;
}

.visa-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(249,115,22,0.5);
}

.visa-type-card h3 {
  margin-bottom: 0.5rem;
  color: #38bdf8;
}

/* STEP-BY-STEP PROCESS */
.visa-process {
  background-color: #0f172a;
  padding: 3rem 1rem;
  color: #f8fafc;
}

.visa-process h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #38bdf8;
}

.visa-process-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 1rem;
}

.visa-step-card {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 15px rgba(56,189,248,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.visa-step-card img {
  width: 50px;
}

.visa-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(249,115,22,0.6);
}

.visa-step-card .arrow {
  font-size: 2rem;
  color: #f97316;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

/* CHECKLIST */
.visa-checklist {
  background-color: #1f2a44;
  color: #f8fafc;
  padding: 3rem 1rem;
}

.visa-checklist h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #38bdf8;
}

.visa-checklist ul {
  list-style: disc inside;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* FAQS */
.visa-faqs {
  background-color: #0f172a;
  padding: 3rem 1rem;
  color: #f8fafc;
}

.visa-faqs h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #38bdf8;
}

.faq-item {
  max-width: 700px;
  margin: 0 auto 1rem auto;
}

.faq-question {
  background-color: #1e293b;
  color: #f8fafc;
  padding: 1rem;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #f97316;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #1f2a44;
  padding: 0 1rem;
  border-radius: 0 0 8px 8px;
}

.faq-answer p {
  padding: 0.5rem 0;
}

/* CTA */
.visa-cta {
  background-color: #38bdf8;
  color: #0f172a;
  text-align: center;
  padding: 3rem 1rem;
}

.visa-cta h2 {
  margin-bottom: 1rem;
}

.visa-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .visa-types-container {
    flex-wrap: nowrap;
  }

  .visa-step-card .arrow {
    display: none;
  }

  .visa-process-container {
    max-height: none;
  }

  .visa-step-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* HERO */
.study-hero {
  height: 90vh;
  background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.95)),
              url("images/stude.jfif") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.study-hero h1 {
  font-size: 42px;
  max-width: 700px;
}

.study-buttons {
  margin-top: 20px;
}

/* SECTIONS */
.study-section {
  padding: 70px 20px;
  text-align: center;
}

.study-section.dark {
  background: #0f172a;
  color: #fff;
}

/* GRID */
.study-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.study-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
}

.study-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.study-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* DARK FIX */
.dark .study-card {
  background: rgba(255,255,255,0.05);
  color: white;
}

/* STEPS */
.study-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.step {
  background: #1e3a8a;
  color: white;
  padding: 12px 18px;
  border-radius: 20px;
}

/* LIST */
.study-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.study-list li {
  margin: 10px 0;
}

/* CTA */
.study-cta h2 {
  margin-bottom: 15px;
}

.study-cta p {
  margin-bottom: 25px;
}

.study-cta {
  margin-top: 10px;
}
.study-cta {
  background: #1e3a8a;
  color: white;
  padding: 70px 20px;
  text-align: center;
}

/* =========================
   📱 RESPONSIVENESS
========================= */

/* Tablet */
@media (max-width: 992px) {
  .study-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .study-hero h1 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .study-grid {
    grid-template-columns: 1fr;
  }

  .study-hero {
    height: auto;
    padding: 80px 20px;
  }

  .study-hero h1 {
    font-size: 26px;
  }

  .step {
    font-size: 14px;
  }
}
/* =======================
   SERVICES PAGE STYLES
======================= */
.services-btn-primary {
  background-color: #f97316;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.services-btn-primary:hover {
  background-color: #1e3a8a;
}

.services-btn-secondary {
  background-color: #1e3a8a;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.services-btn-secondary:hover {
  background-color: #f97316;
}

/* HERO */
.services-hero {
  height: 90vh;
  background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.95)),
              url("images/24.jfif") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}


.services-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.services-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* PAGE INTRO */
.services-page-intro {
  background: #f8fafc;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1rem;
  color: #0f172a;
}

/* SERVICES SECTION */
.services-section {
  padding: 4rem 1rem;
}

.services-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.services-reverse {
  flex-direction: row-reverse;
}

.services-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.services-info {
  flex: 1;
}

.services-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.services-info p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* CTA BOTTOM */
.services-cta-section {
  text-align: center;
  background: #1e3a8a;
  color: #fff;
  padding: 4rem 1rem;
}

.services-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-content {
    flex-direction: column;
  }
  .services-reverse {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .services-hero-content h1 {
    font-size: 2rem;
  }
  .services-hero-content p {
    font-size: 1rem;
  }
}

/* ANIMATION */
@keyframes services-fadeIn {
  to {
    opacity: 1;
  }
}

/* =======================
   FLOATING WHATSAPP ICON
======================= */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 10px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp img {
  width: 70%;
  height: 70%;
  display: block;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* JOB CARD WITH IMAGE */
.jobs-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
  display: flex;
  flex-wrap: wrap;
}

.jobs-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.jobs-card-image {
  flex: 1 1 300px;
}

.jobs-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.jobs-card-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
}

.jobs-card-header {
  background-color: #1e3a8a;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}

.jobs-card-body {
  padding: 1.5rem;
  flex: 1;
}

.jobs-card-footer {
  padding: 1rem;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .jobs-card {
    flex-direction: column;
  }

  .jobs-card-image img {
    height: 250px;
  }
}