body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
       COLOR VARIABLES
    ================================ */
    :root {
      --primary-color: #ff9742;
      --secondary-color: #ff7b2f;
      --accent-color: #5cb85c;
      --text-color: #000000;
      --white-color: #ffffff;
      --light-bg: #ffefe0;
      --border-color: #eeeeee;
      --shadow-color: rgba(0, 0, 0, 0.1);
    }

    /* ===============================
       TOPBAR
    ================================ */
    .topbar {
      background-color: var(--primary-color);
      color: var(--white-color);
      font-size: 14px;
      padding: 6px 0;
      border-end-end-radius: 50px;
      border-bottom-left-radius: 50px;
    }

    .topbar a {
      color: var(--white-color);
      text-decoration: none;
    }

    .topbar a:hover {
      text-decoration: underline;
    }
    /* ✅ Hide Topbar on Mobile Screens */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* ===============================
   NAVBAR
=============================== */
.navbar {
  background-color: var(--white-color);
  box-shadow: 0 1px 5px var(--shadow-color);
  padding: 10px 0;
  z-index: 999 !important;
}

.navbar-brand span {
  color: var(--text-color);
  font-weight: 700;
  font-size: 20px;
}

.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.btn-enroll {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-enroll:hover {
  background-color: var(--secondary-color);
}

/* ===============================
   MOBILE SLIDE MENU
=============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100vh;
  background: var(--white-color);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 2000;
  padding-top: 70px;
}

.mobile-menu.show {
  left: 0;
}

.mobile-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  transition: background 0.3s ease;
}

.mobile-menu a:hover {
  background: var(--light-bg);
  color: var(--secondary-color);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--secondary-color);
}

/* ===============================
   OVERLAY BACKGROUND
=============================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1500;
}

.overlay.show {
  display: block;
}


/* features-section */
.features-section {
  background: #ffffff;
}

.feature-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 3px 18px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.icon-wrap {
  width: 75px;
  height: 75px;
  background: #ffe5d2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
}

.icon-wrap i {
  font-size: 32px;
  color: #ff7a00;
}

.feature-box h5 {
  text-align: left;
}

.feature-box p {
  margin: 0;
  color: #666;
  text-align: left;
}


.winning-section {
  background: #fff;
}

/* Title */
.section-title {
  font-size: 2.5rem;
  color: #111;
}

.section-title span {
  font-weight: 800;
}

.title-underline {
  width: 90px;
  height: 4px;
  background: #ff8c00;
  margin-top: 8px;
  border-radius: 10px;
}

/* Cards */
.win-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.3s ease;
  border-bottom: 5px solid #ff7a00;
}



/* Text styles */
.category {
  font-size: 0.9rem;
  color: #888;
  font-weight: 600;
}

.win-card p {
  color: #666;
  line-height: 1.6;
}

.learn-more {
  color: #ff8c00;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.learn-more i {
  margin-left: 5px;
}

/* Hover */
.win-card:hover {
  transform: translateY(-5px);
}


/* opportunities-section */
.opportunities {
    font-family: "Poppins", sans-serif;
}

.opp-title {
    font-size: 30px;
    font-weight: 700;
}

.opp-title span {
    color: #000;
}

.underline {
    width: 110px;
    height: 4px;
    background: #ff8c2a;
    margin-top: 10px;
}

.opp-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.opp-card-title {
    font-size: 24px;
    font-weight: 700;
}

.opp-card-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.opp-card img {
    border-radius: 6px;
}

/* Button Colors same as screenshot using Bootstrap override */
.btn-warning {
    background: #ff8c2a !important;
    border-color: #ff8c2a !important;
    border-radius: 30px;
}

.btn-warning:hover {
    background: #e57a1f !important;
}

.btn-outline-warning {
    color: #ff8c2a !important;
    border-color: #ff8c2a !important;
    border-radius: 30px;
}

.btn-outline-warning:hover {
    background: #ff8c2a !important;
    color: #fff !important;
}


/* footer scrollTopBtn */
 #scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    width: 45px;
    height: 45px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }
  #scrollTopBtn:hover {
    background-color: #0dcaf0;
    transform: translateY(-3px);
  }

  /* contact from */
      .contact-left {
        
        color: #ffffff;
        padding: 60px;
        height: 100%;
    }

    .gold-line {
        width: 60px;
        height: 4px;
        background: #d4a35a;
        margin: 15px 0;
    }

    .contact-info i {
        color: #d4a35a;
        font-size: 20px;
        margin-right: 10px;
    }

    .divider-line {
        border-left: 2px solid rgba(255, 255, 255, 0.2);
        height: 200px;
        margin: auto;
    }

    .contact-form-box {
        background: #ffffff;
        padding: 50px;
        border-radius: 10px;
        box-shadow: 0 0 25px rgba(0,0,0,0.08);
    }

    .contact-form-box input,
    .contact-form-box select {
        padding: 14px;
    }

    .contact-form-box button {
        background: #0066cc;
        border: none;
        padding: 10px 30px;
        color: #fff;
        font-size: 18px;
        border-radius: 6px;
    }

/* testimonial */
        .testimonial-box {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border: 1px solid #eee;
        min-height: 260px;
    }

    .testimonial-user {
        display: flex;
        align-items: center;
        margin-top: 25px;
    }

    .testimonial-user img {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50%;
        margin-right: 20px;
        
    }

    .testimonial-user h5 {
        margin: 0;
        font-weight: 600;
        font-size: 20px;
    }

    .testimonial-user span {
        font-size: 14px;
        color: #007bff;
    }


    /* Stylish Animated Sticky WhatsApp Button */
.wa-left-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    
    /* ANIMATION */
    animation: wa-pulse 2s infinite ease-in-out;
    transition: all .3s ease;
}

/* WhatsApp Icon */
.wa-left-btn i {
    font-size: 22px;
}

/* Hover Effect */
.wa-left-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #20c15a, #0f7c6e);
}

/* Pulse Animation */
@keyframes wa-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* CTA Banner Section */
.cta-banner {
    background: url('https://www.globalplacements.ind.in/wp-content/themes/globalplacements-website-theme/assets/images/contact-bg.jpg') center/cover no-repeat;
    position: relative;
    padding: 90px 0;
}

/* Dark Overlay */
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Content Positioning */
.cta-banner .container {
    position: relative;
    z-index: 2;
}

/* Text Styling */
.cta-text h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 8px;
    font-weight: 300;
}

.cta-text h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

/* Button Styling */
.cta-btn {
    background: #ff8a2a;
    padding: 18px 40px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #e8771f;
    transform: translateY(-3px);
}
