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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.education-header-one {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.education-top-strip {
    background: #2c3e50;
    color: #fff;
    padding: 8px 0;
}

.education-userinfo {
    list-style: none;
    margin: 0;
    padding: 0;
}

.education-userinfo li {
    display: inline-block;
    margin-right: 20px;
}

.education-userinfo a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.education-userinfo a:hover {
    color: #3498db;
}

.education-user-section {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.education-user-section li {
    display: inline-block;
    margin-left: 15px;
}

.education-user-section a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.education-user-section a:hover {
    color: #3498db;
}

.education-main-header {
    padding: 15px 0;
    background: #fff;
}

.education-logo img {
    max-height: 60px;
    width: auto;
}

.education-appointment-btn .btn {
    background: #e74c3c;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.education-appointment-btn .btn:hover {
    background: #c0392b;
}

/* Navigation Styles */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #3498db;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 8px 20px;
    color: #333;
    transition: background 0.3s;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: #f8f9fa;
    color: #3498db;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #bdc3c7;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #bdc3c7;
}

/* Hero Section */
.hero-section {
    position: relative;
}

.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.carousel-caption .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
}

/* Main Section Styles */
.education-main-section {
    padding: 80px 0;
}

.education-bgcolor {
    background: #f8f9fa;
}

.education-fancy-title {
    text-align: center;
    margin-bottom: 60px;
}

.education-fancy-title i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.education-fancy-title span {
    color: #7f8c8d;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.education-fancy-title h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.education-fancy-title h3 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.education-about-services {
    line-height: 1.8;
}

.education-about-services p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.education-about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.education-section-heading {
    margin: 40px 0 20px 0;
}

.education-section-heading h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.service-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #27ae60;
    position: absolute;
    left: 0;
    top: 10px;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.cta-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.education-service-grid-wrap {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.education-service-grid-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.education-service-grid-wrap i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.education-service-grid-wrap h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.education-service-grid-wrap h5 a {
    color: #2c3e50;
    text-decoration: none;
}

.education-service-grid-wrap h5 a:hover {
    color: #3498db;
}

.education-service-grid-wrap p {
    color: #666;
    margin-bottom: 20px;
}

.education-readmore-btn {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.education-readmore-btn:hover {
    color: #2980b9;
}

.course-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-card-body {
    padding: 20px;
}

.course-card-title {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.course-card-text {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.course-card-btn {
    background: #3498db;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    font-weight: 600;
}

.course-card-btn:hover {
    background: #2980b9;
    color: #fff;
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.course-image:hover .course-overlay-icon {
    opacity: 1;
}

.course-image:hover img {
    transform: scale(1.1);
}

.course-image img {
    transition: transform 0.3s;
}

.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-info-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-box p {
    color: #666;
    margin-bottom: 10px;
}

.contact-info-box a {
    color: #3498db;
    text-decoration: none;
}

.contact-info-box a:hover {
    color: #2980b9;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    padding: 12px;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: #3498db;
    box-shadow: none;
}

.contact-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.office-info p {
    margin-bottom: 10px;
    color: #666;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.education-counter-img {
    background: url('../images/counter-bg.jpg') center/cover;
    padding: 80px 0;
    color: #fff;
}

.counter-box {
    text-align: center;
    margin-bottom: 30px;
}

.counter-box i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.counter-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.counter-box p {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin: 0;
}

.education-footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 30px 0;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    border-radius: 5px;
    padding: 10px;
}

.newsletter-form .btn {
    background: #3498db;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
}

.newsletter-form .btn:hover {
    background: #2980b9;
}

#newsletter-message {
    margin-top: 10px;
    font-size: 14px;
}

/* Blog Styles */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.1);
}

.blog-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.blog-image:hover .blog-overlay-icon {
    opacity: 1;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: #3498db;
}

.blog-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta li {
    display: inline-block;
    margin-right: 15px;
}

.blog-meta i {
    margin-right: 5px;
    color: #3498db;
}

.blog-card-text {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-read-more:hover {
    color: #2980b9;
}

.blog-stats {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    border-top: 1px solid #ecf0f1;
    padding-top: 15px;
}

.blog-stats li {
    display: inline-block;
    margin-right: 15px;
}

.blog-stats a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.blog-stats a:hover {
    color: #3498db;
}

.blog-stats i {
    margin-right: 5px;
}

/* Country Styles */
.country-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.country-image {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.country-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.country-card:hover .country-card-img {
    transform: scale(1.1);
}

.country-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.country-card:hover .country-overlay {
    opacity: 1;
}

.country-overlay i {
    color: white;
    font-size: 2rem;
}

.country-card-body {
    padding: 20px;
}

.country-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.country-flag {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 10px;
}

.country-card-title {
    margin: 0;
    font-size: 1.2rem;
}

.country-card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.country-card-title a:hover {
    color: #3498db;
}

.country-card-text {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.country-stats {
    margin-bottom: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.stat-item i {
    color: #3498db;
    margin-right: 8px;
    width: 16px;
}

.country-explore-btn {
    background: #3498db;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    font-weight: 600;
}

.country-explore-btn:hover {
    background: #2980b9;
    color: #fff;
}

/* Benefit Section Styles */
.benefit-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.benefit-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-section p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .education-fancy-title h2 {
        font-size: 2rem;
    }
    
    .education-main-section {
        padding: 60px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .education-userinfo,
    .education-user-section {
        text-align: center;
    }
    
    .education-userinfo li,
    .education-user-section li {
        margin: 5px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-form {
        margin-bottom: 30px;
    }
    
    .education-section-heading h2 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 20px;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .education-fancy-title h2 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .education-section-heading h2 {
        font-size: 1.3rem;
    }
}

.text-justify {
    text-align: justify;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 