/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
    /* Main Colors */
    --primary: #1C9EC9;
    --primary-light: #3CAED5;
    --primary-dark: #0F7A9F;
    --primary-gradient: linear-gradient(135deg, #1C9EC9 0%, #0F7A9F 100%);
    
    /* Secondary Colors */
    --secondary: #2A3B47;
    --dark: #121212;
    --light: #F8F9FA;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --white: #FFFFFF;
    
    /* Fonts */
    --heading-font: 'Teko', sans-serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--secondary);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    color: var(--gray);
}

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

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

section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.bg-light {
    background-color: #f8f9fa;
}

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

/*--------------------------------------------------------------
# Navigational fix
--------------------------------------------------------------*/
.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

.nav-bg-active {
    background: rgba(18, 18, 18, 0.9);
    transition: background 0.3s ease;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 80px;
    height: 80px;
}

#loader-circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 200;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -200;
    }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-custom {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 0 5px 15px rgba(28, 158, 201, 0.3);
}

.btn-custom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn-custom:hover {
    transform: translateY(-3px);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(28, 158, 201, 0.4);
}

.btn-custom:hover:before {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: var(--transition);
}

.navbar-area {
    padding: 20px 0;
    transition: var(--transition);
}

.navbar-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease forwards;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.4s ease;
}

/* Cross (when active) */
.navbar-toggler.toggler-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.toggler-active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.toggler-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.logo {
    color: var(--white);
    font-weight: 700;
    font-size: 28px;
    margin: 0;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
}

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

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: calc(100% - 40px);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    height: 150vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--dark);
    padding-top: 100px;
    overflow: hidden;
}

.hero-shapes .shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(28, 158, 201, 0.1);
    z-index: 1;
}

.hero-shapes .shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(28, 158, 201, 0.05);
    z-index: 1;
}

.hero-shapes .shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 158, 201, 0.03) 0%, rgba(28, 158, 201, 0) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-info {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary);
}

.info-item h6 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 14px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 12px;
}

.social-icons {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}



/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
    margin-bottom: 60px;
}

.section-title .subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title .title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-line {
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    margin-top: 15px;
}

.text-center .section-line {
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image .main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(28, 158, 201, 0.3);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--heading-font);
}

.experience-badge p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--white);
    text-align: center;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text {
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(28, 158, 201, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-text h5 {
    margin-bottom: 10px;
}

.feature-text p {
    margin: 0;
}

.tab-area {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-tabs {
    border: none;
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    border: none;
    background: rgba(28, 158, 201, 0.1);
    color: var(--secondary);
    border-radius: 50px;
    padding: 10px 25px;
    margin-right: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

.tab-content p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(28, 158, 201, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
}

.service-icon i {
    font-size: 36px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card p {
    margin-bottom: 30px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.service-link i {
    margin-left: 10px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(28, 158, 201, 0.05);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover .service-shape {
    transform: scale(2);
    background: rgba(28, 158, 201, 0.1);
}

/*--------------------------------------------------------------
# Classes Section
--------------------------------------------------------------*/
.classes-slider {
    padding-bottom: 60px;
}

.class-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.class-img {
    position: relative;
    overflow: hidden;
}

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

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

.class-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.class-time {
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
}

.class-content {
    padding: 25px;
}

.class-rating {
    margin-bottom: 15px;
}

.class-rating i {
    color: #FFD700;
    font-size: 0.8rem;
}

.class-rating span {
    color: var(--gray);
    font-size: 0.8rem;
    margin-left: 5px;
}

.class-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

.class-info {
    display: flex;
    justify-content: space-between;
}

.class-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.class-info .info-item i {
    color: var(--primary);
    font-size: 16px;
}

.class-info .info-item span {
    color: var(--gray);
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(28, 158, 201, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}
.class-info .info-item span {
    font-weight: 600;
    color: var(--secondary);
  }
  
  .class-schedule {
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
  }
  
  .class-schedule h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
  }
  
  .class-schedule ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .class-schedule ul li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  .class-schedule ul li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 14px;
  }
  

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-slider {
    padding-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

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

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(28, 158, 201, 0.1);
    font-size: 40px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
}

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

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

.author-info h5 {
    margin-bottom: 5px;
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.contact-info {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(28, 158, 201, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-item .icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-item .text h5 {
    margin-bottom: 5px;
}

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

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    background: url('/placeholder.svg?height=600&width=1920') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 158, 201, 0.9) 0%, rgba(15, 122, 159, 0.9) 100%);
    z-index: -1;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

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

.cta-content .btn-custom:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.footer-about p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links ul li a i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 12px;
}

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

.footer-newsletter p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: var(--white);
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: var(--primary);
    border: none;
    border-radius: 0 50px 50px 0;
    color: var(--white);
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--primary-dark);
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/*--------------------------------------------------------------
# Back to Top
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(28, 158, 201, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-section {
        height: auto;
        padding: 150px 0 100px;
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-info {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-top: 30px;
        width: 100%;
    }
    
    .social-icons {
        position: relative;
        bottom: 0;
        left: 0;
        flex-direction: row;
        margin-top: 50px;
    }
    
    .about-image {
        margin-bottom: 50px;
    }
    
    .experience-badge {
        bottom: -20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
    
    .experience-badge span {
        font-size: 2rem;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .section-title .title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-item {
        width: 100%;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
    }
    
    .experience-badge span {
        font-size: 1.5rem;
    }
    
    .experience-badge p {
        font-size: 0.7rem;
    }
    
    .tab-area {
        padding: 20px;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}
