/* General settings */

@font-face {
    font-family: "Archivo";
    src: url("./src/fonts/Archivo/static/Archivo-Black.ttf");
}
:root{
    --oxford-blue: #002147;
    --beige-fondo: #F5F5DC;
    --accent-blue: #1a4b8c;
    --gold: #FFD700;
    --light-blue: #e6f0ff;
}
body {
    background-color: var(--beige-fondo);
    
}
/* Navbar */

.navbar {
    font-family: "Archivo";
    color: var(--oxford-blue);
}

.navbar-brand:hover {
    color: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.85) 0%, rgba(26, 75, 140, 0.9) 100%), url('https://images.unsplash.com/photo-1501504905252-473c47e087f8?ixlib=rb-4.0.3') center/cover;
    color: white;
    padding: 7rem 0;
}
        
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
        
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}
.btn-hero {
    background-color: var(--gold);
    color: var(--oxford-blue);
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}
        
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #ffc400;
}
        
.btn-outline-hero {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
        
.btn-outline-hero:hover {
    background: white;
    color: var(--oxford-blue);
}
.btn-outline-courses {
    background: var(--oxford-blue);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-outline-courses:hover {
    background: var(--accent-blue);
    color: white;
}
        
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
        
.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
        
.feature-list i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 1.2rem;
}
        
.rating-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    margin-top: 2rem;
}
        
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        }
            
    .hero-subtitle {
        font-size: 1.2rem;
        }
            
    .hero-section {
        padding: 5rem 0;
        }
}
        
.pulse {
    animation: pulse 2s infinite;
}
        
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    border-radius: 15px 15px 0 0;
    padding: 2rem;
}

.pricing-features {
    padding: 2rem;
}

.btn-custom {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

footer {
    background-color: var(--oxford-blue);
    color: #fff;
    padding: 3rem 0;
  }

  .social-icons a {
    font-size: 1.25rem;
  }
.contact {
    background-color: red;
    height: 100px;
    width: 100px;
    margin-top: -5rem;
    margin-bottom: -5rem;
    border-radius: 10px;
}

.contact-form{
    background: #fff;
    margin-top: 10%;
    margin-bottom: 5%;
    width: 70%;
}
.contact-form .form-control{
    border-radius:1rem;
}
.contact-image{
    text-align: center;
}
.contact-image img{
    border-radius: 6rem;
    width: 11%;
    margin-top: -3%;
    transform: rotate(29deg);
}
.contact-form form{
    padding: 14%;
}
.contact-form form .row{
    margin-bottom: -7%;
}
.contact-form h3{
    margin-bottom: 8%;
    margin-top: -10%;
    text-align: center;
    color: #0062cc;
}
.contact-form .btnContact {
    width: 50%;
    border: none;
    border-radius: 1rem;
    padding: 1.5%;
    background: #dc3545;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}
.btnContactSubmit
{
    width: 50%;
    border-radius: 1rem;
    padding: 1.5%;
    color: #fff;
    background-color: #0062cc;
    border: none;
    cursor: pointer;
}