/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--dark-text); overflow-x: hidden; background: #FFFFFF; }
a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; padding: 0; margin: 0; }
.section-padding { padding: 50px 0; }
.section-padding-top { padding-top: 50px; }

/* ===== FONTS ===== */
.hero-text-wrapper h1 { font-family: 'Poppins', sans-serif; font-weight: 800; }
.navbar .navbar-nav .nav-link { font-family: 'Poppins', sans-serif; font-weight: 500; }
.course-card h5 { font-family: 'Poppins', sans-serif; font-weight: 600; }
p, .hero-text-wrapper .hero-subtitle, .trust-card p, .course-card p, .testimonial-card p, footer p, .section-heading p { font-family: 'Poppins', sans-serif; font-weight: 400; }

/* ===== COLORS ===== */
:root { --primary-blue: #062D6B; --secondary-blue: #0B51E4; --orange: #FF7101; --light-bg: #FFFFFF; --white: #FFFFFF; --dark-text: #062D6B; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--primary-blue); color: var(--white); font-size: 13px; padding: 8px 0; position: relative; z-index: 1001; }
.top-bar .contact-info { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.top-bar .contact-info span { display: inline-flex; align-items: center; gap: 6px; }
.top-bar .contact-info i { color: var(--orange); font-size: 14px; }
.top-bar .social-icons { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.top-bar .social-icons a { color: var(--white); width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; transition: all 0.3s ease; }
.top-bar .social-icons a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar { background: var(--white); padding: 0; box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease; }
.navbar .navbar-nav .nav-link { color: var(--dark-text); font-weight: 500; font-size: 16px; padding: 28px 16px !important; position: relative; transition: all 0.3s ease; }
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active { color: var(--orange); }
.navbar .navbar-nav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) scaleX(0); width: 60%; height: 3px; background: var(--orange); border-radius: 2px; transition: transform 0.3s ease; }
.navbar .navbar-nav .nav-link:hover::after, .navbar .navbar-nav .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.navbar .btn-enroll { background: var(--orange); color: var(--white); font-weight: 600; font-size: 16px; padding: 12px 28px; border-radius: 50px; border: none; transition: all 0.3s ease; margin-left: 15px; }
.navbar .btn-enroll:hover { background: var(--primary-blue); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255,113,1,0.4); color: var(--white); }
.navbar-toggler { border: none; font-size: 24px; padding: 10px; }
.navbar-toggler:focus { box-shadow: none; }

/* ===== HERO SLIDER ===== */
.hero-slider-wrapper { position: relative; }
.hero-slider { height: 520px; width: 100%; }
.hero-slider .swiper-slide { position: relative; height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero-slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-slide-bg .slide-bg-img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 8s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-slide-bg .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(6,45,107,0.55); z-index: 2; }
.hero-slide-content { position: relative; z-index: 10; width: 100%; }
.hero-slide-content .row { align-items: center; }
.hero-text-wrapper { padding: 40px 0; }
.hero-text-wrapper .badge-text { display: inline-block; background: rgba(255,113,1,0.15); color: var(--orange); font-weight: 600; font-size: 14px; padding: 6px 20px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(255,113,1,0.3); }
.hero-text-wrapper h1 { font-size: 60px; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 15px; }
.hero-text-wrapper h1 .highlight { color: var(--orange); }
.hero-text-wrapper .hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 25px; font-weight: 400; max-width: 580px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; }
.hero-features .feature-item { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); padding: 6px 16px; border-radius: 50px; color: var(--white); font-size: 13px; font-weight: 500; }
.hero-features .feature-item i { color: var(--orange); font-size: 14px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 15px; }
.btn-primary-custom { background: var(--orange); color: var(--white); font-weight: 600; font-size: 16px; padding: 14px 34px; border-radius: 50px; border: 2px solid var(--orange); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary-custom:hover { background: var(--primary-blue); border-color: var(--primary-blue); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,113,1,0.4); color: var(--white); }
.hero-btns .btn-outline-custom { background: transparent; color: var(--white); font-weight: 600; font-size: 16px; padding: 14px 34px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.4); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.hero-btns .btn-outline-custom:hover { background: var(--white); color: var(--primary-blue); border-color: var(--white); transform: translateY(-2px); }
.hero-image-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-wrapper .hero-main-img { position: relative; z-index: 5; max-width: 100%; height: auto; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-globe { position: absolute; top: 10%; right: 5%; width: 100px; height: 100px; border-radius: 50%; border: 2px solid rgba(255,113,1,0.3); animation: spin 20s linear infinite; z-index: 3; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-globe::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border-radius: 50%; border: 1px solid rgba(255,113,1,0.2); }
.hero-globe-dot { position: absolute; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; top: 30%; left: 40%; box-shadow: 0 0 20px rgba(255,113,1,0.8); }
.hero-glowing-effects { position: absolute; top: 20%; right: 10%; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,113,1,0.06); z-index: 2; animation: pulseGlow 4s ease-in-out infinite; }
@keyframes pulseGlow { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.2); opacity: 1; } }
.hero-glowing-effects-2 { position: absolute; bottom: 10%; left: 5%; width: 200px; height: 200px; border-radius: 50%; background: rgba(11,81,228,0.12); z-index: 2; animation: pulseGlow2 5s ease-in-out infinite; }
@keyframes pulseGlow2 { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.hero-monitors { position: absolute; bottom: 0; right: 0; width: 100%; height: 100%; z-index: 1; background: rgba(11,81,228,0.04); pointer-events: none; }
.hero-slider .swiper-pagination { bottom: 30px !important; }
.hero-slider .swiper-pagination-bullet { width: 12px; height: 12px; background: rgba(255,255,255,0.4); opacity: 1; margin: 0 6px !important; border-radius: 50%; transition: all 0.3s ease; }
.hero-slider .swiper-pagination-bullet-active { background: var(--orange); width: 35px; border-radius: 6px; }
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { color: var(--white); background: rgba(255,255,255,0.15); width: 55px; height: 55px; border-radius: 50%; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s ease; }
.hero-slider .swiper-button-next::after, .hero-slider .swiper-button-prev::after { font-size: 20px; font-weight: 700; }
.hero-slider .swiper-button-next:hover, .hero-slider .swiper-button-prev:hover { background: var(--orange); border-color: var(--orange); box-shadow: 0 5px 20px rgba(255,113,1,0.4); }

/* ===== TRUST SECTION ===== */
.trust-section { position: relative; z-index: 20; margin-top: -50px; padding-bottom: 30px; }
.trust-card { background: var(--white); border-radius: 16px; padding: 35px 30px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.4s ease; height: 100%; border: 1px solid rgba(0,0,0,0.03); position: relative; overflow: hidden; }
.trust-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.trust-card:hover::before { transform: scaleX(1); }
.trust-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.trust-card .trust-icon { width: 70px; height: 70px; background: var(--secondary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 28px; color: var(--white); transition: all 0.4s ease; }
.trust-card:hover .trust-icon { background: var(--orange); transform: rotateY(180deg); }
.trust-card h5 { font-size: 24px; font-weight: 600; color: var(--primary-blue); margin-bottom: 10px; }
.trust-card p { font-size: 16px; color: var(--dark-text); line-height: 1.7; margin-bottom: 0; }

/* ===== COURSES SECTION ===== */
.courses-section { background: rgba(11,81,228,0.03); padding: 50px 0; }
.section-heading { text-align: center; margin-bottom: 35px; }
.section-heading h2 { font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 5px; }
.section-heading h2 .text-blue { color: var(--primary-blue); }
.section-heading h2 .text-orange { color: var(--orange); }
.section-heading .heading-underline { width: 60px; height: 4px; background: var(--orange); border-radius: 2px; margin: 12px auto 16px; }
.section-heading p { font-size: 16px; color: var(--dark-text); max-width: 600px; margin: 0 auto; line-height: 1.7; opacity: 0.7; }
.course-card { background: var(--white); border-radius: 16px; padding: 40px 30px; text-align: center; box-shadow: 0 5px 30px rgba(0,0,0,0.06); transition: all 0.4s ease; height: 100%; border: 1px solid rgba(0,0,0,0.04); position: relative; overflow: hidden; }
.course-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease; }
.course-card:hover::before { transform: scaleX(1); }
.course-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.course-card .course-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 34px; transition: all 0.4s ease; }
.course-card:hover .course-icon { transform: scale(1.1) rotate(5deg); }
.course-card .course-icon.blue-icon { background: #FF7101; color: var(--white); }
.course-card .course-icon.purple-icon { background: #0B51E4; color: var(--white); }
.course-card .course-icon.green-icon { background: #0B51E4; color: var(--white); }
.course-card .course-icon.orange-icon { background: #FF7101; color: var(--white); }
.course-card .course-icon.teal-icon { background: #FF7101; color: var(--white); }
.course-card .course-icon.red-icon { background: #0B51E4; color: var(--white); }
.course-card .course-icon.cyan-icon { background: #FF7101; color: var(--white); }
.course-card .course-icon.pink-icon { background: #FF7101; color: var(--white); }
.course-card h5 { font-size: 24px; font-weight: 600; color: var(--dark-text); margin-bottom: 14px; }
.course-card p { font-size: 16px; color: var(--dark-text); line-height: 1.7; margin-bottom: 22px; opacity: 0.7; }
.course-card .btn-learn-more { background: var(--orange); color: var(--white); font-weight: 600; font-size: 16px; padding: 11px 30px; border-radius: 50px; border: 2px solid var(--orange); transition: all 0.3s ease; display: inline-block; }
.course-card .btn-learn-more:hover { background: transparent; color: var(--orange); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255,113,1,0.2); }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 50px 0; background: var(--white); }
.about-section .about-img-wrapper { position: relative; border-radius: 16px; overflow: hidden; }
.about-section .about-img-wrapper img { width: 100%; border-radius: 16px; }
.about-section .about-img-wrapper .experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--orange); color: var(--white); width: 130px; height: 130px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; font-size: 32px; line-height: 1.2; box-shadow: 0 10px 30px rgba(255,113,1,0.3); }
.about-section .about-img-wrapper .experience-badge span { font-size: 14px; font-weight: 500; }
.about-section .about-content h3 { font-size: 32px; font-weight: 800; color: var(--primary-blue); margin-bottom: 8px; }
.about-section .about-content .about-underline { width: 50px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 18px; }
.about-section .about-content p { font-size: 16px; color: var(--dark-text); line-height: 1.8; margin-bottom: 15px; opacity: 0.75; }
.about-section .about-features-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 25px; }
.about-section .about-features-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--dark-text); font-weight: 500; }
.about-section .about-features-list li i { color: var(--orange); font-size: 18px; width: 24px; }

/* ===== SUCCESS STATS ===== */
.stats-section { padding: 40px 0 50px; background: var(--primary-blue); position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,113,1,0.08); }
.stats-section::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.stat-item { text-align: center; position: relative; z-index: 2; padding: 20px 15px; }
.stat-item .stat-number { font-size: 48px; font-weight: 800; color: var(--orange); line-height: 1.1; margin-bottom: 5px; }
.col:nth-child(even) .stat-item .stat-number { color: var(--white); }
.col:nth-child(even) .stat-item .stat-label { color: var(--white); }
.stat-item .stat-number .plus { font-size: 30px; color: inherit; }
.stat-item h6 { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* ===== FREE DEMO BANNER ===== */
.demo-banner { padding: 0; background: var(--orange); position: relative; overflow: hidden; }
.demo-banner .banner-content { padding: 40px 0; text-align: center; position: relative; z-index: 2; }
.demo-banner .banner-content h3 { font-size: 34px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.demo-banner .banner-content p { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }
.demo-banner .btn-demo { background: var(--white); color: var(--orange); font-weight: 600; font-size: 16px; padding: 15px 40px; border-radius: 50px; border: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; animation: pulseBtn 2s ease-in-out infinite; }
@keyframes pulseBtn { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); } 50% { box-shadow: 0 0 0 15px rgba(255,255,255,0); } }
.demo-banner .btn-demo:hover { background: var(--primary-blue); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.demo-banner .banner-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); z-index: 1; }
.demo-banner .banner-shape.shape-1 { width: 200px; height: 200px; top: -60px; left: -60px; }
.demo-banner .banner-shape.shape-2 { width: 150px; height: 150px; bottom: -40px; right: -40px; }
.demo-banner .banner-shape.shape-3 { width: 80px; height: 80px; top: 50%; right: 15%; transform: translateY(-50%); }

/* ===== FAQS ===== */
.faq-section { padding: 50px 0; background: var(--white); }
.faq-section .accordion-item { border: 1px solid rgba(0,0,0,0.08); border-radius: 12px !important; margin-bottom: 12px; overflow: hidden; }
.faq-section .accordion-button { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; color: var(--dark-text); padding: 18px 24px; background: var(--white); box-shadow: none; }
.faq-section .accordion-button:not(.collapsed) { color: var(--primary-blue); background: rgba(6,45,107,0.03); }
.faq-section .accordion-button::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF6B00' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); transition: all 0.3s ease; }
.faq-section .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.faq-section .accordion-body { padding: 0 24px 20px; font-family: 'Poppins', sans-serif; font-size: 15px; color: var(--dark-text); line-height: 1.8; opacity: 0.75; }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section { padding: 50px 0; background: rgba(11,81,228,0.03); }
.testimonials-section .swiper { padding: 20px 10px 50px; }
.testimonial-card { background: var(--white); border-radius: 16px; padding: 35px 30px; position: relative; transition: all 0.4s ease; height: auto; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 5px 25px rgba(0,0,0,0.05); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
.testimonial-card .quote-icon { color: var(--orange); font-size: 28px; margin-bottom: 15px; opacity: 0.3; }
.testimonial-card p { font-size: 16px; color: var(--dark-text); line-height: 1.8; margin-bottom: 20px; font-style: italic; opacity: 0.75; }
.testimonial-card .testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 18px; }
.testimonial-card .testimonial-author .avatar { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 3px solid var(--orange); }
.testimonial-card .testimonial-author .author-info h6 { font-size: 15px; font-weight: 700; color: var(--primary-blue); margin-bottom: 2px; }
.testimonial-card .testimonial-author .author-info span { font-size: 12px; color: var(--dark-text); opacity: 0.6; }
.testimonial-card .testimonial-author .author-info .stars { color: var(--orange); font-size: 12px; margin-top: 2px; }
.testimonials-section .swiper-pagination { bottom: 0 !important; }
.testimonials-section .swiper-pagination-bullet { width: 10px; height: 10px; background: rgba(6,45,107,0.2); opacity: 1; margin: 0 5px !important; border-radius: 50%; transition: all 0.3s ease; }
.testimonials-section .swiper-pagination-bullet-active { background: var(--orange); width: 28px; border-radius: 5px; }

/* ===== FOOTER ===== */
footer { background: var(--primary-blue); color: var(--white); padding: 60px 0 0; }
footer h5 { font-size: 18px; font-weight: 600; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--orange); border-radius: 2px; }
footer p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 8px; }
footer .footer-links li { margin-bottom: 10px; }
footer .footer-links li a { color: rgba(255,255,255,0.75); font-size: 14px; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }
footer .footer-links li a:hover { color: var(--orange); padding-left: 5px; }
footer .footer-links li a i { font-size: 12px; color: var(--orange); }
footer .footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
footer .footer-contact li i { color: var(--orange); font-size: 16px; margin-top: 4px; width: 16px; }
footer .footer-contact li span { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
footer .footer-social { display: flex; gap: 10px; margin-top: 15px; }
footer .footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 15px; transition: all 0.3s ease; }
footer .footer-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
footer .footer-map { margin-top: 20px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
footer .footer-map iframe { width: 100%; height: 180px; border: none; display: block; }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 40px; }
footer .footer-bottom p { margin-bottom: 0; font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== DEMO FORM MODAL ===== */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--white); border-radius: 20px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; padding: 40px 35px; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: modalIn 0.3s ease; }
@keyframes modalIn { from { transform: scale(0.9) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 15px; right: 18px; background: var(--light-bg); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--dark-text); transition: all 0.3s ease; }
.modal-close:hover { background: rgba(11,81,228,0.1); }
.modal-box .modal-icon { width: 64px; height: 64px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 28px; color: var(--white); }
.modal-box h3 { font-size: 24px; font-weight: 600; text-align: center; margin-bottom: 6px; color: var(--primary-blue); }
.modal-box .modal-sub { text-align: center; font-size: 16px; color: var(--dark-text); margin-bottom: 25px; opacity: 0.7; }
.modal-box .form-group { margin-bottom: 16px; }
.modal-box .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark-text); margin-bottom: 5px; }
.modal-box .form-group label .required { color: red; }
.modal-box .form-control { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(11,81,228,0.15); border-radius: 10px; font-size: 14px; font-family: 'Poppins', sans-serif; transition: all 0.3s ease; background: var(--light-bg); }
.modal-box .form-control:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px rgba(255,113,1,0.12); background: var(--white); }
.modal-box select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.modal-box textarea.form-control { resize: vertical; min-height: 80px; }
.modal-box .btn-submit { width: 100%; padding: 14px; background: var(--orange); color: var(--white); font-weight: 600; font-size: 16px; border: none; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px; }
.modal-box .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,113,1,0.35); }
.modal-box .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.modal-box .form-row { display: flex; gap: 12px; }
.modal-box .form-row .form-group { flex: 1; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.active { display: block; }
.form-success i { font-size: 56px; color: var(--secondary-blue); margin-bottom: 16px; }
.form-success h4 { font-size: 22px; font-weight: 700; color: var(--primary-blue); margin-bottom: 8px; }
.form-success p { color: var(--dark-text); font-size: 14px; opacity: 0.7; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn { position: fixed; bottom: 20px; right: 20px; width: 55px; height: 55px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 28px; z-index: 999; box-shadow: 0 4px 20px rgba(255,113,1,0.4); transition: all 0.3s ease; text-decoration: none; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(255,113,1,0.6); color: var(--white); }
.whatsapp-btn .tooltip-text { position: absolute; right: 65px; background: var(--orange); color: var(--white); padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 500; white-space: nowrap; opacity: 0; pointer-events: none; transition: all 0.3s ease; }
.whatsapp-btn:hover .tooltip-text { opacity: 1; }

/* ===== PAGE BANNER (Inner Pages) ===== */
.page-banner { background: var(--primary-blue); padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,113,1,0.08); }
.page-banner h1 { font-size: 42px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.page-banner p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }
.page-banner .breadcrumb { background: transparent; justify-content: center; margin-bottom: 0; padding: 0; }
.page-banner .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 14px; }
.page-banner .breadcrumb-item a { color: var(--orange); }
.page-banner .breadcrumb-item.active { color: var(--white); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 50px 0; background: var(--white); }
.contact-section .contact-info-card { background: var(--light-bg); border-radius: 16px; padding: 35px; height: 100%; }
.contact-section .contact-info-card .contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 25px; }
.contact-section .contact-info-card .contact-item i { width: 48px; height: 48px; background: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; flex-shrink: 0; }
.contact-section .contact-info-card .contact-item h6 { font-size: 15px; font-weight: 700; color: var(--primary-blue); margin-bottom: 3px; }
.contact-section .contact-info-card .contact-item p, .contact-section .contact-info-card .contact-item a { font-size: 14px; color: var(--dark-text); margin-bottom: 0; font-family: 'Poppins', sans-serif; opacity: 0.75; }
.contact-section .contact-info-card .contact-item a:hover { color: var(--orange); }
.contact-section .contact-form-card { background: var(--white); border-radius: 16px; padding: 35px; box-shadow: 0 5px 30px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); }
.contact-section .contact-form-card h4 { font-size: 24px; font-weight: 700; color: var(--primary-blue); margin-bottom: 6px; }
.contact-section .contact-form-card .form-control { width: 100%; padding: 14px 16px; border: 1.5px solid rgba(11,81,228,0.15); border-radius: 10px; font-size: 14px; font-family: 'Poppins', sans-serif; transition: all 0.3s ease; background: var(--light-bg); margin-bottom: 16px; }
.contact-section .contact-form-card .form-control:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 3px rgba(255,113,1,0.12); background: var(--white); }
.contact-section .contact-form-card textarea { resize: vertical; min-height: 120px; }
.contact-map { height: 350px; border-radius: 16px; overflow: hidden; margin-top: 30px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ===== ABOUT HERO ===== */
.about-hero { padding: 60px 0; background: var(--white); position: relative; overflow: hidden; }
.about-hero-label { display: inline-block; background: rgba(255,113,1,0.1); color: var(--orange); font-weight: 600; font-size: 13px; padding: 6px 18px; border-radius: 50px; letter-spacing: 1.5px; margin-bottom: 16px; border: 1px solid rgba(255,113,1,0.25); }
.about-hero-title { font-size: 44px; font-weight: 800; color: var(--primary-blue); line-height: 1.15; margin-bottom: 16px; }
.about-hero-title .text-orange { color: var(--orange); }
.about-hero-desc { font-family: 'Poppins', sans-serif; font-size: 16px; color: var(--dark-text); line-height: 1.8; margin-bottom: 25px; max-width: 580px; opacity: 0.75; }
.about-hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
.ah-feature { display: flex; align-items: center; gap: 12px; background: var(--light-bg); padding: 12px 16px; border-radius: 12px; transition: all 0.3s ease; }
.ah-feature:hover { background: rgba(255,113,1,0.08); transform: translateX(4px); }
.ahf-icon { width: 38px; height: 38px; background: var(--primary-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; flex-shrink: 0; }
.ah-feature span { font-size: 16px; font-weight: 500; color: var(--dark-text); line-height: 1.3; }
.btn-about-hero { background: var(--orange); color: var(--white); font-weight: 600; font-size: 16px; padding: 15px 38px; border-radius: 50px; border: 2px solid var(--orange); transition: all 0.3s ease; display: inline-flex; align-items: center; }
.btn-about-hero:hover { background: var(--primary-blue); border-color: var(--primary-blue); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,113,1,0.35); color: var(--white); }
.about-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.ahv-shape-1 { position: absolute; top: 20px; right: 20px; width: 300px; height: 300px; border-radius: 50%; background: rgba(11,81,228,0.06); z-index: 1; }
.ahv-shape-2 { position: absolute; bottom: 40px; left: 30px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,113,1,0.06); z-index: 1; }
.ahv-main-img { position: relative; z-index: 5; width: 100%; max-width: 480px; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.13); animation: float 6s ease-in-out infinite; }
.ahv-float-icons { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; pointer-events: none; }
.ahv-icon-item { position: absolute; width: 52px; height: 52px; background: var(--white); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary-blue); box-shadow: 0 8px 25px rgba(0,0,0,0.1); animation: floatIcon 4s ease-in-out infinite; }
.ahv-icon-item:nth-child(2) { animation-delay: 0.5s; }
.ahv-icon-item:nth-child(3) { animation-delay: 1s; }
.ahv-icon-item:nth-child(4) { animation-delay: 1.5s; }
@keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== OUR STORY ===== */
.story-section { padding: 60px 0; background: rgba(11,81,228,0.03); }
.section-label { display: inline-block; color: var(--orange); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; margin-bottom: 10px; }
.story-title { font-size: 36px; font-weight: 800; color: var(--primary-blue); line-height: 1.2; margin-bottom: 16px; }
.story-text { font-family: 'Poppins', sans-serif; font-size: 16px; color: var(--dark-text); line-height: 1.8; margin-bottom: 16px; opacity: 0.75; }
.story-checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.story-checklist li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--dark-text); }
.story-checklist li i { color: var(--orange); font-size: 20px; }
.story-image-wrapper { position: relative; border-radius: 24px; overflow: visible; }
.story-img-shape { position: absolute; top: -15px; right: -15px; width: 100%; height: 100%; border: 3px solid var(--orange); border-radius: 24px; z-index: 1; }
.story-img { position: relative; z-index: 2; width: 100%; border-radius: 24px; box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
.story-badge { position: absolute; bottom: -18px; left: -18px; z-index: 3; background: var(--primary-blue); color: var(--white); padding: 14px 24px; border-radius: 14px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 30px rgba(6,45,107,0.3); }
.story-badge i { font-size: 24px; color: var(--orange); }
.story-badge span { font-size: 15px; font-weight: 700; }

/* ===== MISSION & VISION ===== */
.mv-section { padding: 60px 0; background: var(--white); }
.mv-card { border-radius: 20px; padding: 45px 35px; height: 100%; transition: all 0.4s ease; position: relative; overflow: hidden; }
.mv-card:hover { transform: translateY(-8px); }
.mv-card-orange { background: var(--orange); color: var(--white); }
.mv-card-primary-blue { background: var(--primary-blue); color: var(--white); }
.mv-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.mv-card::after { content: ''; position: absolute; bottom: -30px; left: -30px; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.mv-icon-wrap { width: 72px; height: 72px; background: rgba(255,255,255,0.15); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 24px; position: relative; z-index: 2; backdrop-filter: blur(4px); }
.mv-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 14px; position: relative; z-index: 2; }
.mv-card p { font-size: 16px; line-height: 1.8; opacity: 0.9; position: relative; z-index: 2; font-family: 'Poppins', sans-serif; }

/* ===== WHY CHOOSE SKILLRISE ===== */
.why-section { padding: 60px 0; background: rgba(11,81,228,0.03); }
.why-card { background: var(--white); border-radius: 18px; padding: 35px 28px; text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.05); height: 100%; transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.03); }
.why-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.why-icon { width: 68px; height: 68px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: var(--white); transition: all 0.4s ease; }
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }
.why-icon.blue-bg { background: #FF7101; }
.why-icon.orange-bg { background: #0B51E4; }
.why-icon.green-bg { background: #FF7101; }
.why-icon.purple-bg { background: #0B51E4; }
.why-icon.teal-bg { background: #FF7101; }
.why-icon.red-bg { background: #0B51E4; }
.why-card h5 { font-size: 24px; font-weight: 600; color: var(--primary-blue); margin-bottom: 10px; }
.why-card p { font-size: 16px; color: var(--dark-text); line-height: 1.7; font-family: 'Poppins', sans-serif; opacity: 0.7; }

/* ===== LEARNING METHODOLOGY ===== */
.methodology-section { padding: 70px 0; background: var(--white); position: relative; overflow: hidden; }
.methodology-bg-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11,81,228,0.02); z-index: 1; pointer-events: none; }
.methodology-circuit-line { position: absolute; top: 15%; right: -5%; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,113,1,0.04); z-index: 1; pointer-events: none; }
.methodology-section .section-heading { position: relative; z-index: 2; }
.methodology-track { display: flex; align-items: flex-start; justify-content: center; gap: 0; position: relative; z-index: 2; }
.methodology-step { background: var(--white); border-radius: 20px; padding: 40px 18px 30px; text-align: center; flex: 1; max-width: 220px; box-shadow: 0 8px 35px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s ease; position: relative; }
.methodology-step:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.methodology-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 20px 20px 0 0; }
.methodology-step:nth-child(1)::before { background: var(--orange); }
.methodology-step:nth-child(3)::before { background: var(--secondary-blue); }
.methodology-step:nth-child(5)::before { background: var(--orange); }
.methodology-step:nth-child(7)::before { background: var(--secondary-blue); }
.methodology-step:nth-child(9)::before { background: var(--orange); }
.ms-number { font-size: 42px; font-weight: 900; color: rgba(6,45,107,0.06); line-height: 1; margin-bottom: -10px; }
.ms-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 30px; color: var(--white); position: relative; transition: all 0.4s ease; }
.methodology-step:nth-child(1) .ms-icon { background: var(--orange); }
.methodology-step:nth-child(3) .ms-icon { background: var(--secondary-blue); }
.methodology-step:nth-child(5) .ms-icon { background: var(--orange); }
.methodology-step:nth-child(7) .ms-icon { background: var(--secondary-blue); }
.methodology-step:nth-child(9) .ms-icon { background: var(--orange); }
.methodology-step:nth-child(9) .ms-icon i { font-size: 24px; }
.methodology-step:hover .ms-icon { transform: scale(1.1) rotate(-5deg); }
.ms-icon::after { content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px; border-radius: 50%; border: 2px dashed transparent; transition: all 0.4s ease; }
.methodology-step:nth-child(1):hover .ms-icon::after { border-color: var(--orange); }
.methodology-step:nth-child(3):hover .ms-icon::after { border-color: var(--secondary-blue); }
.methodology-step:nth-child(5):hover .ms-icon::after { border-color: var(--orange); }
.methodology-step:nth-child(7):hover .ms-icon::after { border-color: var(--secondary-blue); }
.methodology-step:nth-child(9):hover .ms-icon::after { border-color: var(--orange); }
.methodology-step h4 { font-size: 18px; font-weight: 800; color: var(--primary-blue); margin-bottom: 10px; letter-spacing: 0.5px; }
.methodology-step p { font-size: 16px; color: var(--dark-text); line-height: 1.7; margin-bottom: 0; font-family: 'Poppins', sans-serif; opacity: 0.7; }
.ms-arrow { display: flex; align-items: center; justify-content: center; padding: 0 10px; flex-shrink: 0; position: relative; top: 65px; }
.ms-arrow i { font-size: 28px; color: var(--orange); opacity: 0.5; animation: arrowPulse 2s ease-in-out infinite; }
.ms-arrow:nth-child(4) i { animation-delay: 0.3s; }
.ms-arrow:nth-child(6) i { animation-delay: 0.6s; }
.ms-arrow:nth-child(8) i { animation-delay: 0.9s; }
@keyframes arrowPulse { 0%, 100% { transform: translateX(0); opacity: 0.35; } 50% { transform: translateX(6px); opacity: 0.7; } }
.btn-methodology { background: var(--primary-blue); color: var(--white); font-weight: 600; font-size: 16px; padding: 16px 42px; border-radius: 50px; border: none; transition: all 0.3s ease; display: inline-flex; align-items: center; box-shadow: 0 8px 25px rgba(6,45,107,0.3); }
.btn-methodology:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(6,45,107,0.4); color: var(--white); }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 70px 0; background: var(--orange); position: relative; overflow: hidden; text-align: center; }
.cta-banner::before { content: ''; position: absolute; top: -30%; left: -10%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,113,1,0.06); }
.cta-banner::after { content: ''; position: absolute; bottom: -30%; right: -10%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-illustration { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; display: flex; flex-direction: column; gap: 20px; pointer-events: none; }
.cta-ill-left { left: 30px; }
.cta-ill-right { right: 30px; }
.cta-illustration i { font-size: 40px; color: rgba(255,255,255,0.08); }
.cta-content { position: relative; z-index: 3; max-width: 700px; margin: 0 auto; }
.cta-content h3 { font-size: 38px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 30px; font-family: 'Poppins', sans-serif; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { background: var(--primary-blue); color: var(--white); font-weight: 600; font-size: 16px; padding: 15px 36px; border-radius: 50px; border: 2px solid var(--primary-blue); transition: all 0.3s ease; display: inline-flex; align-items: center; }
.btn-cta-primary:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,113,1,0.4); color: var(--white); }
.btn-cta-secondary { background: transparent; color: var(--white); font-weight: 600; font-size: 16px; padding: 15px 36px; border-radius: 50px; border: 2px solid var(--white); transition: all 0.3s ease; display: inline-flex; align-items: center; }
.btn-cta-secondary:hover { background: var(--white); color: var(--primary-blue); border-color: var(--white); transform: translateY(-2px); }

/* ===== FOOTER BOTTOM LINKS ===== */
.footer-bottom-link { color: rgba(255,255,255,0.6); font-size: 13px; transition: all 0.3s ease; }
.footer-bottom-link:hover { color: var(--orange); }
.footer-bottom-sep { color: rgba(255,255,255,0.3); margin: 0 10px; font-size: 13px; }

/* ===== RESPONSIVE ABOUT ===== */
@media (max-width: 991.98px) {
  .about-hero-title { font-size: 34px; }
  .about-hero-visual { min-height: 320px; }
  .ahv-main-img { max-width: 380px; }
  .story-title { font-size: 28px; }
  .story-badge { bottom: -12px; left: -12px; padding: 10px 18px; }
  .story-badge i { font-size: 18px; }
  .cta-content h3 { font-size: 30px; }
  .cta-illustration { display: none; }
  .mv-card { padding: 35px 25px; }
  .methodology-track { flex-wrap: wrap; justify-content: center; max-width: 760px; margin: 0 auto; }
  .methodology-step { flex: 0 0 calc(33.33% - 24px); max-width: calc(33.33% - 24px); margin: 0 12px 24px; padding: 32px 16px 24px; }
  .ms-arrow { display: none; }
  .ms-icon { width: 60px; height: 60px; font-size: 24px; }
  .ms-number { font-size: 34px; }
}
@media (max-width: 767.98px) {
  .about-hero { padding: 40px 0; }
  .about-hero-title { font-size: 28px; }
  .about-hero-features { grid-template-columns: 1fr; }
  .ah-feature span { font-size: 13px; }
  .about-hero-visual { min-height: 260px; }
  .ahv-main-img { max-width: 300px; }
  .ahv-shape-1 { width: 200px; height: 200px; }
  .ahv-shape-2 { width: 140px; height: 140px; }
  .story-section { padding: 40px 0; }
  .story-title { font-size: 24px; }
  .story-badge { bottom: -10px; left: -10px; padding: 8px 14px; }
  .story-badge span { font-size: 13px; }
  .mv-section { padding: 40px 0; }
  .mv-card { padding: 30px 22px; }
  .mv-card h3 { font-size: 20px; }
  .why-section { padding: 40px 0; }
  .cta-banner { padding: 50px 0; }
  .cta-content h3 { font-size: 26px; }
  .btn-cta-primary, .btn-cta-secondary { font-size: 14px; padding: 13px 28px; }
  .why-card { margin-bottom: 20px; }
  .methodology-step { flex: 0 0 100%; max-width: 360px; margin: 0 auto 24px; padding: 32px 18px 24px; }
  .methodology-track { max-width: 100%; }
  .btn-methodology { font-size: 14px; padding: 14px 30px; }
  .methodology-section { padding: 50px 0; }
  .ms-icon { width: 56px; height: 56px; font-size: 22px; }
  .ms-number { font-size: 32px; }
}
@media (max-width: 575.98px) {
  .about-hero-title { font-size: 24px; }
  .about-hero-visual { min-height: 200px; }
  .ahv-main-img { max-width: 240px; }
  .ahv-icon-item { width: 40px; height: 40px; font-size: 16px; }
  .story-title { font-size: 22px; }
  .cta-content h3 { font-size: 22px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 992px) { .why-card { padding: 30px 18px; } .why-icon { width: 58px; height: 58px; font-size: 24px; } .why-card h5 { font-size: 16px; } .why-card p { font-size: 13px; } }
@media (max-width: 1199.98px) { .hero-text-wrapper h1 { font-size: 42px; } }
@media (max-width: 991.98px) {
  .hero-slider, .hero-slider .swiper-slide { height: auto; min-height: 400px; }
  .about-section .about-img-wrapper .experience-badge { width: 100px; height: 100px; font-size: 24px; bottom: -10px; right: -10px; }
  .about-section .about-img-wrapper .experience-badge span { font-size: 12px; }
  .about-section .about-content h3 { font-size: 26px; }
  .hero-text-wrapper { padding: 50px 0 30px; }
  .hero-text-wrapper h1 { font-size: 34px; }
  .top-bar .contact-info { justify-content: center; gap: 12px; font-size: 12px; }
  .top-bar .social-icons { justify-content: center; margin-top: 6px; }
  .navbar .navbar-nav .nav-link { padding: 12px 16px !important; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .navbar .navbar-nav .nav-link::after { display: none; }
  .navbar .btn-enroll { margin: 10px 16px 15px; width: fit-content; }
  .trust-section { margin-top: 0; padding-top: 50px; }
  .trust-card { margin-bottom: 20px; }
  .section-heading h2 { font-size: 30px; }
  .page-banner { padding: 60px 0 40px; }
  .page-banner h1 { font-size: 32px; }
}
@media (max-width: 767.98px) {
  .hero-slider, .hero-slider .swiper-slide { min-height: 350px; }
  .stat-item .stat-number { font-size: 36px; }
  .demo-banner .banner-content h3 { font-size: 24px; }
  .demo-banner .banner-content p { font-size: 14px; }
  .faq-section .accordion-button { font-size: 14px; padding: 14px 18px; }
  .hero-text-wrapper h1 { font-size: 28px; }
  .hero-text-wrapper .hero-subtitle { font-size: 15px; }
  .hero-features { gap: 10px; }
  .hero-features .feature-item { font-size: 12px; padding: 5px 12px; }
  .hero-btns .btn-primary-custom, .hero-btns .btn-outline-custom { font-size: 13px; padding: 12px 24px; }
  .top-bar .contact-info { flex-direction: column; gap: 5px; }
  .section-padding { padding: 50px 0; }
  .section-heading h2 { font-size: 26px; }
  .course-card { margin-bottom: 20px; }
  footer { padding: 40px 0 0; }
  footer .footer-col { margin-bottom: 30px; }
  .page-banner { padding: 50px 0 30px; }
  .page-banner h1 { font-size: 26px; }
}
@media (max-width: 575.98px) {
  .hero-text-wrapper h1 { font-size: 24px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn-primary-custom, .hero-btns .btn-outline-custom { width: 100%; justify-content: center; }
  .modal-box { padding: 30px 20px; }
  .modal-box .form-row { flex-direction: column; gap: 0; }
  .modal-box h3 { font-size: 20px; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) { [data-aos] { opacity: 1; transform: none !important; transition: none !important; } }

/* ===== TESTIMONIALS HERO ===== */
.testimonial-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
  position: relative;
  overflow: hidden;
}
.testimonial-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,113,1,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.testimonial-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,45,107,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--orange);
  background: rgba(255,113,1,0.08);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-headline .text-blue { color: var(--primary-blue); }
.hero-headline .text-orange { color: var(--orange); }
.hero-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-stat-icon.blue { background: rgba(6,45,107,0.1); color: var(--primary-blue); }
.hero-stat-icon.orange { background: rgba(255,113,1,0.1); color: var(--orange); }
.hero-stat-text .stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-blue);
  line-height: 1.1;
}
.hero-stat-text .stat-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #777;
}

/* Collage */
.collage-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.collage-container {
  position: relative;
  width: 420px;
  height: 420px;
}
.collage-img {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 3px solid #fff;
}
.collage-img:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); width: 180px; height: 180px; border-radius: 20px; }
.collage-img:nth-child(2) { bottom: 50px; left: 0; }
.collage-img:nth-child(3) { bottom: 50px; right: 0; }
.collage-img:nth-child(4) { top: 50%; left: 10px; transform: translateY(-50%); width: 120px; height: 120px; border-radius: 16px; }
.collage-img:nth-child(5) { top: 50%; right: 10px; transform: translateY(-50%); width: 120px; height: 120px; border-radius: 16px; }

/* Floating review card */
.floating-review-card {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 14px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  border: 1px solid rgba(0,0,0,0.04);
  animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
.floating-review-card .stars { color: #FFB800; font-size: 14px; }
.floating-review-card .rating-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-blue);
}
.floating-review-card .rating-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #888;
}

/* Floating quote badge */
.floating-quote-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  box-shadow: 0 6px 20px rgba(255,113,1,0.3);
  z-index: 3;
  white-space: nowrap;
  animation: floatBadge 3.5s ease-in-out infinite 0.5s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SUCCESS STORIES ===== */
.success-stories-section {
  padding: 80px 0;
  background: #fff;
}
.premium-testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.premium-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}
.premium-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 100px;
  line-height: 1;
  color: rgba(255,113,1,0.06);
  font-family: 'Georgia', serif;
}
.card-student {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.card-student img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  padding: 2px;
}
.card-student h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 2px;
}
.card-student span {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--orange);
}
.card-rating {
  color: #FFB800;
  font-size: 14px;
  margin-bottom: 14px;
}
.premium-testimonial-card .card-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
  font-style: italic;
}
.card-job-role {
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-job-role .job-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-job-role .job-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-blue);
}
.card-job-role .company-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--secondary-blue);
  background: rgba(11,81,228,0.06);
  padding: 4px 14px;
  border-radius: 20px;
}

/* ===== JOURNEY TIMELINE ===== */
.journey-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
}
.journey-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    #ddd 0px,
    #ddd 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  padding: 0 8px;
}
.timeline-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.timeline-icon.blue { background: var(--primary-blue); }
.timeline-icon.orange { background: var(--orange); }
.timeline-step h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-blue);
  margin-bottom: 6px;
}
.timeline-step p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 130px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ACHIEVEMENT COUNTER BAR ===== */
.achievement-bar {
  padding: 60px 0;
  background: linear-gradient(135deg, #062D6B 0%, #0B51E4 100%);
}
.achievement-bar .stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #fff;
  margin-bottom: 4px;
}
.achievement-bar .stat-item h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}
.achievement-bar .stat-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.achievement-bar .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.achievement-bar .plus {
  color: var(--orange);
  font-weight: 700;
}

/* ===== GOOGLE REVIEWS ===== */
.google-reviews-section {
  padding: 80px 0;
  background: #fff;
}
.reviews-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}
.review-carousel-card {
  min-width: 100%;
  padding: 0 60px;
}
.review-card-inner {
  background: #f8f9fc;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}
.review-card-inner .google-icon {
  color: #4285F4;
  font-size: 28px;
  margin-bottom: 10px;
}
.review-card-inner h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 4px;
}
.review-card-inner .review-time {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}
.review-card-inner .review-stars {
  color: #FFB800;
  font-size: 16px;
  margin-bottom: 14px;
}
.review-card-inner .review-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.carousel-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
}
.faq-accordion {
  max-width: 750px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}
.faq-question {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--primary-blue);
  transition: color 0.3s ease;
  user-select: none;
}
.faq-question:hover { color: var(--orange); }
.faq-question i {
  font-size: 14px;
  color: var(--orange);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}
.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== TESTIMONIAL CTA ===== */
.testimonial-cta {
  padding: 70px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.testimonial-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.04)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.04)"/><circle cx="50" cy="80" r="1" fill="rgba(255,255,255,0.04)"/><circle cx="30" cy="60" r="1.2" fill="rgba(255,255,255,0.04)"/></svg>');
  background-size: 120px 120px;
}
.testimonial-cta .cta-content {
  position: relative;
  z-index: 1;
  text-align: left;
}
.testimonial-cta .cta-content .cta-buttons {
  justify-content: flex-start;
}
.cta-student-img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 4px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-student-img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.testimonial-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  margin-bottom: 14px;
}
.testimonial-cta p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-primary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 8px;
  border: 2px solid #fff;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cta-btn-primary:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(6,45,107,0.35);
}
.cta-btn-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cta-btn-secondary:hover {
  background: #fff;
  color: var(--primary-blue);
  transform: translateY(-2px);
}
.testimonial-cta .cta-illustration {
  position: absolute;
  opacity: 0.1;
  font-size: 180px;
  z-index: 0;
}
.testimonial-cta .cta-illustration.left {
  left: 20px;
  bottom: -20px;
  color: rgba(255,255,255,0.15);
}
.testimonial-cta .cta-illustration.right {
  right: 20px;
  top: -20px;
  color: rgba(255,255,255,0.15);
}

/* ===== RESPONSIVE: TESTIMONIALS ===== */
@media (max-width: 991.98px) {
  .collage-container {
    width: 320px;
    height: 320px;
  }
  .collage-img:nth-child(1) { width: 140px; height: 140px; }
  .collage-img:nth-child(2), .collage-img:nth-child(3) { width: 110px; height: 110px; }
  .collage-img:nth-child(4), .collage-img:nth-child(5) { width: 90px; height: 90px; }
  .floating-quote-badge { right: 0; font-size: 11px; padding: 8px 14px; }
  .hero-headline { font-size: 38px; }
  .journey-timeline { flex-direction: column; gap: 20px; padding-left: 40px; }
  .journey-timeline::before {
    top: 0; bottom: 0; left: 28px; right: auto;
    width: 3px; height: auto;
    background: repeating-linear-gradient(to bottom, #ddd 0px, #ddd 8px, transparent 8px, transparent 16px);
  }
  .timeline-step { text-align: left; display: flex; align-items: center; gap: 16px; padding: 0; }
  .timeline-step p { max-width: none; margin: 0; }
  .timeline-icon { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 18px; }
}
@media (max-width: 767.98px) {
  .testimonial-hero { padding: 50px 0; }
  .hero-headline { font-size: 30px; }
  .hero-stats-row { flex-direction: column; gap: 12px; }
  .collage-wrapper { min-height: 300px; margin-top: 30px; }
  .collage-container { width: 280px; height: 280px; }
  .collage-img:nth-child(1) { width: 120px; height: 120px; }
  .collage-img:nth-child(2), .collage-img:nth-child(3) { width: 90px; height: 90px; bottom: 80px; }
  .collage-img:nth-child(4), .collage-img:nth-child(5) { display: none; }
  .floating-review-card { padding: 10px 16px; font-size: 13px; }
  .floating-quote-badge { display: none; }
  .premium-testimonial-card { padding: 24px 18px; }
  .review-carousel-card { padding: 0 20px; }
  .testimonial-cta h2 { font-size: 26px; }
  .achievement-bar .stat-number { font-size: 32px; }
  .hero-stat { padding: 10px 16px; }
  .hero-stat-text .stat-value { font-size: 17px; }
  .review-carousel-card { padding: 0 20px; }
}
@media (max-width: 575.98px) {
  .collage-container { width: 240px; height: 240px; }
  .collage-img:nth-child(1) { width: 100px; height: 100px; }
  .collage-img:nth-child(2), .collage-img:nth-child(3) { width: 80px; height: 80px; bottom: 60px; }
  .floating-review-card { bottom: 0; }
  .card-job-role { flex-direction: column; gap: 8px; text-align: center; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; }
}
