/*================================================
GRD Academy Niranjanpur - Premium Theme Override
Modern Eye-Catching Color Scheme
=================================================*/

:root {
    /* Primary Colors - Vibrant Emerald */
    --primary-color: #00a86b;
    --primary-dark: #008055;
    --primary-light: #00c77b;
    --primary-gradient: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%);

    /* Secondary Colors - Royal Gold */
    --secondary-color: #FFD700;
    --secondary-dark: #e6c200;
    --secondary-light: #ffeb3b;
    --secondary-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    /* Accent Colors */
    --accent-coral: #FF6B6B;
    --accent-blue: #4facfe;
    --accent-purple: #7c3aed;
    --accent-orange: #FF8C00;

    /* Navy & Dark */
    --navy-primary: #1a237e;
    --navy-dark: #0d1442;
    --text-dark: #1b0238;
    --text-light: #666666;

    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 168, 107, 0.15);
    --shadow-md: 0 10px 40px rgba(0, 168, 107, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 168, 107, 0.25);
    --shadow-glow: 0 0 30px rgba(0, 168, 107, 0.4);
}

/* ============================================
   Global Enhancements
   ============================================ */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Links */
a:hover, a:focus {
    color: var(--primary-color);
}

/* Selection */
::selection {
    background: linear-gradient(135deg, #00a86b, #00c9a7);
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00a86b, #00c9a7);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #008055, #00a86b);
}

/* ============================================
   Section Titles - Premium Style
   ============================================ */
.section-title span {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 201, 167, 0.1));
    border-radius: 30px;
    margin-bottom: 15px;
}

.section-title > h2 {
    background: linear-gradient(135deg, #1a237e, #00a86b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.sub-title {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   Buttons - Eye-catching Styles
   ============================================ */
.default-btn {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.default-btn:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: linear-gradient(135deg, #008055 0%, #00a86b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 168, 107, 0.5);
}

.optional-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a237e !important;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}
.optional-btn::before {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%);
}
.optional-btn:hover {
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Modern Button Style */
.modern-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modern-btn:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: linear-gradient(135deg, #008055 0%, #00a86b 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.5);
    text-decoration: none;
}

/* ============================================
   Preloader - Premium Animation
   ============================================ */
.preloader {
    background: linear-gradient(135deg, #1a237e 0%, #0d1442 100%) !important;
}
.preloader-area::before, .preloader-area::after {
    background: linear-gradient(135deg, #00a86b, #00c9a7);
}

/* ============================================
   Navbar - Modern Style
   ============================================ */
.main-navbar .navbar .navbar-nav .nav-item a:hover,
.main-navbar .navbar .navbar-nav .nav-item a:focus,
.main-navbar .navbar .navbar-nav .nav-item a.active,
.main-navbar .navbar .navbar-nav .nav-item:hover a,
.main-navbar .navbar .navbar-nav .nav-item.active a {
    color: var(--primary-color);
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    color: var(--primary-color);
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
    background: linear-gradient(135deg, #00a86b, #00c9a7);
}

/* Top Header with gradient */
.top-header-area {
    background: linear-gradient(135deg, #1a237e 0%, #0d1442 100%);
}

/* ============================================
   Banner Area - Stunning Visual
   ============================================ */
.main-banner-area {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.95) 0%, rgba(0, 201, 167, 0.9) 100%);
}

/* ============================================
   Who We Are Section
   ============================================ */
.who-we-are {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

.who-we-are-content span {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 201, 167, 0.15));
    border-radius: 30px;
    margin-bottom: 15px;
}

.who-we-are-content > h2,
.who-we-are-content > h4 {
    background: linear-gradient(135deg, #1a237e, #00a86b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-we-are-content p,
.who-we-are-content li {
    color: #333 !important;
    -webkit-text-fill-color: #333 !important;
}

.who-we-are-content .features-list li span i {
    color: var(--primary-color);
}

.who-we-are-image .image-content {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%);
}

/* Image Background Shape */
.image-bg-shape {
    background: linear-gradient(135deg, #00a86b, #00c9a7, #e6fff2) !important;
    box-shadow: 0 25px 80px rgba(0, 168, 107, 0.25) !important;
}

/* Experience Badge */
.experience-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #1a237e !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4) !important;
}

/* ============================================
   Activities Section - Vibrant Cards
   ============================================ */
.activities-area {
    background: linear-gradient(135deg, #f0f9f6 0%, #e6fff2 100%);
    position: relative;
}

.activities-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00a86b, #FFD700, #FF6B6B, #4facfe, #00a86b);
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.activities-row {
    display: flex;
    flex-wrap: wrap;
}

.activities-row > [class*="col-"] {
    display: flex;
}

.single-activities {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 168, 107, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.single-activities .activities-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-activities .activities-content p {
    flex: 1;
    color: #666 !important;
    -webkit-text-fill-color: #666 !important;
}

.single-activities .activities-content h3 a {
    color: #1a237e !important;
    -webkit-text-fill-color: #1a237e !important;
    font-weight: 700;
}

.single-activities::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a86b, #FFD700);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.single-activities:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 168, 107, 0.2);
}

.single-activities:hover::before {
    transform: scaleX(1);
}

.single-activities .number span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.4);
}

.single-activities .number span.bg-2 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a237e;
}

.single-activities .number span.bg-3 {
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5253 100%);
}

.single-activities .number span.bg-4 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.single-activities .number span.bg-5 {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.single-activities .number span.bg-6 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.single-activities:hover .activities-content h3 a {
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
}

/* ============================================
   Why Choose Us - Highlight Boxes
   ============================================ */
.highlight-container {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
}

.highlight-box.gold {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%) !important;
}

.highlight-box.gold:hover {
    background: linear-gradient(135deg, #008055 0%, #00a86b 100%) !important;
}

.highlight-box.blue {
    background: #ffffff !important;
}

.highlight-box.blue h3 {
    color: #1a237e !important;
}

.highlight-box.blue p {
    color: #666 !important;
}

.highlight-box.blue i {
    background: linear-gradient(135deg, #00a86b, #00c9a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-box i {
    font-size: 48px !important;
    margin-bottom: 20px;
}

/* ============================================
   Academics Program Cards
   ============================================ */
.class-area {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.title-border {
    width: 100px !important;
    height: 5px !important;
    background: linear-gradient(90deg, #00a86b, #FFD700) !important;
    border-radius: 10px;
}

.modern-card {
    border: none !important;
    border-radius: 25px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00a86b, #FFD700);
    z-index: 10;
}

.modern-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 30px 70px rgba(0, 168, 107, 0.25) !important;
}

.class-content h3 > a {
    background: linear-gradient(135deg, #1a237e, #00a86b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700 !important;
}

.class-content p {
    color: #666 !important;
    -webkit-text-fill-color: #666 !important;
}

/* ============================================
   Events Section
   ============================================ */
.event-area {
    position: relative;
}

.event-area .section-title span,
.event-area .section-title h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.event-date {
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5253 100%) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4) !important;
}

.event-item:hover {
    background: rgba(0, 168, 107, 0.1) !important;
    border-radius: 15px;
}

/* ============================================
   Facilities Section
   ============================================ */
.facilities-area {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

.facility-card {
    border-left: 5px solid transparent !important;
    border-image: linear-gradient(180deg, #00a86b, #00c9a7) 1 !important;
}

.facility-card:hover {
    border-image: linear-gradient(180deg, #FFD700, #FFA500) 1 !important;
    box-shadow: 0 25px 60px rgba(0, 168, 107, 0.2) !important;
}

.badge-number {
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5253 100%) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4) !important;
}

.badge-2 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4) !important;
}

.badge-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4) !important;
}

.badge-4 {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%) !important;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4) !important;
}

.badge-5 {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%) !important;
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.4) !important;
}

.badge-6 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4) !important;
}

/* ============================================
   Management Cards
   ============================================ */
.management-area {
    background: linear-gradient(180deg, #f0f9f6 0%, #e6fff2 100%) !important;
}

.management-card {
    border: none !important;
    border-radius: 25px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
}

.management-card::after {
    background: linear-gradient(90deg, #00a86b, #FFD700) !important;
}

.management-card:hover {
    box-shadow: 0 30px 70px rgba(0, 168, 107, 0.2) !important;
}

.designation {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%) !important;
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.4) !important;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-area {
    background: linear-gradient(135deg, #1a237e 0%, #0d1442 100%) !important;
}

.testimonials-area .section-title span,
.testimonials-area .section-title h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.feedback-item {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px !important;
}

.feedback-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
}

.feedback-info h3 {
    color: #FFD700 !important;
}

.feedback-info span {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ============================================
   Enquiry Form Section
   ============================================ */
.quote-area.bg-item {
    position: relative;
}

.quote-area.bg-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(0, 168, 107, 0.75) 100%);
    z-index: 1;
}

.quote-area .container {
    position: relative;
    z-index: 2;
}

.quote-item.item-two {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.quote-item .content span {
    color: #FFD700 !important;
}

.quote-item .content h3 {
    color: #fff !important;
}

.quote-item form .form-group .form-control {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.quote-item form .form-group .form-control:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3) !important;
}

/* ============================================
   Gallery Section
   ============================================ */
.partner-area {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%) !important;
}

.partner-item img {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s ease !important;
}

.partner-item img:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(0, 168, 107, 0.3) !important;
}

/* ============================================
   Footer - Premium Style
   ============================================ */
.footer-area {
    background: linear-gradient(135deg, #1a237e 0%, #0d1442 100%) !important;
    position: relative;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00a86b, #FFD700, #FF6B6B, #4facfe, #00a86b);
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
}

.single-footer-widget .footer-contact-info li a:hover,
.single-footer-widget .footer-quick-links li a:hover,
.single-footer-widget .footer-social li a:hover {
    color: #FFD700 !important;
}

.single-footer-widget .footer-social li a:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #1a237e !important;
}

.copy-right-area {
    background: rgba(0, 0, 0, 0.2) !important;
}

/* ============================================
   Go Top Button
   ============================================ */
.go-top {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%) !important;
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.4) !important;
}

.go-top:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #1a237e !important;
    transform: translateY(-5px);
}

/* ============================================
   Fixed Right Buttons
   ============================================ */
.buttonbar {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.buttonbar:hover {
    transform: translateX(-5px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

/* ============================================
   Forms Focus
   ============================================ */
.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 107, 0.25) !important;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mean-container .mean-bar {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%) !important;
}

.mean-container .mean-nav {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%) !important;
}

/* ============================================
   Owl Carousel Dots
   ============================================ */
.owl-theme .owl-dots .owl-dot span {
    background: rgba(0, 168, 107, 0.3) !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: linear-gradient(135deg, #00a86b 0%, #00c9a7 100%) !important;
}

/* ============================================
   Page Banner
   ============================================ */
.page-banner-area {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(0, 168, 107, 0.85) 100%) !important;
}

/* ============================================
   Animation Utilities
   ============================================ */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Animate on hover */
.animate-pulse:hover {
    animation: pulse 0.5s ease;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   Inspire List - Eye-catching Style
   ============================================ */
.inspire-list li {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%) !important;
    border-left: 5px solid #00a86b !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    color: #333 !important;
    -webkit-text-fill-color: #333 !important;
}

.inspire-list li:hover {
    background: linear-gradient(135deg, #e6fff2 0%, #d4f7e8 100%) !important;
    border-left: 5px solid #FFD700 !important;
    box-shadow: 0 12px 35px rgba(0, 168, 107, 0.15) !important;
    color: #333 !important;
    -webkit-text-fill-color: #333 !important;
}

.inspire-list li::before {
    color: #00a86b !important;
    -webkit-text-fill-color: #00a86b !important;
}
