/* style.css */
:root {
    --primary-color: #6F4E37;
    --secondary-color: #A67C52;
    --accent-color: #D2B48C;
    --light-color: #F5F5F5;
    --dark-color: #333333;
    --success-color: #4CAF50;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
    cursor: url('../images/coffee-bean-cursor.png'), auto;
}

body[dir="rtl"] {
    font-family: 'Tajawal', sans-serif;
}

/* Custom cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s ease;
}

a:hover {
    cursor: url('../images/coffee-bean-cursor-hover.png'), pointer;
}

button:hover, .btn:hover {
    cursor: url('../images/coffee-bean-cursor-hover.png'), pointer;
}

/* RTL Specific Styles */
body[dir="rtl"] .navbar-nav {
    margin-right: auto;
    margin-left: 0;
}

body[dir="rtl"] .navbar-nav .nav-link::after {
    right: 0;
    left: auto;
}

body[dir="rtl"] .navbar-nav .nav-link:hover::after,
body[dir="rtl"] .navbar-nav .nav-link.active::after {
    width: 100%;
}

body[dir="rtl"] .section-title h2::after {
    right: 50%;
    left: auto;
    transform: translateX(50%);
}

body[dir="rtl"] .hero-buttons .btn {
    margin: 0 10px;
}

body[dir="rtl"] .about-img {
    order: 2;
}

body[dir="rtl"] .about-content {
    order: 1;
}

body[dir="rtl"] .value-item i,
body[dir="rtl"] .industry-item i,
body[dir="rtl"] .approach-icon i,
body[dir="rtl"] .contact-item i,
body[dir="rtl"] .contact-info i {
    margin-right: 0;
    margin-left: 15px;
}

body[dir="rtl"] .testimonial-author img {
    margin-right: 0;
    margin-left: 15px;
}

body[dir="rtl"] .social-links a {
    margin-right: 0;
    margin-left: 10px;
}

body[dir="rtl"] .footer-links a:hover {
    padding-right: 5px;
    padding-left: 0;
}

body[dir="rtl"] .contact-info i {
    margin-right: 0;
    margin-left: 10px;
}

body[dir="rtl"] .strategic-goals .goals-list li {
    padding-right: 30px;
    padding-left: 0;
}

body[dir="rtl"] .strategic-goals .goals-list li::before {
    right: 0;
    left: auto;
}

body[dir="rtl"] .course-features ul li i {
    margin-right: 0;
    margin-left: 8px;
}

body[dir="rtl"] .service-list-widget .service-list li a:hover {
    padding-right: 20px;
    padding-left: 0;
}

body[dir="rtl"] .footer h5::after {
    right: 0;
    left: auto;
}

body[dir="rtl"] .contact-info i {
    margin-right: 0;
    margin-left: 10px;
}

body[dir="rtl"] .testimonial-content::before {
    right: -10px;
    left: auto;
}

body[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding-right: 0.5rem;
    padding-left: 0;
}

body[dir="rtl"] .filter-btn {
    margin: 0 5px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .btn-outline {
    background-color: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

.logo-img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Floating Coffee Beans */
.floating-coffee-beans {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.coffee-bean {
    position: absolute;
    color: rgba(111, 78, 55, 0.1);
    font-size: 2rem;
    animation: float 15s infinite linear;
}

.bean-1 {
    top: 10%;
    left: 10%;
    animation-duration: 20s;
}

.bean-2 {
    top: 20%;
    right: 10%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.bean-3 {
    top: 60%;
    left: 5%;
    animation-duration: 30s;
    animation-delay: 5s;
}

.bean-4 {
    top: 80%;
    right: 15%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.bean-5 {
    top: 40%;
    left: 80%;
    animation-duration: 28s;
    animation-delay: 7s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    color: white;
    position: relative;
}

.page-header-content {
    text-align: center;
}

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

.breadcrumb {
    justify-content: center;
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: white;
}

/* About Section */
.about {
    background-color: var(--light-color);
    position: relative;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.vision-mission .vm-item {
    margin-bottom: 30px;
}

.vision-mission h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.values {
    margin-top: 40px;
}

.value-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: var(--transition);
    height: 100%;
}

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

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.strategic-goals .goals-list {
    list-style: none;
    padding: 0;
}

.strategic-goals .goals-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.strategic-goals .goals-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

/* Services Section */
.services {
    position: relative;
}

.service-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: var(--transition);
    height: 100%;
}

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

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-item:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
}

/* Service Process */
.service-process .process-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-item h3 {
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Industries Section */
.industries .industry-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
    transition: var(--transition);
}

.industries .industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.industries .industry-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Courses Section */
.courses {
    background-color: var(--light-color);
    position: relative;
}

.course-item {
    margin-bottom: 30px;
}

.course-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.course-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.course-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #777;
    font-size: 0.9rem;
}

.course-meta span {
    display: flex;
    align-items: center;
}

.course-meta i {
    margin-right: 5px;
}

.course-features {
    margin: 15px 0;
}

.course-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-features ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.course-features ul li i {
    color: var(--success-color);
    margin-right: 8px;
}

.course-price {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.course-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Course Filters */
.course-filters {
    text-align: center;
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Training Approach */
.training-approach .approach-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
    transition: var(--transition);
}

.training-approach .approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.approach-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials .testimonial-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: rgba(111, 78, 55, 0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    color: #777;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-info {
    padding: 20px;
}

.contact-info h3 {
    color: white;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.contact-item p {
    margin-bottom: 0;
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
    color: white;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

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

/* Contact Page */
.contact-page .contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
}

.contact-page .contact-info h3 {
    color: var(--primary-color);
}

.contact-page .contact-item i {
    color: var(--primary-color);
}

.contact-page .contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
}

.contact-page .contact-form h3 {
    color: var(--primary-color);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section .faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Service Details */
.service-details .service-detail {
    margin-bottom: 50px;
}

.service-detail-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-detail h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-detail ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail ul li {
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar .widget {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar .widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

.service-list-widget .service-list li {
    margin-bottom: 10px;
}

.service-list-widget .service-list li a {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: var(--transition);
}

.service-list-widget .service-list li a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(111, 78, 55, 0.9), rgba(111, 78, 55, 0.9)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-logo img {
    max-height: 60px;
}

.footer h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

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

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

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .course-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .value-item {
        margin-bottom: 20px;
    }
    
    .service-item {
        margin-bottom: 20px;
    }
    
    .course-item {
        margin-bottom: 20px;
    }
    
    .testimonial-item {
        margin-bottom: 20px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        margin: 5px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .about-img img {
        border-radius: 10px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .value-item i {
        font-size: 2rem;
    }
    
    .value-item h4 {
        font-size: 1.2rem;
    }
    
    .service-img {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .course-img {
        height: 180px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .course-price {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .sidebar .widget {
        padding: 20px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer h5 {
        margin-top: 30px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title h2::after {
        width: 60px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .value-item {
        padding: 15px;
        text-align: center;
    }
    
    .value-item i {
        font-size: 1.8rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .service-img {
        height: 160px;
    }
    
    .service-content {
        padding: 15px;
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .course-img {
        height: 160px;
    }
    
    .course-content {
        padding: 15px;
        text-align: center;
    }
    
    .course-content h3 {
        font-size: 1.2rem;
    }
    
    .course-badge {
        top: 10px;
        right: 10px;
        padding: 3px 10px;
        font-size: 0.8rem;
    }
    
    .course-features ul {
        text-align: left;
    }
    
    .course-price {
        text-align: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .approach-item {
        padding: 20px 15px;
    }
    
    .approach-icon {
        width: 60px;
        height: 60px;
    }
    
    .approach-icon i {
        font-size: 2rem;
    }
    
    .testimonial-item {
        padding: 20px 15px;
    }
    
    .testimonial-content::before {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
    }
    
    .sidebar .widget {
        padding: 15px;
    }
    
    .sidebar .widget h3 {
        font-size: 1.1rem;
    }
    
    .service-list-widget .service-list li a {
        padding: 8px 12px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer h5::after {
        width: 40px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    
    .copyright {
        margin-top: 30px;
        font-size: 0.8rem;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Extra small devices (portrait phones, less than 400px) */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .value-item {
        padding: 12px;
    }
    
    .service-content {
        padding: 12px;
    }
    
    .course-content {
        padding: 12px;
    }
    
    .contact-form,
    .contact-info {
        padding: 15px;
    }
}