:root {
    --primary-color: #FF9933;
    --secondary-color: #138808;
    --accent-color: #FF671F;
    --dark-bg: #1a1a2e;
    --light-bg: #fff5f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}
.container {
    max-width: 1220px;
}
/* Navigation */
.navbar {
    background: linear-gradient(135deg, #FF9933, #FF671F);
    padding: 0.2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
}

/* Normal link */
.nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

/* Hover + Active text color */
.nav-link:hover,
.nav-link.active {
    color: #247805 !important;
    transform: translateY(-2px);
}

/* Underline */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #247805;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
@media (max-width:768px) {

    /* Default: underline hide */
    .nav-link::after {
        width: 0 !important;
    }

    /* Only active underline */
    .nav-link.active::after {
        width: 18% !important;
        left: 8% !important;
    }
}


/* Hover + Active underline */
.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}


/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(255,103,31,-0.15));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
    animation: fadeInUp 1.2s ease;
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------------- Achievement Badges --------------------- */
.achievement-section {
    background: linear-gradient(135deg, #FF9933, #FF671F);
    padding: 60px 0;
    color: white;
}

.achievement-badge {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
@media (max-width: 576px) {
    .achievement-badge {
        padding: 15px;
    }
}

.achievement-badge h3, .achievement-badge p{
    color: #FF671F;
}
.achievement-badge i{
    color: #fff;
    background-color: #FF671F;
    border-radius: 50%;
    padding :16px;
}
.achievement-badge:hover {
    /* background: rgba(255,255,255,0.2); */
    transform: translateY(-10px);
}

.achievement-badge .achiev-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2px;
}
}
@media (max-width: 1050px) {
    .achievement-badge .achiev-heading {
    font-size: 1.5rem;
    font-weight: bold;
   }
}

.achievement-badge i {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Quote Section */
.quote-section {
    background: white;
    padding: 48px 0;
    text-align: center;
}

.quote-text {
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: #FF671F;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote-author {
    font-size: 1.3rem;
    font-weight: 500;
    color: #138808;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF671F;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #FF9933, #138808);
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 48px 0;
    background: var(--light-bg);
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255,153,51,0.2);
    overflow: hidden;
    border: 5px solid #FF9933;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255,153,51,0.3);
}

.about-image img {
    width: 100%;
    height: 535px;
    display: block;
}

/* Journey Section */
.journey-section {
    padding: 48px 0;
    background: white;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9933, #FF671F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255,153,51,0.3);
}

.timeline-content {
    margin-left: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255,153,51,0.15);
    flex: 1;
    border-left: 4px solid #FF9933;
}

.timeline-content .min-heading {
    color: #FF671F;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Video Section */
.video-section {
    padding: 48px 0;
    background: var(--light-bg);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255,153,51,0.3);
}

.video-container video {
    width: 100%;
    height: 675px;
    display: block;
}

/* Service Cards */
.service-section {
    padding: 48px 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(255,153,51,0.15);
    transition: all 0.3s ease;
    border-left: 5px solid #FF9933;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255,153,51,0.25);
}

.service-icon {
    font-size: 3.5rem;
    color: #FF671F;
    margin-bottom: 20px;
}

.service-card h4 {
    color: #FF671F;
    font-weight: bold;
    margin-bottom: 15px;
}

/*---------------------- student Gallery Section by sv ---------------------- */
.premiumGallery {
    width: 100%;
    overflow: hidden;
    padding: 48px 0 !important;
}

.premiumGallery .swiper-wrapper {
    align-items: center;
}

.premiumGallery .swiper-slide {
    height: 300px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.premiumGallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transform: scale(0.9);
    opacity: 0.6;
    transition: 0.4s;
}


.premiumGallery .swiper-slide-active img {
    transform: scale(1.2);
    opacity: 1;
}
@media (max-width: 575px) {
 .premiumGallery .swiper-slide img  {
    height: 250px !important;
    width: 100% !important;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
}


/* --------------------------Contact Section---------------------- */
.contact-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #FF9933, #FF671F);
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, #ffffffff, #138808);
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info:hover {
    /* background: rgba(255,255,255,0.15); */
    transform: translateY(-10px);
}

.contact-info i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}
.contact-info .pera-text{
    color: var(--accent-color);
}

.form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
}   

.form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}

/* Footer */
.footer {
    /* background: var(--dark-bg); */
    background: #003316ff;
    color: white;
    padding: 40px 0 20px;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF9933;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-content {
        margin-left: 0;
        margin-top: 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

.custom-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.custom-btn:hover{
    background-color: var(--secondary-color);
    color: #fff;
    
}
    
/*------------------ Counter Section by sv ---------------------*/
.counter-section {
  background: linear-gradient(135deg, #FF671F, #FF9933);
  color: #fff;
  padding: 48px 0;
}

.counter-section .counter {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.counter-section p {
  font-size: 18px;
  margin-top: 10px;
  color: #fff;
}

@media (max-width: 768px) {
  .counter-section .counter {
    font-size: 2rem;
  }
  .counter-section p {
    font-size: 1rem;
  }
}

/*------------------ video gallery by sv ---------------------*/


/* ------------------------------------ video section css-------------------------------------- */


.premium-video-section {
    background: #fff8f1;
}

.premium-video-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #FF671F;
}

.video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: 0.3s ease;
    z-index: 2;
}

/* Jab video play ho */
.play-layer.hide {
    opacity: 0;
    pointer-events: none; 
}


.premium-video-card:hover .play-layer {
    background: rgba(0, 0, 0, 0.45);   /* hover pe thoda dark */
}

.play-layer i {
    color: #fff;
    font-size: 34px;
    background: rgba(0,0,0,0.55);
    padding: 16px 18px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.premium-video-card:hover .play-layer i {
    transform: scale(1.08);
}

.video-title {
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 15px;
}


/* ------------------------------------swiper css-------------------------------------- */
.service-global {
  padding: 48px 0;
  background: #f8f9fb;
}

.section-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff671f;
}

.global-card {
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  height: 100%;
 border: 1px solid rgb(212, 207, 207);
  transition: 0.35s ease;
}

.global-image {
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
}

.global-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.global-content {
  padding: 18px 10px 10px;
}

.global-content .sub-heading {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var( --accent-color);
}

.global-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


.serviceSwiper .swiper-slide {
  height: auto;
}
 .swiper-button-next,  .swiper-button-prev {
    width: 45px;
    height: 45px;
    top: 42% !important;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ff671f !important;
    transition: all 0.3s ease;
}

.swiper-button-next,  .swiper-button-prev {
    svg {
        height: 50% !important;
    }
}

.service-global  .swiper-pagination {
    margin-top: 30px;
    position: relative;
}
.service-global  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d6d6d6;
    opacity: 1;
    margin: 0 6px !important;
    border: 2px solid transparent;
    
}
.service-global  .swiper-pagination-bullet-active {
    background: #ff671f !important;
    opacity: var(--swiper-pagination-bullet-opacity, 1);
}

