:root {
    --primary-color: #d62828;
    --primary-light: #fbe9e9;
    --primary-dark: #961c1c;
    --secondary-color: #28a745;
    --secondary-light: #e8f5e8;
    --tertiary-color: #ffc107;
    --tertiary-light: #fff8e1;
    --accent-color: #17a2b8;
    --accent-light: #e6f7ff;
    --neutral-color: #e0e0e0;
    --neutral-light: #f8f9fa;
    --info-color: #6c757d;
    --warning-color: #dc3545;
     --success-color: #28a745;
}

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

body {
    font-family: 'Lato', sans-serif;
      line-height: 1.6;
    color: var(--primary-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
        line-height: 1.2;
    margin-bottom: 1rem;
}

.btn-rounded {
    border-radius: 9999px !important;
     padding: 12px 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
        transition: all 0.3s ease;
}

.topnav-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
      z-index: 1000;
    transition: all 0.4s ease;
}

.brand-logo a {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
        color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-navigation .nav-menu-list {
    list-style: none;
    margin: 0;
        padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-menu-list li {
        margin: 0 8px;
}

.nav-menu-list li a {
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
        font-weight: 500;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
        position: relative;
}

.nav-menu-list li a:hover,
.nav-menu-list li.current-page a {
    color: var(--primary-color) !important;
        background: rgba(214, 40, 40, 0.1);
    transform: translateY(-2px);
}

.mobile-toggle-btn {
    color: #ffffff;
        font-size: 24px;
    text-decoration: none;
}

.main-hero-block {
    position: relative;
    height: 100vh;
        min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
        position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
        top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.8) 0%, rgba(150, 28, 28, 0.9) 100%);
        z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
        color: #ffffff;
    padding: 40px 0;
}

.hero-content-wrapper h1 {
    font-size: 52px;
        font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
        color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-content-wrapper p {
    font-size: 20px;
        font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-action-buttons {
        display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-action-btn {
    background: var(--secondary-color);
        color: #ffffff !important;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
        font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    border: 2px solid transparent;
}

.primary-action-btn:hover {
    background: #218838;
        transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: #ffffff !important;
}

.secondary-action-btn {
    background: transparent;
        color: #ffffff !important;
    padding: 16px 32px;
    border: 2px solid #ffffff;
    border-radius: 9999px;
    text-decoration: none;
        font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
        transition: all 0.3s ease;
}

.secondary-action-btn:hover {
    background: #ffffff;
    color: var(--primary-dark) !important;
        transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.features-block {
    padding: 80px 0;
        background: var(--neutral-light);
}

.feature-card-item {
    background: #ffffff;
    padding: 40px 30px;
        border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
        border: 1px solid var(--neutral-color);
}

.feature-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(214, 40, 40, 0.15);
}

.feature-icon {
        width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
        align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

.feature-card-item:hover .feature-icon {
    background: var(--primary-color);
        transform: scale(1.1);
}

.feature-card-item:hover .feature-icon i {
    color: #ffffff;
}

.feature-card-item h3 {
        font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.feature-card-item p {
        color: var(--info-color);
    font-size: 16px;
    line-height: 1.6;
}

.bottom-site-footer {
    background: #1a1a1a;
        color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    margin-top: 0px;
}

.footer-widget-block {
    margin-bottom: 40px;
}

.footer-heading {
        font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.brand-accent {
        color: var(--primary-color);
}

.footer-sub-heading {
    font-size: 18px;
    font-weight: 600;
        color: #ffffff;
    margin-bottom: 20px;
}

.footer-widget-block p {
    color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
    margin-bottom: 25px;
}

.social-links-footer {
    display: flex;
    gap: 12px;
        margin-top: 25px;
}

.social-link-item {
    width: 45px;
    height: 45px;
        background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
        color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link-item:hover {
        background: var(--primary-color);
    color: #ffffff !important;
    transform: translateY(-3px);
}

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

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

.footer-link-list li a {
        color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
        font-size: 15px;
}

.footer-link-list li a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.footer-link-list li a i {
        margin-right: 8px;
    font-size: 14px;
}

.contact-info-footer {
    margin-top: 25px;
}

.contact-item {
        display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-item i {
        width: 20px;
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
}

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

.copyright-text {
    margin: 0;
        color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
        gap: 20px;
    justify-content: end;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6) !important;
        text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color) !important;
}

@media (max-width: 991.98px) {
        .topnav-container {
        padding: 20px 0;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
            left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 0 0 15px 15px;
    }
    
        .nav-menu-list {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .nav-menu-list li {
        margin: 8px 0;
            width: 100%;
    }
    
    .nav-menu-list li a {
        display: block;
        width: 100%;
        padding: 12px 16px;
    }
    
        .hero-content-wrapper h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-content-wrapper p {
        font-size: 18px;
    }
    
        .hero-action-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .primary-action-btn,
    .secondary-action-btn {
            width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-legal-links {
        justify-content: center;
            margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-content-wrapper h1 {
        font-size: 28px;
    }
    
        .features-block {
        padding: 50px 0;
    }
    
    .feature-card-item {
        margin-bottom: 30px;
    }
}

.experimental-hover-effect {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#old-project-nav {
    display: none;
}

.about-main-section {
        padding: 80px 0;
    background: #ffffff;
}

.section-intro {
    margin-bottom: 50px;
}

.section-title {
        font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
        text-transform: uppercase;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
        color: #555555;
    margin-bottom: 25px;
}

.courses-cta-section {
    padding: 80px 0;
        background: var(--neutral-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
        font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.section-header p {
        font-size: 18px;
    color: #666666;
    line-height: 1.6;
}

.course-card {
    background: #ffffff;
        padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    border: 2px solid transparent;
}

.course-card.featured {
        border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
        top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
        padding: 8px 20px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.course-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.course-icon {
        width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
        align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

.course-card h3 {
    font-size: 24px;
        font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.course-card > p {
    font-size: 16px;
        color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.course-features ul {
    list-style: none;
        padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.course-features li {
    padding: 8px 0;
        font-size: 15px;
    color: #555555;
    position: relative;
    padding-left: 25px;
}

.course-features li:before {
    content: "✓";
        position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.course-price {
        margin-bottom: 30px;
    text-align: center;
}

.price {
    font-size: 36px;
    font-weight: 700;
        color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
}

.price-period {
    font-size: 16px;
        color: #666666;
    margin-left: 8px;
}

.original-price {
    font-size: 18px;
    color: #999999;
        text-decoration: line-through;
    margin-left: 10px;
}

.course-cta-btn {
    background: var(--primary-color);
        color: #ffffff;
    padding: 14px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
        font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.course-cta-btn:hover {
        background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.3);
}

@media (max-width: 991.98px) {
        .section-header h2 {
        font-size: 32px;
    }
    
    .course-card.featured {
        transform: none;
    }
        
    .course-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .courses-cta-section {
        padding: 50px 0;
    }
}

@media (max-width: 767.98px) {
        .course-card {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

.testimonial-quote-section {
    position: relative;
    padding: 100px 0;
        min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.testimonial-bg-image {
        position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.testimonial-bg-overlay {
        position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.testimonial-content {
        position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
}

.quote-icon {
        font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.testimonial-content blockquote {
    font-size: 24px;
        font-weight: 400;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
        border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
        justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
        border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.author-avatar img {
    width: 100%;
        height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h4 {
        font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.author-info p {
        font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 767.98px) {
    .testimonial-quote-section {
            padding: 60px 0;
    }
    
    .testimonial-content blockquote {
        font-size: 20px;
    }
    
    .testimonial-author {
            flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
        
    .quote-icon {
        font-size: 36px;
    }
}

.blog-cta-section {
    padding: 60px 0;
        background: var(--primary-color);
    color: #ffffff;
}

.blog-cta-content h3 {
    font-family: 'Oswald', sans-serif;
        font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.blog-cta-content p {
        font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.blog-cta-button {
        background: #ffffff;
    color: var(--primary-color);
    padding: 16px 28px;
    border-radius: 25px;
        text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
        gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-cta-button:hover {
        background: var(--neutral-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.blog-cta-button i {
        font-size: 18px;
    transition: transform 0.3s ease;
}

.blog-cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
        .blog-cta-section {
        text-align: center;
        padding: 40px 0;
    }
    
    .blog-cta-content {
        margin-bottom: 25px;
    }
        
    .blog-cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .blog-cta-button {
            width: 100%;
        justify-content: center;
    }
}

.smm-easy-section {
  padding: 80px 0;
    background: #ffffff;
}

.section-heading {
  font-family: 'Oswald', sans-serif;
    font-size: 36px;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.content-wrapper {
    margin-bottom: 30px;
}

.circle-bg-element {
  position: relative;
  margin: 0;
}

.circle-bg-element:after {
    width: 280px;
  height: 280px;
  content: "";
  z-index: -1;
  border-radius: 50%;
    position: absolute;
  bottom: -60px;
  right: -60px;
  background: var(--primary-light);
}

.circle-bg-element img {
    border-radius: 15px;
  max-width: 100%;
  height: auto;
}

.feature-checklist {
  margin-bottom: 30px;
}

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

.benefit-list li {
  position: relative;
    padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
  color: #555555;
}

.benefit-list li:before {
    content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
    font-weight: bold;
  color: var(--secondary-color);
}

.smm-easy-section p {
  color: #666666;
    font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .circle-bg-element:after {
    display: none;
  }
  
  .smm-easy-section {
    padding: 50px 0;
  }
    
  .section-heading {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .section-heading {
      font-size: 24px;
  }
  
  .smm-easy-section {
    text-align: center;
  }
}

.testimonials-simple-section {
    padding: 80px 0;
  background: var(--neutral-light);
}

.section-intro {
  margin-bottom: 60px;
}

.testimonials-title {
    font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--primary-dark);
    margin-bottom: 20px;
  text-transform: uppercase;
}

.section-intro p {
  font-size: 18px;
    color: #666666;
  line-height: 1.6;
}

.testimonial-item {
  background: #ffffff;
    padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
    transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.testimonial-item:hover {
  transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(214, 40, 40, 0.12);
}

.testimonial-text {
  margin-bottom: 25px;
}

.testimonial-text p {
    font-size: 16px;
  line-height: 1.7;
  color: #555555;
  font-style: italic;
  margin: 0;
}

.testimonial-author h5 {
    font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
    .testimonials-simple-section {
    padding: 50px 0;
  }
  
  .testimonials-title {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
    .testimonials-title {
    font-size: 26px;
  }
  
  .testimonial-item {
    margin-bottom: 30px;
  }
}