/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f8f9fb;
    color: #222;
    scroll-behavior: smooth;
}

/* ----------------------------------
   HEADER
----------------------------------- */
.header {
    width: 100%;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ff416c;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    color: #444;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.nav a.active,
.nav a:hover {
    background: #ff416c;
    color: #fff;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 5px;
}

/* ----------------------------------
   HERO
----------------------------------- */
.hero {
    padding: 120px 40px;
    min-height: 75vh;
    background: linear-gradient(120deg, #ff416c, #ff4b2b);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.typing-text {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-buttons {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary {
    background: #fff;
    color: #ff416c;
}

.secondary {
    border: 2px solid white;
    color: white;
}

/* ----------------------------------
   SECTION TITLES
----------------------------------- */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ----------------------------------
   ABOUT SECTION
----------------------------------- */
.about {
    padding: 80px 40px;
}

.about-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-img img {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    max-width: 550px;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.about-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
}

/* ----------------------------------
   SERVICES
----------------------------------- */
.services {
    padding: 90px 40px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: 310px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-card {
    margin-top: auto;
    padding: 10px 20px;
    background: #ff416c;
    color: white;
    border-radius: 25px;
    text-decoration: none;
}

.highlight {
    border: 2px solid #ff416c;
}

/* ------------------------------
   CONTACT
------------------------------ */
.contact {
    padding: 120px 40px;
    background: #fdfdfd;
}

.contact-wrapper {
    max-width: 650px;
    margin: auto;
    padding: 40px 35px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
}

.submit-btn {
    background: #ff416c;
    color: white;
    padding: 14px;
    border-radius: 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

/* ----------------------------------
   YOUTUBE SECTION
----------------------------------- */
.youtube-section {
    padding: 100px 40px;
}

.youtube-container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.youtube-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.yt-btn {
    background: #ff0000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

/* ----------------------------------
   MVV SECTION
----------------------------------- */
.mvv-section {
    padding: 90px 40px;
}

.mvv-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.mvv-card {
    width: 310px;
    padding: 28px 25px;
    background: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mvv-card h3 {
    font-size: 22px;
    color: #ff416c;
    margin-bottom: 12px;
}

/* ----------------------------------
   POPUP (OLD VERSION)
----------------------------------- */
.popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 2000;
}

.popup-box {
    width: 92%;
    max-width: 380px;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 22px rgba(0,0,0,0.2);
    animation: popScale 0.4s ease;
}

.popup-img {
    width: 100%;
    max-width: 310px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 32px;
    cursor: pointer;
    color: #444;
    transition: .3s;
}

.close-popup:hover {
    color: #ff416c;
}

/* ----------------------------------
   FOOTER
----------------------------------- */
.footer {
    background: #222;
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 16px;
}

.footer a {
    color: #ff416c;
}

/* ----------------------------------
   RESPONSIVE
----------------------------------- */
@media (max-width: 900px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 40px;
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    .nav.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        text-align: center;
    }

    .typing-text {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .youtube-container iframe {
        height: 220px;
    }
}


/* ----------------------------------
   SUBSCRIBE POPUP
----------------------------------- */

.subscribe-popup {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2500;
}

.subscribe-box {
    width: 90%;
    max-width: 350px;
    background: #ffffff;
    padding: 22px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    position: relative;
    animation: slideUp 0.4s ease-out;
    text-align: center;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.subscribe-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #444;
}

.subscribe-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff416c;
}

.subscribe-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
}

.subscribe-btn {
    display: inline-block;
    padding: 12px 18px;
    background: #ff0000;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.subscribe-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
}

/* ----------------------------------
    FLOATING BUTTONS
----------------------------------- */
.floating-buttons {
    position: fixed;
    bottom: 80px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3000;
}

.float-btn {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    animation: pulse 1.6s infinite ease-in-out;
    transition: 0.3s;
}

.float-btn img {
    width: 28px;
    height: 28px;
}

.float-btn:hover {
    transform: scale(1.15);
}

/* WhatsApp green glow */
.whatsapp-btn {
    animation-delay: 0.1s;
    border: 3px solid #25d366;
}

/* Call blue glow */
.call-btn {
    border: 3px solid #007bff;
}

/* Pulsing animation */
@keyframes pulse {
    0%   { box-shadow: 0 0 0 rgba(0,0,0,0.3); }
    50%  { box-shadow: 0 0 18px rgba(0,0,0,0.3); }
    100% { box-shadow: 0 0 0 rgba(0,0,0,0.3); }
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .floating-buttons {
        right: 18px;
        bottom: 70px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
    .float-btn img {
        width: 25px;
    }
}

/* ----------------------------------
    INFO RUNNING BAR
----------------------------------- */
.info-bar {
    width: 100%;
    background: #ff416c;
    color: white;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-size: 14px;
}

.info-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 27s linear infinite;
}

@keyframes scrollText {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Hide when empty */
.info-bar.hidden {
    display: none;
}

/* Small service icons */
.service-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    display: block;
    object-fit: contain;
}
/* QUICK LINKS SECTION */
.quick-links-section {
    padding: 60px 40px;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.ql-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.ql-col {
    width: 22%;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ql-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ff416c;
    margin-bottom: 10px;
}

.ql-col a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.ql-col a:hover {
    color: #ff416c;
    padding-left: 5px;
}

/* Mobile */
@media (max-width: 600px) {
    .ql-container {
        flex-direction: column;
        gap: 25px;
    }

    .ql-col {
        width: 100%;
    }
}
/* QUICK LINKS SECTION */
.quick-links-section {
    padding: 60px 40px;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.ql-container {
    max-width: 1200px;
    margin: auto;               /* CENTER THE SECTION */
    display: flex;
    justify-content: center;    /* CENTER COLUMNS */
    align-items: flex-start;
    text-align: center;         /* CENTER TEXT */
    gap: 60px;                  /* MORE EVEN SPACING */
    flex-wrap: wrap;
}

.ql-col {
    width: 200px;               /* SAME WIDTH FOR BALANCE */
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ql-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ff416c;
    margin-bottom: 10px;
}

.ql-col a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.ql-col a:hover {
    color: #ff416c;
    transform: translateX(4px);
}

/* MOBILE VIEW */
@media (max-width: 600px) {
    .ql-container {
        flex-direction: column;
        align-items: center;   /* CENTER MOBILE COLUMNS */
        gap: 30px;
    }

    .ql-col {
        width: 100%;
        max-width: 280px;
    }
}

/* ================================
   FIX: Subscribe Popup (Mobile)
================================ */
@media (max-width: 768px) {
  .subscribe-popup {
    align-items: flex-start;
    padding-top: 80px; /* pushes popup down */
  }

  .subscribe-box {
    margin-bottom: 120px; /* space from floating icons */
  }
}

/* ================================
   FIX: YouTube Button Mobile
================================ */
@media (max-width: 768px) {
  .yt-btn {
    display: block;
    width: 90%;
    margin: 20px auto 0;
    text-align: center;
    font-size: 16px;
    padding: 14px 18px;
  }
}
