 /* ROOT COLORS  */
:root {
    
  --font-family: 'Poppins', sans-serif;
  /* --primary-color: #1999FB; */
  --primary-color: #1E3A8A;
  --primary-light:#5dadea;
  --text-color: #1e293b;
  --text-dark:#000000;
  --border-color: #e5e7eb;
  --bg-white: #ffffff;
}
/* LEARNER SUPPORT section start */
/* (Left side styles kept exactly as provided) */
.support-section {
    padding: 0 0 60px ;
    position: relative;
}
.support-title{
    font-size: 2.063rem;
    font-weight: 500;
}
.support-title span {
    color: var(--primary-color);
    font-weight: 600; 
}
.support-subtitle { 
    color: var(--text-primary); 
    font-size: 1.25rem; 
    font-weight: 500;
    margin-bottom: 30px;
}
.contact-row-wrapper{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}
.contact-row { 
    display: flex;
    align-items: center; 
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-row >img{
    height: 39px;
    width: 39px;
    object-fit: contain;
    flex-shrink: 0;
}
.contact-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-label { 
    font-weight: 500; 
    font-size: 1.35rem; 
    color: var(--text-primary); 
    min-width: 170px;
    flex-shrink: 0;
}
.phone-box {
    border: 1px solid var(--border-color);
    padding: 12px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 400;
    transition: var(--transition);
    flex-wrap: wrap;
}
.phone-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(25, 153, 251, 0.1);
}
.phone-box >img{
    height: 29px;
    width: 29px;
    object-fit: contain;
}

/* =============================================
   NEW MODERN WHATSAPP WIDGET (Replaced Call Widget)
   ============================================= */
.whatsapp-widget {
    position: fixed; 
    right: 5%;
    bottom: 30px; 
    display: flex; 
    align-items: center; 
    z-index: 1000; 
    gap: 12px;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366; 
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex; 
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.25s ease;
    text-decoration: none;
    /* Apply both Pulse and Vibration */
    animation: wa-pulse 2s infinite, wa-vibrate 4s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.01) !important;
    /* background: #128C7E; */
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5) !important;
    
}

.whatsapp-btn i {
    font-size: 40px;
    color: white;
    transition: transform 0.3s ease;

}

/* Animation: Subtle Vibration every 4 seconds */
@keyframes wa-vibrate {
    0%, 90%, 100% { transform: rotate(0deg); }
    92% { transform: rotate(-10deg); }
    94% { transform: rotate(10deg); }
    96% { transform: rotate(-10deg); }
    98% { transform: rotate(10deg); }
}

/* Animation: Professional Pulse Ring */
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Speech Bubble Styles (Inherited and Refined) */
.speech-bubble {
    background: white;
    border: 1px solid var(--border-light-color);
    border-radius: 16px;
    font-weight: 500;
    padding: 16px 20px;
    width: 355px;
    font-size: 1.15rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    position: relative;
    margin-right: 15px;
}

.speech-bubble::after {
    content: '';
    position: absolute; 
    right: -25px; 
    top: 50%;
    transform: translateY(-50%);
    border-top: 15px solid transparent; 
    border-bottom: 15px solid transparent; 
    border-left: 25px solid white;  
}

.close-btn {
    position: absolute;
    top: -10px; 
    right: -10px;
    background: #ef4444;
    color: white; 
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px; 
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ========== FULL RESPONSIVE BREAKPOINTS ========== */

@media (max-width: 992px) {
    .support-section { padding: 50px 0; }
    .support-title { font-size: 1.85rem; }
    .support-subtitle { font-size: 1.2rem; }
    .contact-label { font-size: 1.25rem; min-width: 150px; }
    .speech-bubble { width: 300px; font-size: 1rem; }
    .whatsapp-widget { right: 20px; bottom: 25px; }
}

@media (max-width: 768px) {
    .support-title { font-size: 1.65rem; }
    .support-subtitle { font-size: 1.1rem; }
    .contact-row { gap: 14px; margin-bottom: 15px; }
    .phone-box { font-size: 1rem; padding: 8px 18px; }
    .whatsapp-btn { width: 56px; height: 56px; }
    .whatsapp-btn img { height: 30px; width: 30px; }
    .speech-bubble { width: 260px; font-size: 0.9rem; }
}

@media (max-width: 576px) {
    .support-section { padding: 40px 0 100px 0; }
    .support-title, .support-subtitle { text-align: center; }
    
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        background: #f8f9fa;
        padding: 16px;
        border-radius: 15px;
        margin-bottom: 16px;
    }
    .phone-box { width: 100%; justify-content: center; }
    
    /* Center widget for mobile */
    .whatsapp-widget {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
        width: auto;
        justify-content: center;
    }
    .speech-bubble {
        width: 240px;
        font-size: 0.85rem;
        margin-right: 0;
    }
    /* Hide speech bubble arrow on mobile if it looks cluttered */
    .speech-bubble::after { right: -15px; border-left-width: 15px; }
}

@media (max-width: 400px) {
    .speech-bubble { width: 200px; font-size: 0.8rem; }
    .whatsapp-btn { width: 50px; height: 50px; }
}
/* LEARNER SUPPORT section end */

/* CTA SECTION (BLUE) section*/
.cta-section { 
    background-color: var(--primary-color); 
    color: white; 
    padding: 50px 0 40px; 
    text-align: center;

}
.offer-badge {
    background: white; 
    color: var(--primary-color);
        padding: 5px 41px;
    border-radius: 33px; 
    font-weight: 600;
        font-size: 1.125rem;
        display: inline-block;
        margin-bottom: 25px;
        position: relative;
}
.offer-badge img{
    height: 50px;
    width: 50px;
        object-fit: contain;
        position: absolute;
        bottom: -13%;
        right:-5%;
}
.cta-title { 
    font-weight: 500;
        font-size: 1.938rem; 
        margin-bottom: 15px; 
    }
.cta-subtitle {
        font-size: 1.25rem; 
        font-weight: 500; 
        margin: 0 auto 30px;  
    }
    .cta-btns {
flex-wrap: wrap;
}

.cta-section .btn-white { 
    background: white;
        color: black;
        font-weight: 500;
        font-size: 1rem; 
        border-radius: 10px;
        padding: 12px 21px;
        border: none;
        }
.cta-section .btn-outline-white { 
    border: 2px solid white; 
    color: white; 
    font-weight: 500;
    font-size: 1rem; 
    border-radius: 10px;
        padding: 10px 21px;
        background: transparent; 
    }

.cta-section .social-follow {
    margin-top: 30px;
}

.cta-section .social-follow span {
    display: block;
    margin-bottom: 11px;

    font-weight: 600;
    font-size: 1.25rem;
}

/* Social icons container */
.cta-section .social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Icon button */
.cta-section .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;

    position: relative;
}

/* Icon image */
.cta-section .social-icons img {
    width: 38px;

    transition: transform 0.3s ease;
}

/* Hover effect */
.cta-section .social-icons a:hover {
    transform: translateY(-5px) scale(1.08);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.14),
        0 4px 10px rgba(0,0,0,0.08);

    background-color: rgba(255,255,255,0.08);
}

/* Slight icon zoom */
.cta-section .social-icons a:hover img {
    transform: scale(1.1);
}

/* Active / click */
.cta-section .social-icons a:active {
    transform: translateY(-1px) scale(0.95);

    box-shadow:
        0 4px 10px rgba(0,0,0,0.10);
}
@media (max-width: 992px) {
  .cta-title {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 16px;
    max-width: 600px;
  }
}

@media (max-width: 768px) {

  .cta-section {
    padding: 40px 15px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

 .cta-section .btn-white,
 .cta-section .btn-outline-white {
    width: 100%;
    max-width: 280px;
  }

  .offer-badge {
    font-size: 14px;
    padding: 6px 20px;
  }

  .offer-badge img {
    height: 30px;
    width: 30px;
    right: -8%;
  }

 .cta-section .social-follow span {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 22px;
  }

  .cta-subtitle {
    font-size: 13px;
  }

 .cta-section .btn-white,
 .cta-section .btn-outline-white {
    font-size: 14px;
    padding: 10px 18px;
  }
}

/* CTA SECTION (BLUE) section end*/

 /*  FOOTER (DARK) section */
.main-footer {
     background-color: var(--text-dark);
      color: white;
      padding: 30px 0px;
     }
.footer-logo img { 
     margin-bottom: 20px;
      background: white; 
      padding: 10px 5px; 
      border-radius: 4px;
        max-width: 206px;
    }
.footer-tagline {
     color: var(--bg-white); 
     font-size: 1.125rem; 
     margin-bottom: 20px;
     font-weight: 400; 
    }
/* .footer-social-icons a{
    margin-right: 8px;
    display: inline-block;
} */
/* .footer-social-icons img {
  width: 38px;
} */
/* Social icons container */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icon button */
.footer-social-icons a{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;

    position: relative;
}

/* Icon image */
.footer-social-icons img {
    width: 38px;

    transition: transform 0.3s ease;
}

/* Hover effect */
.footer-social-icons a:hover {
    transform: translateY(-5px) scale(1.08);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.14),
        0 4px 10px rgba(0,0,0,0.08);

    background-color: rgba(255,255,255,0.2);
}

/* Slight icon zoom */
.footer-social-icons a:hover img {
    transform: scale(1.1);
}

/* Active / click */
.footer-social-icons a:active {
    transform: translateY(-1px) scale(0.95);

    box-shadow:
        0 4px 10px rgba(0,0,0,0.10);
}
.footer-app-buttons .btn {
    border: 1px solid var(--bg-white);
     color: white; 
     border-radius: 34px;
    font-size: 1.125rem;
     font-weight: 600;
      padding: 10px 25px; 
      margin-bottom: 10px; 
      width: 273px; 
      text-align: center;
}

.footer-col-title { 
    font-weight: 600;
     margin-bottom: 25px;
      font-size: 1.25rem; 
    }
    .footer-links {
  padding: 0;
}
.footer-links li {
     margin-bottom: 8px;
      list-style: none; 
    }
.footer-links a { 
    color: var(--border-color); 
    font-size: 1.125rem;
    font-weight: 500; 
    text-decoration: none;
}
.footer-links a:hover { 
    color: white;
 }

/* @media (max-width: 991px) {
    .call-widget { position: relative; margin-top: 40px; justify-content: center; right: 0; }
    .cta-title { font-size: 1.8rem; }
} */
 @media (max-width: 991px) {

  /* TOP SECTION STACK */
  .main-footer .row.align-items-center {
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-app-buttons {
    align-items: center !important;
    margin-top: 20px;
  }

  .footer-app-buttons .btn {
    width: 220px;
  }
}
@media (max-width: 768px) {

  .main-footer {
    padding: 40px 15px;
  }

  .footer-logo img {
    max-width: 130px;
  }

  .footer-tagline {
    font-size: 14px;
  }

  /* BUTTONS STACK */
  .footer-app-buttons .btn {
    width: 100%;
    max-width: 250px;
    font-size: 14px;
  }

  /* GRID FIX */
  .main-footer .row.mt-5 {
    margin-top: 30px !important;
  }

  .footer-col-title {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 13px;
  }
}
@media (max-width: 480px) {

  .footer-col-title {
    font-size: 15px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-app-buttons .btn {
    padding: 8px 16px;
  }
}