/* Base Styles */
:root {
    --primary-color: #ff6b4a;
    --text-dark: #222;
    --text-light: #666;
    --gray-bg: #f8f8f8;
    --white: #fff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --spacing-lg: 24px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    --transition-speed: 0.3s;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #f8f9fa;
}

.carousel {
    user-select: none;
}
.carousel * {
    user-select: none;
    -webkit-user-drag: none;
}
.nineteen {
    border-radius: 4px;
    background: orange;
    color: #fff;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.nineteen span {
    position: relative;
    transition: 400ms;
}
.bi-person{
    font-size: 22px;
}

@media (min-width: 992px) {
    #account-icon {
       margin-top: -3px !important; 
    }
}
.nineteen span::after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -10px;
    transition: 500ms;
}

.nineteen:hover span {
    padding-right: 15px;
}

.nineteen:hover span::after {
    opacity: 1;
    right: 0;
}

.icon-btn {
    font-size: 22px;
    color: #bbb;
    cursor: pointer;
    transition: color 0.3s ease;
}

.favorite-icon:hover {
    color: red;
}

.compare-icon:hover {
    color: #fd7e14;
}


/* Service Features Section */
/* Responsive Styles */
@media (max-width: 767px) {
    .feature {
        margin-bottom: var(--spacing-lg);
    } }
/* Service Features Section */
.service-features {
    
    background-color: var(--background-color);
  }
  
  
  .feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    color: var(red) !important;
  }
  
  .feature-content h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
  }
  
  .feature-content p {
    font-size: 0.875rem;
    color: var(--light-text);
    margin: 0;
  }
  

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.view-all:hover {
    opacity: 0.8;
    text-decoration: underline;
}



/* Master Class Card Styles */
.masterclass-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 300px;
}

.masterclass-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.masterclass-card:hover img {
    transform: scale(1.05);
}

.masterclass-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.masterclass-card .class-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.masterclass-card .class-date {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer Styles */
.site-footer {
    background-color: #222;
    color: #fff;
    padding-top: 48px;
    margin-top: 48px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    color: #ccc;
    display: flex;
    align-items: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #aaa;
}

.payment-icon {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.payment-icon:hover {
    opacity: 1;
}

/* Carousel Styles */
.carousel {
    margin-bottom: 32px;
    touch-action: pan-y pinch-zoom;
}

.carousel-inner {
    overflow: hidden;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Hide carousel controls */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-slide {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-slide {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .category-icon {
        width: 100%;
        height: 48px;
    }
}

.az_img{
    width: 100%;
    object-fit: cover;
}



#mobile-nav a:active,
#mobile-nav a:active i,
#mobile-nav a:active span {
    color: #ff8c00;
}
