/*
Theme Name: mytheme
Author: henry
Version: 1.0
*/

/* Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Colors */
:root {
    --primary-color: #004086;
    --secondary-color: #2c3e50;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --success-color: #2ecc71;
    --warning-color: #f1c40f;
    --danger-color: #e74c3c;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 40, 86, 0.6), rgba(0, 40, 86, 0.6)), url('../img/header.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Jumbotron Styles */
.jumbotron {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/bgimg3.png');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.jumbotron .row {
    display: flex;
    height: 100%;
}

.jumbotron .col-lg-6 {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.course-info, .form-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.jumbotron .row {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.jumbotron .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.course-info, .form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-info {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    color: white;
}

.course-info h2 {
    color: #3498db;
    margin-bottom: 20px;
}

.course-highlights {
    margin-top: 20px;
}

.course-highlights ul {
    list-style: none;
    padding-left: 20px;
}

.course-highlights li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.course-highlights i {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.course-highlights li span {
    flex: 1;
}

.form-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-container h2 {
    color: #3498db;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form-wrapper {
    flex: 1;
    overflow-y: auto;
}

.contact-form-wrapper form {
    color: white;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-wrapper .wpcf7-submit {
    background: #3498db;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form-wrapper .wpcf7-submit:hover {
    background: #2980b9;
}

.form-container h2 {
    color: #3498db;
    margin-bottom: 25px;
}

.student-image {
    text-align: center;
}

.student-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
    

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 40, 86, 0.4), rgba(0, 40, 86, 0.4));
}

/* Jumbotron Styles */
.jumbotron {
    background: linear-gradient(rgba(0, 40, 86, 0.6), rgba(40, 120, 235, 0.6)), url('img/header2.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/*.form-container {
    flex: 1;
    max-width: 500px;
    margin-right: 40px;
    padding: 40px;
    background: rgba(0, 40, 86, 0.5);
    border-radius: 10px;
    position: relative;
    z-index: 2;
}*/

.form-container h2 {
    margin-bottom: 20px;
    text-align: center;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-container input[type="submit"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 2px;
    background: var(--primary-color);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-container input[type="submit"]:hover {
    background: #003366;
}

.student-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.student-image img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
    display: none;
}

/* Image Styling */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-section img {
    width: 100%;
    
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section Padding */
.about-section {
    padding: 4rem 0;
}

.features-section {
    padding: 4rem 0;
}

.contact-section {
    padding: 4rem 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-section .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: var(--transition);
}

.hero-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 40, 86, 0.3);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 40, 86, 0.1), transparent);
    pointer-events: none;
}

.about-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    display: none;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 40, 86, 0.05), transparent);
    pointer-events: none;
}

.feature-item {
    margin-bottom: 2rem;
    padding: 2.5rem;
    background-color: var(--secondary);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 40, 86, 0.1), transparent);
    pointer-events: none;
}

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

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(225deg, rgba(0, 40, 86, 0.1), transparent);
    pointer-events: none;
}

.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transition: var(--transition);
}

.contact-form button:hover {
    background-color: #001a33;
}

.contact-form button:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

/* Footer Styles */
footer {
    background-color: #002a5a;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 40, 86, 0.1), transparent);
    pointer-events: none;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
    font-weight: 500;
}

footer a:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(3px);
    opacity: 0.8;
}

footer .contact-info i {
    color: white;
    margin-right: 0.5rem;
}

footer .contact-info p {
    color: white;
    margin-bottom: 0.5rem;
}

footer .list-unstyled li {
    margin-bottom: 1rem;
}

footer .list-unstyled a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #fff;
    text-decoration: underline;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* Courses Section Styles */
.courses-section {
    background-color: #f8f9fa;
}

.course-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course-content h2 {
    color: #2c3e50;
    font-weight: 700;
}

.course-content h3 {
    color: #34495e;
    font-weight: 600;
}

.course-content p {
    color: #34495e;
    line-height: 1.8;
}

.course-content ul {
    list-style: none;
    padding-left: 20px;
}

.course-content li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.course-content i {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.course-content li span {
    flex: 1;
}

.course-content li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.course-content li i {
    margin-right: 10px;
}

.course-content .text-primary {
    color: #3498db;
}

.course-content .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 5px;
}

.course-content .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* About Section Styles */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    margin-bottom: 3rem;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002a5a;
    margin-bottom: 1.5rem;
}

.about-content p.lead {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}

.features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 40, 86, 0.1);
    background-color: #dfe3e7;;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    font-size: 1.5rem;
    width: 2rem;
    margin-left:10px;

}

.feature-item span {
    font-weight: 500;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 40, 86, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 40, 86, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
}

.step-number i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.step-number span {
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.step-card h4 {
    font-size: 1.2rem;
    color: #002a5a;
    margin-bottom: 1rem;
}

.step-card p {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
}

/* Topbar */
.topbar {
    background-color: #002856;
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.topbar .social-links {
    display: flex;
    align-items: center;
}

.topbar .social-links a {
    color: #ffffff;
    font-size: 1.25rem;
    margin-right: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.topbar .social-links a:hover {
    color: #00a8ff;
}

.topbar .contact-info {
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-right: 2rem;
}

.topbar .contact-info i {
    color: #00a8ff;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.topbar .contact-info span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.25rem;
    }

    .feature-item {
        margin-bottom: 1.5rem;
    }

    footer {
        padding: 4rem 0 2rem;
    }

    footer .row {
        text-align: center;
    }

    footer .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #001a33;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: white;
}

.about-section .section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 60px;
    position: relative;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.about-section img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: translateY(-5px);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: white;
}

.contact-section .section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 60px;
    position: relative;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.contact-section form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-section .form-group {
    margin-bottom: 25px;
}

.contact-section input,
.contact-section textarea {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 64, 134, 0.1);
}

.contact-section button {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.contact-section button:hover {
    background: #002a5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 64, 134, 0.3);
}

/* Header Styles */
.topbar {
    background-color: var(--dark-color);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .social-links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 15px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.topbar .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 100px 0 50px;
}

.footer .logo {
    max-height: 120px;
    margin-bottom: 40px;
}

.footer h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.footer .contact-info {
    margin-bottom: 40px;
}

.footer .contact-info i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer .social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    margin-right: 25px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 80px 20px;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p {
        font-size: 1.25rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .footer .social-links {
        text-align: center;
        margin-top: 30px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .about-section .section-title::after,
    .contact-section .section-title::after {
        width: 60px;
    }

    .text-dark{
        color:white !important
    }
}