/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Poppins Font Classes */
.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Apply Poppins to all elements - More aggressive approach */
*, *::before, *::after {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

/* Exclude Font Awesome icons from Poppins override */
.fa, .fas, .far, .fab, .fal, .fad, .fa-solid, .fa-regular, .fa-brands, .fa-light, .fa-duotone, 
.fa::before, .fas::before, .far::before, .fab::before, .fal::before, .fad::before, 
.fa-solid::before, .fa-regular::before, .fa-brands::before, .fa-light::before, .fa-duotone::before,
[class*="fa-"], [class^="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Specific overrides for common elements */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, select, label, li, ul, ol, nav, header, main, section, article, aside, footer {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 6rem 0; /* Increased from 5rem to 6rem */
}

.section__header {
    text-align: center;
    margin-bottom: 4rem; /* Increased from 3rem to 4rem */
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1172e2;
    margin-bottom: 1rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1172e2, #1172e2);
    border-radius: 2px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, #1172e2, #1172e2);
    color: white;
    box-shadow: 0 4px 15px rgba(17, 114, 226, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 114, 226, 0.4);
    background: linear-gradient(135deg, #0d5bb8, #1172e2);
}

.btn--secondary {
    background: transparent;
    color: #1172e2;
    border: 2px solid #1172e2;
}

.btn--secondary:hover {
    background: #1172e2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 114, 226, 0.3);
    border-color: #0d5bb8;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17, 114, 226, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Header transparency effect on scroll */
.header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(17, 114, 226, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1172e2;
    text-decoration: none;
}

.logo-text {
    background: linear-gradient(135deg, #1172e2, #1172e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: #1172e2;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1172e2;
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .nav__toggle,
    .nav__close {
        display: none;
        font-size: 1.5rem;
        color: #ffffff;
        cursor: pointer;
    }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem; /* Added more padding */
    border-bottom: 1px solid rgba(17, 114, 226, 0.2);
}

.hero__container {
    position: relative;
    z-index: 2;
    padding: 2rem 0; /* Added container padding */
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* Increased gap */
    align-items: center;
    padding: 2rem 0; /* Added content padding */
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero__name {
    display: block;
    background: linear-gradient(135deg, #1172e2, #1172e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    display: block;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
}

.hero__description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.9s both;
}

.hero__img-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #1172e2;
    box-shadow: 0 20px 40px rgba(17, 114, 226, 0.3);
}

.hero__img-overlay {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(17, 114, 226, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    opacity: 0.8;
}

/* Hero Background */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(17, 114, 226, 0.1), rgba(17, 114, 226, 0.05));
    animation: float 6s ease-in-out infinite;
}

.hero__bg-shape--1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero__bg-shape--2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero__bg-shape--3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* ===== ABOUT SECTION ===== */
.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about__description {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.8;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(17, 114, 226, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(17, 114, 226, 0.1);
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1172e2;
    margin-bottom: 0.5rem;
}

.stat__label {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== SKILLS SECTION ===== */
.skills__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill__card {
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.skill__card:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 114, 226, 0.3);
    box-shadow: 0 10px 30px rgba(17, 114, 226, 0.1);
}

.skill__icon {
    font-size: 3rem;
    color: #1172e2;
    margin-bottom: 1rem;
}

.skill__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.skill__description {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.8;
}

/* ===== EXPERIENCE TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #1172e2, #1172e2);
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline__item:nth-child(odd) .timeline__content {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 2rem;
    text-align: right;
}

.timeline__item:nth-child(even) .timeline__content {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 2rem;
    text-align: left;
}

.timeline__marker {
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 16px;
    height: 16px;
    background: #1172e2;
    border: 4px solid #000000;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline__content {
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.timeline__date {
    color: #1172e2;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline__company {
    color: #1172e2;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.timeline__description {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial__card {
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 114, 226, 0.3);
}

.testimonial__stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.testimonial__text {
    color: #ffffff;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial__name {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial__position {
    color: #1172e2;
    font-size: 0.9rem;
}

/* ================================================== */
/* STYLES FOR NEW FAQ SECTION               */
/* ================================================== */

/* Main container for the new FAQ section */
.new-faq-section {
    padding: 5rem 0; /* Uses existing 'section' padding */
}

/* The main accordion container */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Space between FAQ items */
}

/* Each individual FAQ item (question + answer) */
.faq-accordion__item {
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 12px;
    overflow: hidden; /* This is crucial for the animation */
    transition: all 0.3s ease;
}

/* Add a subtle glow when an item is active/open */
.faq-accordion__item.active {
    border-color: rgba(17, 114, 226, 0.4);
    box-shadow: 0 0 15px rgba(17, 114, 226, 0.1);
}

/* The clickable question part */
.faq-accordion__question {
    /* Reset button styles */
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;

    /* Layout and styling */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.1rem; /* Slightly larger font */
    font-weight: 600;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-accordion__question:hover {
    background-color: rgba(17, 114, 226, 0.1);
}

/* The plus/minus icon */
.faq-accordion__icon {
    color: #1172e2;
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth rotation */
}

/* Rotate the icon when the item is active */
.faq-accordion__item.active .faq-accordion__icon {
    transform: rotate(45deg);
}

/* The answer container (this is what expands/collapses) */
.faq-accordion__answer {
    max-height: 0; /* This is the default state: HIDDEN */
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth animation */
}

/* The content inside the answer, for proper padding */
.faq-accordion__content {
    padding: 0 1.5rem 1.5rem 1.5rem; /* Padding on all sides except top */
}

.faq-accordion__content p {
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    opacity: 0.8;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, rgba(17, 114, 226, 0.1), rgba(17, 114, 226, 0.05));
    border-top: 1px solid rgba(17, 114, 226, 0.2);
    border-bottom: 1px solid rgba(17, 114, 226, 0.2);
}

.cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.8;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(17, 114, 226, 0.05), rgba(17, 114, 226, 0.02));
    border-bottom: 1px solid rgba(17, 114, 226, 0.2);
}

.page-header__title {
    font-size: 3rem;
    font-weight: 700;
    color: #1172e2;
    margin-bottom: 1rem;
}

.page-header__subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb__link {
    color: #1172e2;
    text-decoration: none;
}

.breadcrumb__separator {
    color: #ffffff;
    opacity: 0.8;
}

.breadcrumb__current {
    color: #ffffff;
}

/* ===== SERVICES PAGE ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service__card {
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service__card--featured {
    border-color: #1172e2;
    transform: scale(1.05);
}

.service__card:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 114, 226, 0.5);
    box-shadow: 0 15px 40px rgba(17, 114, 226, 0.15);
    background: rgba(17, 114, 226, 0.08);
}

.service__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1172e2, #1172e2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service__icon {
    font-size: 3rem;
    color: #1172e2;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service__card:hover .service__icon {
    color: #ffffff;
}

.service__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service__description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service__features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service__features li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.service__features i {
    color: #1172e2;
    font-size: 0.8rem;
}

.service__price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1172e2;
    margin-bottom: 1.5rem;
}

/* ===== PROJECTS PAGE ===== */

/* Project Stats Section */
.project-stats {
    padding: 4rem 0;
    background: rgba(17, 114, 226, 0.02);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat__item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(17, 114, 226, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(17, 114, 226, 0.1);
    transition: all 0.3s ease;
}

.stat__item:hover {
    transform: translateY(-5px);
    background: rgba(17, 114, 226, 0.08);
    border-color: rgba(17, 114, 226, 0.2);
}

.stat__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 114, 226, 0.1);
    border-radius: 50%;
    color: #1172e2;
    font-size: 1.5rem;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1172e2;
    margin-bottom: 0.5rem;
    display: block;
}

.stat__label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
}
.projects-filter {
    padding: 2rem 0;
    text-align: center;
    background: rgba(17, 114, 226, 0.02);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(17, 114, 226, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(17, 114, 226, 0.1);
    border-color: rgba(17, 114, 226, 0.5);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #1172e2;
    border-color: #1172e2;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(17, 114, 226, 0.3);
}

.filter__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter__btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(17, 114, 226, 0.3);
    border-radius: 25px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.filter__btn--active,
.filter__btn:hover {
    background: #1172e2;
    color: white;
    border-color: #1172e2;
    opacity: 1;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project__card {
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project__card:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 114, 226, 0.5);
    box-shadow: 0 15px 40px rgba(17, 114, 226, 0.15);
}

.project__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project__card:hover .project__image img {
    transform: scale(1.1);
}

.project__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project__card:hover .project__overlay {
    opacity: 1;
}

.project__actions {
    display: flex;
    gap: 1rem;
}

.project__btn {
    width: 50px;
    height: 50px;
    background: #1172e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project__btn:hover {
    background: #0d5bb8;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(17, 114, 226, 0.3);
}

.project__content {
    padding: 1.5rem;
}

.project__category {
    color: #1172e2;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.project__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.project__description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.project__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech__tag {
    background: rgba(17, 114, 226, 0.1);
    color: #1172e2;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== CONTACT PAGE ===== */
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Ensure both columns have equal height */
.contact__container > * {
    height: 100%;
}

.contact__title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.contact__description {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.contact__details {
    margin-bottom: 1.5rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact__icon {
    width: 40px;
    height: 40px;
    background: rgba(17, 114, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1172e2;
    font-size: 1rem;
}

.contact__label {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact__text {
    color: #ffffff;
    opacity: 0.8;
}

.contact__text a {
    color: #1172e2;
    text-decoration: none;
}

.contact__social-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: auto;
}

.contact__social-links {
    display: flex;
    gap: 1rem;
}

.contact__social-link {
    width: 40px;
    height: 40px;
    background: rgba(17, 114, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1172e2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact__social-link:hover {
    background: #1172e2;
    color: white;
    transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.contact__form {
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

/* Form Styles */
.form__group {
    margin-bottom: 1rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #1172e2;
    background: rgba(17, 114, 226, 0.08);
    box-shadow: 0 0 0 3px rgba(17, 114, 226, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.form__select option {
    background: #000000;
    color: #ffffff;
    padding: 0.5rem;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(17, 114, 226, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #1172e2;
    box-shadow: 0 0 0 3px rgba(17, 114, 226, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form submit button positioning */
.contact__form .btn--full {
    margin-top: auto;
}

.form__messages {
    margin-bottom: 1.5rem;
}

.form__message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form__message--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form__message--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(17, 114, 226, 0.1);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1172e2;
    margin-bottom: 1rem;
}

.footer__description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(17, 114, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1172e2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: #1172e2;
    color: white;
    transform: translateY(-2px);
}

.footer__subtitle {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer__link:hover {
    color: #1172e2;
    opacity: 1;
}

.footer__contact-info p {
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.footer__contact-info i {
    color: #1172e2;
    width: 16px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(17, 114, 226, 0.1);
}

.footer__copy {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-top {
    width: 50px;
    height: 50px;
    background: #1172e2;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #0d5bb8;
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Projects section specific container */
    .projects .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* More compact header container for mobile */
    .header .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section__title {
        font-size: 2rem;
    }

    /* Hide hire button on mobile */
    .nav__actions .btn--primary {
        display: none;
    }

    /* Make header more compact for mobile */
    .header {
        padding: 1rem 0;
    }

    .nav {
        padding: 0;
    }

    .nav__logo {
        font-size: 1.25rem;
    }

    .nav__toggle {
        font-size: 1.25rem;
        display: block !important;
    }

    .nav__close {
        display: block;
        font-size: 1.25rem;
    }

    /* Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav__link {
        font-size: 1.2rem;
    }

    .nav__toggle {
        display: block;
    }

    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        display: block;
    }

    /* Hero */
    .hero {
        padding: 5.5rem 0 3rem; /* Adjusted top padding for balanced header */
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__img-wrapper {
        width: 300px;
        height: 300px;
    }

    /* Stats */
    .about__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Skills */
    .skills__grid {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline::before {
        left: 1rem;
    }

    .timeline__item:nth-child(odd) .timeline__content,
    .timeline__item:nth-child(even) .timeline__content {
        margin-left: 3rem;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline__marker {
        left: 1rem;
        transform: translateX(-50%);
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    .service__card--featured {
        transform: none;
    }

    /* Projects */
    .projects__grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .project__card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .project__image {
        height: 180px;
        width: 100%;
    }

    .project__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project__content {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .project__title {
        font-size: 1.1rem;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .project__description {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .project__tech {
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
    }

    .tech__tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
        white-space: nowrap;
    }

    .project__actions {
        gap: 0.75rem;
        justify-content: center;
    }

    .project__btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .filter__buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Contact */
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact__details {
        height: auto;
    }
    
    .contact__form {
        height: auto;
    }

    /* Footer */
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* CTA */
    .cta__title {
        font-size: 2rem;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Page Header */
    .page-header__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .btn--large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}



/* ===== IMPROVED SPACING AND ALIGNMENT ===== */

/* About section improvements */
.about__content {
    margin-bottom: 3rem; /* Added margin for better spacing */
}

.about__stats {
    margin-top: 3rem; /* Added top margin */
    margin-bottom: 2rem; /* Added bottom margin */
}

/* Skills section improvements */
.skills__grid {
    margin-top: 2rem; /* Added top margin */
    gap: 2.5rem; /* Increased gap between skill cards */
}

.skill__card {
    padding: 2.5rem 2rem; /* Increased padding */
    margin-bottom: 1rem; /* Added bottom margin */
}

/* Experience section improvements */
.timeline {
    margin-top: 2rem; /* Added top margin */
    padding: 2rem 0; /* Added padding */
}

.timeline__item {
    margin-bottom: 4rem; /* Increased margin between timeline items */
}

.timeline__content {
    padding: 2rem; /* Increased padding */
    margin-bottom: 1rem; /* Added bottom margin */
}

/* Testimonials section improvements */
.testimonials__grid {
    margin-top: 2rem; /* Added top margin */
    gap: 2.5rem; /* Increased gap */
}

.testimonial__card {
    padding: 2.5rem; /* Increased padding */
    margin-bottom: 1rem; /* Added bottom margin */
}

/* FAQ section improvements */
.faq__list {
    margin-top: 2rem; /* Added top margin */
}

.faq__item {
    margin-bottom: 1.5rem; /* Increased margin between FAQ items */
}

.faq__question {
    padding: 1.5rem; /* Increased padding */
}

.faq__answer {
    padding: 0 1.5rem 1.5rem; /* Adjusted padding */
}

/* CTA section improvements */
.cta {
    padding: 8rem 0; /* Increased padding */
}

.cta__content {
    padding: 2rem; /* Added padding */
}

/* Page header improvements */
.page-header {
    padding: 10rem 0 6rem; /* Increased padding */
}

.page-header__title {
    margin-bottom: 2rem; /* Increased margin */
}

.page-header__subtitle {
    margin-bottom: 3rem; /* Increased margin */
}

/* Services page improvements */
.services__grid {
    gap: 3rem; /* Increased gap */
    margin-top: 2rem; /* Added top margin */
}

.service__card {
    padding: 3rem 2rem; /* Increased padding */
}

/* Projects page improvements */
.projects__grid {
    gap: 3rem; /* Increased gap */
    margin-top: 2rem; /* Added top margin */
}

.project__card {
    margin-bottom: 2rem; /* Added bottom margin */
}

/* Learn WordPress page improvements */
.course-hero {
    padding: 10rem 0 8rem; /* Increased padding */
}

.course-stats {
    margin: 4rem 0; /* Increased margin */
    gap: 3rem; /* Increased gap */
}

.course-features {
    padding: 8rem 0; /* Increased padding */
}

.course-curriculum {
    padding: 8rem 0; /* Increased padding */
}

.course-pricing {
    padding: 8rem 0; /* Increased padding */
}

.pricing-cards {
    gap: 3rem; /* Increased gap */
    margin-top: 3rem; /* Added top margin */
}

.pricing-card {
    padding: 3rem 2rem; /* Increased padding */
}

/* Contact page improvements */
.contact-form {
    padding: 3rem; /* Increased padding */
    margin-top: 2rem; /* Added top margin */
}

.form-group {
    margin-bottom: 2rem; /* Increased margin */
}

/* General content improvements */
.content-section {
    margin-bottom: 4rem; /* Added margin for content sections */
}

.text-content {
    line-height: 1.8; /* Improved line height */
    margin-bottom: 2rem; /* Added margin */
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0; /* Reduced padding on mobile */
    }

    .hero {
        padding: 6rem 0 3rem; /* Adjusted hero padding on mobile */
    }

    .hero__content {
        gap: 2rem; /* Reduced gap on mobile */
        padding: 1rem 0; /* Reduced padding on mobile */
    }

    .page-header {
        padding: 8rem 0 4rem; /* Adjusted page header padding on mobile */
    }

    .skills__grid,
    .testimonials__grid,
    .services__grid,
    .projects__grid {
        gap: 2rem; /* Reduced gap on mobile */
    }

    .skill__card,
    .testimonial__card,
    .service__card {
        padding: 2rem 1.5rem; /* Reduced padding on mobile */
    }
}



/* ===== LEARN WORDPRESS PAGE STYLES ===== */

/* Course Hero Section */
.course-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 500px;
}

.course-hero__text {
    position: relative;
    z-index: 1;
}

.course-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.course-hero__description {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.8;
}

.course-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.course-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.course-hero__image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(17, 114, 226, 0.1);
    transition: box-shadow 0.3s ease;
}

.course-hero__image img:hover {
    box-shadow: 0 25px 50px rgba(17, 114, 226, 0.15);
}

.course-hero__badge {
    display: inline-block;
    background: linear-gradient(135deg, #1172e2, #1172e2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Grid */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature__card {
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature__card:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 114, 226, 0.3);
}

.feature__icon {
    font-size: 3rem;
    color: #1172e2;
    margin-bottom: 1rem;
}

.feature__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature__description {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.8;
}

/* Curriculum Section */
.curriculum__content {
    max-width: 1000px;
    margin: 0 auto;
}

.curriculum__module {
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.curriculum__module:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 114, 226, 0.3);
    box-shadow: 0 10px 30px rgba(17, 114, 226, 0.1);
}

.module__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(17, 114, 226, 0.08);
    border-bottom: 1px solid rgba(17, 114, 226, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.module__header:hover {
    background: rgba(17, 114, 226, 0.12);
}

.module__number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1172e2;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 1.5rem;
}

.module__title {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.module__duration {
    background: rgba(17, 114, 226, 0.2);
    color: #1172e2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.module__content {
    padding: 0 2rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.module__topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module__topics li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(17, 114, 226, 0.1);
    transition: all 0.3s ease;
}

.module__topics li:last-child {
    border-bottom: none;
}

.module__topics li:hover {
    color: #1172e2;
    padding-left: 0.5rem;
}

.module__topics li i {
    color: #1172e2;
    margin-right: 1rem;
    font-size: 0.9rem;
}
}

.module__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(88, 166, 255, 0.1);
}

.module__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e6edf3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.module__title i {
    color: #58a6ff;
}

.module__duration {
    color: #8b949e;
    font-size: 0.9rem;
}

.module__content {
    padding: 1.5rem;
}

.module__lessons {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.module__lessons li {
    color: #8b949e;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(88, 166, 255, 0.1);
}

.module__lessons li:last-child {
    border-bottom: none;
}

/* Target Audience */
.audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience__card {
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.audience__card:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 166, 255, 0.3);
}

.audience__icon {
    font-size: 3rem;
    color: #58a6ff;
    margin-bottom: 1rem;
}

.audience__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e6edf3;
    margin-bottom: 1rem;
}

.audience__description {
    color: #8b949e;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing__card {
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing__card:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 166, 255, 0.3);
}

.pricing__card--featured {
    border-color: #58a6ff;
    background: rgba(88, 166, 255, 0.1);
    transform: scale(1.05);
}

.pricing__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #58a6ff, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing__header {
    margin-bottom: 2rem;
}

.pricing__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6edf3;
    margin-bottom: 1rem;
}

.pricing__price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.pricing__currency {
    font-size: 1.5rem;
    color: #58a6ff;
}

.pricing__amount {
    font-size: 3rem;
    font-weight: 700;
    color: #58a6ff;
}

.pricing__description {
    color: #8b949e;
    font-size: 0.9rem;
}

.pricing__features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #8b949e;
}

.pricing__features .fa-check {
    color: #58a6ff;
}

.pricing__features .fa-times {
    color: #f85149;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Instructor Section */
.instructor__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.instructor__image {
    text-align: center;
}

.instructor__image img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    border: 4px solid #58a6ff;
}

.instructor__title {
    font-size: 2rem;
    font-weight: 700;
    color: #58a6ff;
    margin-bottom: 1rem;
}

.instructor__name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e6edf3;
    margin-bottom: 0.5rem;
}

.instructor__role {
    color: #8b949e;
    margin-bottom: 1.5rem;
}

.instructor__description {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.instructor__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Responsive Design for Learn WordPress */
@media (max-width: 768px) {
    .course-hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .course-hero__badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .course-hero__title {
        font-size: 2rem;
    }

    .course-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-hero__image {
        order: -1;
        margin-bottom: 2rem;
        padding-top: 0;
    }

    .course-hero__image img {
        max-width: 100%;
    }

    /* Curriculum responsive */
    .module__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .module__number {
        margin-right: 0;
    }

    .module__duration {
        align-self: flex-end;
    }

    /* Filter buttons responsive */
    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Stats responsive */
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat__item {
        padding: 1.5rem 1rem;
    }

    .stat__number {
        font-size: 2rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .audience__grid {
        grid-template-columns: 1fr;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .pricing__card--featured {
        transform: none;
    }

    .instructor__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .instructor__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .course-hero__badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.8rem;
    }

    .course-hero__title {
        font-size: 1.8rem;
    }

    .course-hero__stats {
        grid-template-columns: 1fr;
    }

    .instructor__stats {
        grid-template-columns: 1fr;
    }

    /* Filter buttons mobile */
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    /* Stats mobile */
    .stats__grid {
        grid-template-columns: 1fr;
    }

    .stat__item {
        padding: 1rem;
    }

    .stat__number {
        font-size: 1.8rem;
    }

    /* Form mobile */
    .contact__form {
        padding: 1.5rem;
    }

    .form__input,
    .form__select,
    .form__textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ================================================== */
/* STYLES FOR "HOW I WORK" PROCESS SECTION          */
/* ================================================== */

/* The main container for the steps */
.process__grid {
    display: grid;
    /* On large screens, create 4 columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative; /* This is needed for the connecting line */
    margin-top: 4rem;
}

/* The connecting line that runs behind the steps */
.process__grid::before {
    content: '';
    position: absolute;
    /* Vertically align the line with the center of the number circles */
    top: 35px;
    /* Start the line after half of the first item */
    left: 12.5%;
    /* End the line before half of the last item */
    width: 75%;
    height: 2px;
    background: rgba(17, 114, 226, 0.2);
    /* Place the line behind the step numbers */
    z-index: 0;
}

/* A single step in the process */
.process__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* The number circle (01, 02, etc.) */
.process__number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000; /* Same as body to sit on top of the line */
    border: 2px solid rgba(17, 114, 226, 0.3);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1172e2;
    margin-bottom: 1.5rem;
    z-index: 1; /* Keep the number circle in front of the line */
    transition: all 0.3s ease;
}

/* The icon below the number */
.process__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 114, 226, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.process__icon i {
    font-size: 1.5rem;
    color: #1172e2;
    transition: all 0.3s ease;
}

.process__item:hover .process__icon {
    background: rgba(17, 114, 226, 0.2);
}

.process__item:hover .process__icon i {
    color: #ffffff;
}

/* Add a hover effect to the number circle */
.process__item:hover .process__number {
    background-color: #1172e2;
    color: #000000;
    box-shadow: 0 0 15px rgba(17, 114, 226, 0.3);
}

/* The title of the step */
.process__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* The description text of the step */
.process__description {
    color: #ffffff;
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.8;
}


/* ================================================== */
/* RESPONSIVE STYLES FOR TABLETS AND MOBILE         */
/* ================================================== */

/* For screens smaller than 992px (tablets) */
@media (max-width: 992px) {
    .process__grid {
        /* Change to a 2x2 grid */
        grid-template-columns: repeat(2, 1fr);
    }

    /* We don't need the connecting line on a 2x2 grid */
    .process__grid::before {
        display: none;
    }
}

/* For screens smaller than 576px (mobile phones) */
@media (max-width: 576px) {
    .process__grid {
        /* Stack the items in a single column */
        grid-template-columns: 1fr;
        gap: 3rem; /* Add more space between items when vertical */
    }
}

/* ================================================== */
/* STYLES FOR "MY RECENT PROJECTS" SECTION          */
/* ================================================== */

/* This targets the grid container in your projects section */
.projects__grid {
    display: grid;
    /* On large screens, create 3 columns. It will adjust automatically for smaller screens. */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* This ensures the project cards have some bottom margin for spacing */
.project__card {
    margin-bottom: 2rem;
}


/* ================================================== */
/* STYLES FOR "OTHER WAYS TO CONNECT" SECTION       */
/* ================================================== */

/* The grid container for the alternative contact cards */
.alternatives__grid {
    display: grid;
    /* Create responsive columns, each at least 300px wide */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* A single contact method card */
.alternative__card {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    text-align: center;
    background: rgba(17, 114, 226, 0.05);
    border: 1px solid rgba(17, 114, 226, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.alternative__card:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 114, 226, 0.3);
    box-shadow: 0 10px 30px rgba(17, 114, 226, 0.1);
}

/* The icon for the contact method (e.g., WhatsApp icon) */
.alternative__icon {
    font-size: 3rem;
    color: #1172e2;
    margin-bottom: 1.5rem;
}

/* The title of the card */
.alternative__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* The description text */
.alternative__description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
    /* This makes the description take up available space, pushing the button to the bottom */
    flex-grow: 1;
}

/* The button styles are already in your CSS, but we ensure proper width */
.alternative__card .btn {
    width: 100%; /* Make buttons full width of the card */
    justify-content: center; /* Center the text/icon inside the button */
}

/* ===== FORCE POPPINS FONT - FINAL OVERRIDE ===== */
/* This rule should be at the very end to override any external CSS */
* {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

/* Override any external library fonts - Fix Font Awesome icons */
.fa, .fas, .far, .fab, .fal, .fad, .fa-solid, .fa-regular, .fa-brands, .fa-light, .fa-duotone,
[class*="fa-"], [class^="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Ensure all text elements use Poppins */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, select, label, li, ul, ol, nav, header, main, section, article, aside, footer, .nav__link, .btn, .hero__title, .hero__subtitle, .hero__description, .section__title, .section__subtitle {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}
