@import url('../common/main.css');
 
/* ===== ENHANCED WELCOME PAGE STYLES ===== */
 
/* Root Variables */
:root {
    --hero-gradient: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    --text-gradient: linear-gradient(45deg, #fff, #f0f0f0);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --primary-blue: #007bff;
    --primary-blue-hover: #0056b3;
    --success-green: #28a745;
    --danger-red: #dc3545;
    --warning-orange: #fd7e14;
    --info-cyan: #17a2b8;
}
 
/* Global Styles */
body {
    background: var(--hero-gradient);
    overflow-x: hidden;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
/* ===== NAVIGATION STYLES ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    padding: 1rem 0;
    z-index: 1000;
}
 
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-light);
    padding: 0.5rem 0;
}
 
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
    transition: var(--transition-smooth);
}
 
.navbar-brand:hover {
    transform: scale(1.05);
}
 
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
}
 
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
    background: rgba(0, 123, 255, 0.1);
}
 
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-blue);
    transition: var(--transition-smooth);
}
 
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
    left: 10%;
}
 
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-medium);
    border-radius: 12px;
    padding: 1rem 0;
    margin-top: 0.5rem;
}
 
.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}
 
.dropdown-item:hover {
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-blue);
    transform: translateX(5px);
}
 
#ctaButtonNav {
    background: linear-gradient(45deg, var(--primary-blue), #0056b3);
    border: none;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: var(--transition-bounce);
}
 
#ctaButtonNav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}
 
/* ===== HERO SECTION STYLES ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
 
.hero-content {
    z-index: 2;
    position: relative;
}
 
.hero-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}
 
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}
 
.text-gradient {
    background: linear-gradient(45deg, #00d4ff, #007bff, #6f42c1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}
 
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}
 
.hero-stats {
    animation: fadeInUp 1s ease-out 0.6s both;
}
 
.stat-mini {
    text-align: center;
    color: #fff;
}
 
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00d4ff;
}
 
.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
 
.hero-actions {
    animation: fadeInUp 1s ease-out 0.9s both;
}
 
.cta-button {
    background: linear-gradient(45deg, #00d4ff, #007bff);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}
 
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: #fff;
}
 
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}
 
.cta-button:hover::before {
    left: 100%;
}
 
.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}
 
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}
 
/* Hero Image */
.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}
 
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}
 
.hero-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}
 
.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    animation: floatCard 4s ease-in-out infinite;
}
 
.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}
 
.card-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}
 
.card-3 {
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}
 
.floating-card i {
    margin-right: 0.5rem;
    color: #00d4ff;
}
 
/* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
 
.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: floatBackground 6s ease-in-out infinite;
}
 
.element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.element-2 { top: 20%; right: 15%; animation-delay: 1s; }
.element-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.element-4 { bottom: 20%; right: 25%; animation-delay: 3s; }
.element-5 { top: 60%; left: 50%; animation-delay: 4s; }
 
/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
    margin-top: -2px;
}
 
.stat-counter {
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
    transition: var(--transition-smooth);
}
 
.stat-counter:hover {
    transform: translateY(-5px);
}
 
.stat-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}
 
.counter-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
 
.counter-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}
 
/* ===== EXAM CARDS SECTION ===== */
.exam-cards-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
 
.section-header {
    margin-bottom: 4rem;
}
 
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}
 
.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
 
.view-all-btn {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}
 
.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}
 
.btn-arrow {
    margin-left: 0.5rem;
    transition: var(--transition-smooth);
}
 
.view-all-btn:hover .btn-arrow {
    transform: translateX(5px);
}
 
/* ===== WHY CHOOSE US SECTION ===== */
 
 
/* ===== CTA SECTION ===== */
.cta-section {
    background: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
 
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}
 
.cta-wrapper {
    position: relative;
    z-index: 2;
}
 
.cta-content {
    text-align: center;
    color:  linear-gradient(135deg, var(--dark-color) 30%, var(--secondary-color) 80%);
}
 
.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
 
.cta-subtitle {
    font-size: 1.2rem;
    color: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 2rem;
}
 
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
 
.cta-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff !important;
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: var(--transition-bounce);
}
 
.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--primary-blue);
}
 
.cta-secondary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}
 
.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
 
/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--hero-gradient);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
}
 
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
 
.footer-brand {
    margin-bottom: 2rem;
}
 
.footer-logo {
 
    height: 50px;
    object-fit: contain;
}
 
.footer-brand h5 {
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
 
.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}
 
.social-links {
    display: flex;
    gap: 1rem;
}
 
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition-smooth);
}
 
.social-link:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}
 
.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
 
.footer-links {
    list-style: none;
    padding: 0;
}
 
.footer-links li {
    margin-bottom: 0.5rem;
}
 
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}
 
.footer-links a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}
 
.contact-info {
    margin-bottom: 2rem;
}
 
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}
 
.contact-item i {
    color: #00d4ff;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}
 
.newsletter-signup {
    margin-top: 2rem;
}
 
.newsletter-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}
 
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
 
.newsletter-form .form-control {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}
 
.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
 
.newsletter-form .form-control:focus {
    background: var(--glass-bg);
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
 
.newsletter-btn {
    background: var(--primary-blue);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #fff;
    transition: var(--transition-smooth);
}
 
.newsletter-btn:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-1px);
}
 
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}
 
.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
 
.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}
 
.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}
 
.footer-link:hover {
    color: #00d4ff;
}
 
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
 
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
 
@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
 
@keyframes floatBackground {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}
 
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
 
/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
 
.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}
 
.float-up {
    animation: fadeInUp 1s ease-out;
}
 
/* ===== RIPPLE EFFECT ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}
 
@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
 
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
   
    .hero-subtitle {
        font-size: 1rem;
    }
   
    .section-title {
        font-size: 2rem;
    }
   
    .cta-title {
        font-size: 2rem;
    }
   
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
   
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
   
    .floating-card {
        position: static;
        margin: 1rem 0;
    }
   
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
   
    .newsletter-form {
        flex-direction: column;
    }
}
 
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
   
    .stat-number {
        font-size: 2rem;
    }
   
    .feature-card {
        padding: 2rem 1.5rem;
    }
   
    .cta-actions {
        gap: 0.5rem;
    }
   
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
 
/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-section,
.why-choose-section,
.cta-section {
    will-change: transform;
}
 
.floating-element,
.floating-card,
.hero-main-image {
    will-change: transform;
}
 
/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
 
/* Focus styles for better accessibility */
.btn:focus,
.nav-link:focus,
.dropdown-item:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}
 
/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(0, 0, 0, 0.8);
        --glass-border: rgba(255, 255, 255, 0.8);
    }
}
 
/* ===== UPDATED WHY CHOOSE US SECTION ===== */
.why-choose-section-new {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}
 
.why-choose-section-new::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}
 
.feature-row {
    position: relative;
    z-index: 2;
    margin-bottom: 6rem;
}
 
.feature-row:last-child {
    margin-bottom: 0;
}
 
.feature-content {
    padding: 2rem;
    color: #fff;
}
 
.feature-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4ff, #007bff);
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: pulse 2s infinite;
}
 
.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
 
.feature-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}
 
.feature-highlights {
    list-style: none;
    padding: 0;
}
 
.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
 
.highlight-item i {
    color: #00d4ff;
    margin-right: 1rem;
    font-size: 1.1rem;
}
 
.feature-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}
 
.feature-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
 
.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}
 
.feature-image-container:hover .feature-image {
    transform: scale(1.05);
}
 
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 123, 255, 0.1));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}
 
.feature-image-container:hover .image-overlay {
    opacity: 1;
}
 
.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}
 
.feature-image-container:hover .overlay-badge {
    transform: translateY(0);
}
 
.overlay-badge i {
    margin-right: 0.5rem;
    color: #00d4ff;
}
 
/* Animation Classes */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}
 
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}
 
.fade-in-left.animate-in,
.fade-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}
 
/* Pulse Animation for Icons */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    }
}
 
/* Responsive Design */
@media (max-width: 992px) {
    .feature-content {
        padding: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
   
    .feature-title {
        font-size: 1.8rem;
    }
   
    .feature-description {
        font-size: 1rem;
    }
   
    .feature-image {
        height: 300px;
    }
   
    .feature-row {
        margin-bottom: 4rem;
    }
}
 
@media (max-width: 768px) {
    .why-choose-section-new {
        padding: 4rem 0;
    }
   
    .feature-title {
        font-size: 1.5rem;
    }
   
    .feature-description {
        font-size: 0.95rem;
    }
   
    .feature-icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
   
    .feature-image {
        height: 250px;
    }
   
    .overlay-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}
 
@media (max-width: 576px) {
    .feature-content {
        padding: 1rem;
    }
   
    .feature-title {
        font-size: 1.3rem;
    }
   
    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
   
    .highlight-item {
        font-size: 0.9rem;
    }
   
    .feature-image {
        height: 200px;
    }
}