/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(90deg, #5C6AC4 0%, #4A55A2 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}
.log {
    text-decoration: none;
    color: white;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
   
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 40%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo h2 {
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    position: relative;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.2);
}

.call-support {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

.call-support:hover {
    background: rgba(255,255,255,0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(92, 106, 196, 0.9), rgba(74, 85, 162, 0.9)), 
                url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-secondarys  {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Highlight text */
.highlight {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}



/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: linear-gradient(90deg, #5C6AC4 0%, #4A55A2 100%);
    box-shadow: 0 4px 15px rgba(92, 106, 196, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 8px 20px rgba(92, 106, 196, 0.6);
}

.btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(90deg, #FFD700 10%, #ffd900c9 100%);
    color: white;
    padding: 12px 0;
    margin-top: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.announcement-content {
    display: flex;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
}

.announcement-text {
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    padding: 0 50px;
}

/* Quick Stats */
.quick-stats {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-card i {
    font-size: 3rem;
    color: #5C6AC4;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    color: #666;
    font-size: 1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #5C6AC4;
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Domain Cards */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.domain-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(92, 106, 196, 0.2);
}

.domain-icon {
    font-size: 4rem;
    color: #5C6AC4;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

.domain-card h3 {
    font-size: 1.8rem;
    color: #5C6AC4;
    margin-bottom: 20px;
}

.domain-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.course-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.course-count i {
    color: #5C6AC4;
}

/* Enrollment Section */
.enrollment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e8f0 100%);
}

.enrollment-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.enrollment-info h3 {
    color: #5C6AC4;
    font-size: 2rem;
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 2rem;
    color: #5C6AC4;
    margin-top: 5px;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Compact Enrollment Form */
.enrollment-form-compact {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.enrollment-form-compact h3 {
    text-align: center;
    color: #5C6AC4;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.enrollment-form-compact input,
.enrollment-form-compact select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: white;
}

.enrollment-form-compact input:focus,
.enrollment-form-compact select:focus {
    border-color: #5C6AC4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 106, 196, 0.2);
}

.enrollment-form-compact .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    color: #5C6AC4;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-grid {
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
    display: grid;

}

.feature {
    text-align: center;
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    
}

.feature:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 2.5rem;
    color: #5C6AC4;
    margin-bottom: 15px;
}

.feature h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 120px;
    right: 0;
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.floating-card i {
    font-size: 2rem;
    color: #5C6AC4;
    margin-bottom: 10px;
}

.floating-card h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.floating-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e8f0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: #5C6AC4;
    margin-bottom: 15px;
}

.contact-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-link {
    color: #5C6AC4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #FF6B6B;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #5C6AC4;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #5C6AC4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 106, 196, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.contact-form .btn i {
    margin-right: 8px;
}

/* Message Status Styles */
.message-status {
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message-sending {
    background-color: #cce7ff;
    color: #004085;
    border: 1px solid #b3d7ff;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #2c3e50;
    transform: translateY(-3px);
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info-footer i {
    color: #FFD700;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
}

/* Floating Support */
.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 8px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .domain-grid {
        grid-template-columns: 1fr;
    }
    
    .enrollment-container {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-text {
        font-size: 0.9rem;
    }
    
    .enrollment-form-compact {
        position: static;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .domain-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-support span {
        display: none;
    }
    
    .floating-support {
        padding: 15px;
    }


    /* WhatsApp Floating Button with tooltip */
    .whatsapp-float {
        position: fixed;
        width: 50px;
        height: 50px;
        bottom: 95px;
        right: 30px;
        background-color: #25d366;
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 26px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 15px rgba(37, 211, 102, 0.8);
    }
    
    /* WhatsApp tooltip */
    .whatsapp-tooltip {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .whatsapp-float:hover .whatsapp-tooltip {
        opacity: 1;
        visibility: visible;
        right: 65px;
    }
    
    /* Support button tooltip */
    .floating-support::after {
        content: "Call Support";
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .floating-support:hover::after {
        opacity: 1;
        visibility: visible;
        right: 75px;
    }
    
    /* Rest of the styles remain the same... */
    .floating-support {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
        color: white;
        padding: 12px 18px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 1000;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .floating-support:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(255, 107, 107, 0.6);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .whatsapp-float {
            bottom: 85px;
            right: 20px;
        }
        
        .floating-support {
            bottom: 20px;
            right: 20px;
        }
        
        .whatsapp-tooltip,
        .floating-support::after {
            display: none; /* Hide tooltips on mobile */
        }
    }
}