/* 🏠 HOME PAGE SPECIFIC STYLES */

/* Responsive Typography */
.responsive-h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; }
.responsive-h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
.responsive-p { font-size: clamp(1rem, 1.5vw, 1.25rem); }

/* Testimonials */
.testimonial-card {
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: rgba(255, 153, 51, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.1);
    border-color: rgba(255, 153, 51, 0.2);
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.3);
}

/* Stats Section */
.stat-premium-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.stat-premium-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon-box {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bg-gradient-saffron { background: linear-gradient(135deg, #ff9933, #ff5e00); }
.bg-gradient-red { background: linear-gradient(135deg, #c31432, #240b36); }
.bg-gradient-gold { background: linear-gradient(135deg, #FFD700, #ffb300); }
.bg-gradient-purple { background: linear-gradient(135deg, #6a11cb, #2575fc); }

/* Service Cards Modernized */
.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,153,51,0.05), transparent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 153, 51, 0.12) !important;
    border-color: rgba(255, 153, 51, 0.1);
}

.service-card:hover::after {
    opacity: 1;
}

/* Hero Section Mobile Fix */
@media (max-width: 991px) {
    .hero-slider-box { height: 450px !important; }
    .hero-slider-box div[data-u="slides"] { height: 450px !important; }
    .hero-slider-box img { height: 450px !important; }
}

/* Premium Mission Tabs */
.mission-tabs-pills .nav-pills {
    background: #fff8f0 !important;
    padding: 6px;
    border: 1px solid rgba(255, 153, 51, 0.1);
}

.mission-tabs-pills .nav-link {
    color: #8b4513 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.4s ease;
}

.mission-tabs-pills .nav-link.active {
    background: linear-gradient(135deg, #ff9933 0%, #ff5e00 100%) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.3);
}

.mission-tabs-pills .nav-link:hover {
    background: rgba(255, 153, 51, 0.1);
    transform: translateY(-2px);
}

.img-standard-wrap {
    border-radius: 40px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: rotate(0deg) !important; /* Forces straightening */
}

.img-standard-wrap:hover {
    transform: translateY(-10px) rotate(0deg) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25) !important;
}

@media (max-width: 767px) {
    .hero-slider-box { height: 350px !important; }
    .hero-slider-box div[data-u="slides"] { height: 350px !important; }
    .hero-slider-box img { height: 350px !important; }
    
    .mission-badge-glow {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 20px auto 0;
        width: 100%;
        text-align: center;
    }
    
    .stat-premium-card { padding: 30px 15px; }
}
