/* ========== Global Reset ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ========== Base Styles ========== */
:root {
    --primary: #00e676;
    --primary-dark: #00c764;
    --secondary: #ff3d00;
    --dark: #121212;
    --light: #ffffff;
    --gray: #2d2d2d;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

/* ========== Animated Background Circles ========== */
.bg-circle {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary), transparent);
    opacity: 0.1;
    z-index: -1;
    filter: blur(50px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation: float 12s infinite ease-in-out 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* ========== Navigation Bar ========== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 1.1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.apply-btn {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('wh1.jpg') no-repeat center center/cover;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 80px;
}

.typing-text {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.typing-text span {
    color: var(--primary);
    position: relative;
}

.typing-text span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background: rgba(0, 230, 118, 0.3);
    z-index: -1;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.primary-btn, .secondary-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-btn {
    background: var(--primary);
    color: var(--dark);
    border: none;
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
}

.secondary-btn {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.scroll-indicator {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light);
    opacity: 0.3;
    animation: bounce 1.5s infinite ease-in-out;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-10px); opacity: 1; }
}

/* ========== Typing Animation ========== */
.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ========== Responsive Styles ========== */
@media (max-width: 992px) {
    .typing-text {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .apply-btn {
        margin-top: 30px;
    }
    
    .hamburger {
        display: block;
    }
    
    .typing-text {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .primary-btn, .secondary-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .typing-text {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
/* ========== Courses Section ========== */
.courses-section {
    background-color: #0a0a0a;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.courses-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight-red {
    color: #ff0000;
    position: relative;
}

.highlight-red::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 0, 0, 0.3);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.course-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ff0000;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
}

.course-icon {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.course-description {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.requirements h4 {
    color: #ff0000;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.requirements ul {
    list-style: none;
    padding-left: 0;
}

.requirements li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #ddd;
    font-size: 0.95rem;
}

.requirements li i {
    color: #ff0000;
    margin-right: 10px;
    font-size: 0.9rem;
}

.enroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff0000;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.enroll-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.enroll-btn:hover {
    background: #e60000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.enroll-btn:hover i {
    transform: translateX(5px);
}

/* Decorative elements */
.courses-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
}

.courses-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .course-card {
        padding: 25px;
    }
}/* ========== About Section ========== */
.about-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Light Theme (default) */
.about-section {
    background: linear-gradient(to right, hsl(211, 82%, 85%) 0%, #fcfcfc 100%);
    color: #333;
}

/* Dark Theme */
.about-section.dark-theme {
    background: #0a0a0a;
    color: #ffffff;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.about-container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
    min-width: 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Light Theme Tag */
.about-section .section-tag {
    background: #2488da;
    color: #fdf2f2;
}

/* Dark Theme Tag */
.about-section.dark-theme .section-tag {
    background: #ff0000;
    color: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Light Theme Title */
.about-section .section-title {
    color: #333;
}

/* Dark Theme Title */
.about-section.dark-theme .section-title {
    color: white;
}

.highlight {
    position: relative;
}

/* Light Theme Highlight */
.about-section .highlight {
    color: #4dabf7;
}

.about-section .highlight::after {
    background: rgba(18, 192, 26, 0.3);
}

/* Dark Theme Highlight */
.about-section.dark-theme .highlight {
    color: #ff0000;
}

.about-section.dark-theme .highlight::after {
    background: rgba(255, 0, 0, 0.3);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: -1;
}

.section-divider {
    width: 80px;
    height: 4px;
    border-radius: 2px;
}

/* Light Theme Divider */
.about-section .section-divider {
    background: #4dabf7;
}

/* Dark Theme Divider */
.about-section.dark-theme .section-divider {
    background: #ff0000;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Light Theme Text */
.about-section .lead-text,
.about-section .about-description {
    color: #000000;
}

/* Dark Theme Text */
.about-section.dark-theme .lead-text,
.about-section.dark-theme .about-description {
    color: #cccccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Light Theme Cards */
.about-section .feature-card {
    background: rgb(250, 249, 249);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Dark Theme Cards */
.about-section.dark-theme .feature-card {
    background: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Light Theme Card Hover */
.about-section .feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Dark Theme Card Hover */
.about-section.dark-theme .feature-card:hover {
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Light Theme Icons */
.about-section .feature-icon {
    background: rgba(77, 171, 247, 0.1);
    color: #4dabf7;
}

/* Dark Theme Icons */
.about-section.dark-theme .feature-icon {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Light Theme Card Headings */
.about-section .feature-card h3 {
    color: #1a1a1a;
}

/* Dark Theme Card Headings */
.about-section.dark-theme .feature-card h3 {
    color: white;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Light Theme Card Text */
.about-section .feature-card p {
    color: #666;
}

/* Dark Theme Card Text */
.about-section.dark-theme .feature-card p {
    color: #bbbbbb;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #4dabf7;
    color: white;
}

.primary-btn:hover {
    background: #339af0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 171, 247, 0.3);
}

.secondary-btn {
    background: transparent;
    border: 2px solid;
}

/* Light Theme Secondary Button */
.about-section .secondary-btn {
    color: #4dabf7;
    border-color: #4dabf7;
}

.about-section .secondary-btn:hover {
    background: rgba(77, 171, 247, 0.1);
}

/* Dark Theme Secondary Button */
.about-section.dark-theme .secondary-btn {
    color: #ff0000;
    border-color: #ff0000;
}

.about-section.dark-theme .secondary-btn:hover {
    background: rgba(255, 0, 0, 0.1);
}

.secondary-btn:hover {
    transform: translateY(-2px);
}

.primary-btn i, .secondary-btn i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.about-image {
    flex: 1;
    position: relative;
    min-width: 400px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* Light Theme Image Wrapper */
.about-section .image-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Dark Theme Image Wrapper */
.about-section.dark-theme .image-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.image-highlight {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
    border: 3px solid;
}

/* Light Theme Image Highlight */
.about-section .image-highlight {
    border-color: #4dabf7;
}

/* Dark Theme Image Highlight */
.about-section.dark-theme .image-highlight {
    border-color: #ff0000;
}

.stats-card {
    position: absolute;
    bottom: -10px;
    left: 30px;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    gap: 30px;
}

/* Light Theme Stats Card */
.about-section .stats-card {
    background: rgb(255, 255, 255);
}

/* Dark Theme Stats Card */
.about-section.dark-theme .stats-card {
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-item h4 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

/* Light Theme Stats */
.about-section .stat-item h4 {
    color: #4dabf7;
}

.about-section .stat-item p {
    color: #666;
}

/* Dark Theme Stats */
.about-section.dark-theme .stat-item h4 {
    color: #ff0000;
}

.about-section.dark-theme .stat-item p {
    color: #aaaaaa;
}

.stat-item p {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Light Theme Social Links */
.about-section .social-link {
    background: rgb(220, 214, 214);
    color: #4dabf7;
}

.about-section .social-link:hover {
    background: #4dabf7;
    color: white;
}

/* Dark Theme Social Links */
.about-section.dark-theme .social-link {
    background: #1a1a1a;
    color: #ff0000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-section.dark-theme .social-link:hover {
    background: #ff0000;
    color: white;
}

.social-link:hover {
    transform: translateY(-5px);
}

/* Decorative shapes */
.about-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

/* Light Theme Shapes */
.about-section .about-shape {
    background: rgba(77, 171, 247, 0.05);
}

/* Dark Theme Shapes */
.about-section.dark-theme .about-shape {
    background: rgba(255, 0, 0, 0.05);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-image {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
}/* ========== Facilities Section ========== */
.facilities {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.facilities-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    background-color: #0a0a0a;
    color: white;
    overflow: hidden;
}

.testimonials-container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: #ff0000;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 0, 0, 0.3);
    z-index: -1;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: #ff0000;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.1), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-bg {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-image {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 20px;
}

.user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff0000;
}

.animated-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background-color: #f8f9fa;
    padding: 5px;
}

.testimonial-card:nth-child(1) .animated-avatar {
    animation: float 4s ease-in-out infinite;
}

.testimonial-card:nth-child(2) .animated-avatar {
    animation: bounce 3s ease infinite;
}

.testimonial-card:nth-child(3) .animated-avatar {
    animation: tilt 5s ease-in-out infinite;
}

.quote-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.user-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.user-info p {
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(249, 8, 8, 0.751);
    font-family: serif;
    line-height: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.stars {
    color: #ffcc00;
    font-size: 1rem;
}

.rating {
    color: #aaa;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonials-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ddd;
}

.cta-button {
    background: #ff0000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: #e60000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Decorative shapes */
.testimonial-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.05);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation: float 12s infinite ease-in-out reverse;
}

/* Animation keyframes */
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes tilt {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .user-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
/* ========== Call to Action Section ========== */
.cta {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 100px 0;
    background: url(images/banner2.jpg);
    background-size: cover;
    background-position: center;
}

.cta h1 {
    color: white;
    margin-bottom: 40px;
}

/* ========== Footer Section ========== */
footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

/* Social Media Icons */
.icons i {
    color: red;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
/* ========== Contact Section ========== */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    color: white;
    padding: 100px 0;
    overflow: hidden;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #ddd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-icon {
    font-size: 1.8rem;
    color: #4dabf7;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #fff;
}

.info-text p {
    margin: 5px 0;
    opacity: 0.9;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4dabf7;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.message-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.dual-input {
    display: flex;
    gap: 15px;
}

.dual-input input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.4);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4dabf7;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #339af0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animated background circles */
.contact-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 100px;
    animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}
