* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.text-red {
    color: #9d0405;
}

.text-white{
    color: #ffffff;
}

.btn {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    background-color: #9d0405;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Mona sans';
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #9d0405;
}

.btn svg {
    margin-left: 10px;
}

section {
    padding: 60px 0;
}

.mobile-break {
    display: none;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;              
    left: 0;              
    width: 100%;
    z-index: 100;
    padding: 10px 0;
    background-color: #000000;
  }
  

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #9d0405;
}

.logo img {
    height: 100px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 30px;
}

.desktop-nav ul li a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #9d0405;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #111;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 60px 30px;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

.mobile-logo {
    margin-bottom: 40px;
    text-align: center;
}

.mobile-logo img {
    height: 50px;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li a.active {
    color: #9d0405;
}

/* Hero Section */
.hero {
    min-height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center; 
    position: relative;
    background:  left no-repeat;
    background-size: 40%; 
    background-position: left; 
    background-position-y: 60px;
    background-position-x: 80px;
    margin-bottom: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
}

.hero-content {
    position: relative;
    z-index: 1; 
    max-width: 80%; 
    text-align: center;
    justify-content: center;
}

.hero-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
}

.hero-description {
    font-size: 15px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 40px;
}

.hero-indicators {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    cursor: pointer; 
    transition: background-color 0.3s ease;
  }

.hero-indicator.active {
    background-color: #9d0405;
}

/* What We Do Section */
.what-we-do {
    background: linear-gradient(to right, #fff 50%, #000 50%);
    color: #000;
    overflow: hidden;
    padding: 60px 80px;
}

.what-we-do h2{
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: bold;
    font-size: 30px;
}

.section-subtitle{
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: normal;
    color: #6C6E76;
    font-size: 16px;
}

.what-we-do-container {
    display: flex;
    flex-wrap: wrap;
}

.what-we-do-left {
    width: 50%;
    padding: 60px 0px 60px 0px;
    justify-content: center;
    align-items: right;
}

.what-we-do-right {
    width: 50%;
    padding: 60px  0px 60px 0px;
    color: #fff;
}

.what-we-do-right-container{
    display: flex;
    flex-direction: row;
}

.what-we-do-left-container{
    display: flex;
    position: relative;
    flex-direction: row;
}

.ellipse16 {
    position: absolute;
    left: 100%; 
    top: 55%;  
    transform: translate(-50%, -50%); 
    z-index: 0; 
}


.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
}

.service-list-left {
    margin-top: 10px;
    justify-content: flex-end; 
    text-align: right;     
}


.service-list {
    margin-top: 10px;
}

.service-item-left {
    margin-bottom: 30px;
    align-items: flex-end;
    text-align: end;
    max-width: 450px;
}

.service-item {
    margin-bottom: 30px;
    max-width: 450px;
}

.service-title-left {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-title {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #000;
    margin-left: 15px;
}

.service-description-left {
    font-size: 14px;
    text-align: end;
    font-weight: lighter;
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-description {
    font-size: 14px;
    padding-left: 45px;
    text-align: start;
    font-weight: lighter;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    margin-right: 15px;
    margin-left: 15px;
}

.right-service .service-icon {
    background-color: #000000;
    border: white solid 1px;
}

/* How It Works Section */
.how-it-works {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #ffffff;
    color: #000;
    position: relative;
    overflow: hidden;
}

.background-circle-1{
    width: 200px;
    height: 200px;
    background-color: #d9d9d9;
    border-radius: 50%;
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: 40px; 
    left: 200px;
    width: 450px;
    height: 450px;
    background-color: #d9d9d9; 
    opacity: 26%;
    border-radius: 50%;
    z-index: 0;
}

.how-it-works::after {
    content: "";
    position: absolute;
    top: 140px; 
    left: 900px;
    width: 450px;
    height: 450px;
    background-color: #d9d9d9; 
    opacity: 26%;
    border-radius: 50%;
    z-index: 0;
}

.how-it-works-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.how-it-works-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.how-it-works-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #6C6E76;
}


.join-and-steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    margin-bottom: 20px;
}

.step-circle {
    width: 200px;
    height: 200px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    position: relative;
}

.step-circle.red {
    background-color: #9d0405;
}

.step-number {
    position: absolute;
    top: 30px;
    right: 70px;
    width: 30px;
    height: 30px;
    background-color: #9d0405;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #fff; 
}

.step-title {
    margin-top: 20px;
    font-weight: normal;
    margin-bottom: 5px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-description {
    font-size: 12px;
    margin-top: 5px;
    font-weight: lighter;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.join-circle {
    width: 240px;
    height: 240px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden; 
}

.join-circle-text {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.OIP-image {
    position: absolute;
    top: 120px; 
    left: 15px;
    width: 170px;
    height: auto;
    opacity: 100; 
    pointer-events: none; 
}

.steps-btn {
    display: inline-flex;
    gap: 8px;
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #111;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 30px;
    font-weight: normal;
    font-size: 14px;
    font-family: 'Mona sans';
    transition: all 0.3s ease;
}

.steps-btn:hover {
    background-color: #9d0405;
}

.steps-btn svg {
    margin-left: 10px;
}

/* About Section */
.about {
    min-height: 80vh;
    display: flex;
    background: linear-gradient(to right, #000 50%, #fff 50%);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.about-left {
    width: 50%;
    padding: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-left img {
    max-width: 100% !important;
    max-height: 600px !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    filter: none !important;
}

.about-circle {
    width: 120px;
    height: 120px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 2;
}

.about-center-circle {
    width: 160px;
    height: 160px;
    border: 2px solid #9d0405;
    border-radius: 50%;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-right {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
}

.about-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
}

.about-description {
    margin-bottom: 40px;
    max-width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    line-height: 1.8;
}

.about-btn {
    justify-content: center;
    display: inline-flex;
    gap: 8px;
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #111;
    text-decoration: none;
    padding: 12px 18px;
    border: 1px solid #000; 
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Mona sans';
    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: #f1f1f1;
}

.about-btn img {
    margin-left: 10px;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin-right: 20px;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links .separator {
    color: #666;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-social {
    display: flex;
}

.footer-social a {
    color: #fff;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color:#9D0405;
}

.copyright {
    color: #666;
    margin-top: 10px;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.ellipse17 {
    margin-top: 100px; 
}

@media screen and (min-width: 992px) {
    .steps-container {
        margin-left: 50px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero {
        background-size: 50%;
        background-position-x: 40px;
    }

    .ellipse17 {
        display: none;
 
    }

    .ellipse16 {
        display: none;
    }
    
    .what-we-do h2 {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .about-left img {
        max-height: 500px !important;
        opacity: 1 !important;
        filter: none !important;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 14px;
    }
}

.service-list {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .service-list {
        margin-left: 50px;
    }
}


@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .ellipse17 {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        background-position: center;
        background-size: cover;
        padding-top: 60px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding-top: 60px;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn {
        margin-top: 30px;
    }
    
    .mobile-break {
        display: block;
        height: 0;
    }
    
    .what-we-do {
        background: none;
        background-color: #fff;
        padding: 50px 40px;
    }
    
    .what-we-do-container {
        flex-direction: column;
    }
    
    .what-we-do-left, .what-we-do-right {
        width: 100%;
        padding: 30px 20px;
    }
    
    .what-we-do-right {
        background-color: #000;
    }
    
    .service-item-left {
        text-align:end;
        max-width: 100%;
        justify-content: flex-end;
    }
    
    .service-title-left {
        text-align: right;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .circle-icon {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .service-description-left {
        text-align: right;
        padding-left: 45px;
        padding-right: 40px;
    }

    .how-it-works::before, .how-it-works::after {
        width: 300px;
        height: 300px;
    }
    
    .steps-container {
        gap: 20px;
    }
    
    .about {
        flex-direction: column;
        background: none;
        min-height: auto;
    }
    
    .about-left {
        width: 100%;
        background-color: #000;
        padding: 50px 20px;
    }
    
    .about-right {
        width: 100%;
        background-color: #fff;
        padding: 50px 20px;
    }
    
    .about-left img {
        max-height: 450px !important;
    }
    
    .about-circle {
        width: 100px;
        height: 100px;
        top: 30px;
        left: 50px;
    }
    
    .about-center-circle {
        width: 140px;
        height: 140px;
        border-width: 2px;
        top: 65%;
    }
    
    .about-title {
        font-size: 30px;
        margin-top: -500px;
    }
    
    .about-description {
        font-size: 16px;
        margin-top: -500px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        background-size: 70%;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }

    .ellipse17 {
        display: none;
    }
    
    .what-we-do {
        padding: 40px 30px;
    }
    
    .what-we-do h2 {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .how-it-works {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .how-it-works::before {
        left: -100px;
    }
    
    .how-it-works::after {
        left: 300px;
    }
    
    .join-and-steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
        order: 2;
    }
    
    .join-and-steps-container .step:first-child {
        order: 1;
    }
    
    .steps-container .step:nth-child(1) {
        order: 2;
    }
    
    .steps-container .step:nth-child(2) {
        order: 3;
    }
    
    .steps-container .step:nth-child(3) {
        order: 4;
    }
    
    .steps-container .step:nth-child(4) {
        order: 5;
    }
    
    .join-circle {
        width: 180px;
        height: 180px;
    }
    
    .join-circle-text {
        font-size: 12px;
    }
    
    .OIP-image {
        top: 90px;
        width: 150px;
    }
    
    .step-circle {
        width: 140px;
        height: 140px;
    }
    
    .step-number {
        top: 20px;
        right: 55px;
    }
    
    .about-left, .about-right {
        padding: 40px 25px;
    }
    
    .about-left img {
        max-height: 400px !important;
    }
    
    .about-center-circle {
        width: 120px;
        height: 120px;
        border-width: 2px;
        top: 65%;
    }
    
    .about-circle {
        width: 80px;
        height: 80px;
        top: 20px;
        left: 30px;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links, .footer-social, .copyright {
        margin-bottom: 15px;
    }
    
    .footer-links a {
        display: inline-block;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 80px;
    }

    .ellipse17 {
        display: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 80vh;
        background-size: 60% !important;
        background-position: center !important;
    }
    
    .hero-content {
        padding-top: 80px;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .what-we-do {
        padding: 40px 20px;
    }
    
    .what-we-do h2 {
        font-size: 20px;
    }
    
    .how-it-works-title {
        font-size: 24px;
    }
    
    .how-it-works-subtitle {
        font-size: 14px;
    }
    
    .service-title, .service-title-left {
        font-size: 14px;
    }
    
    .service-description, .service-description-left {
        font-size: 12px;
    }
    
    .join-and-steps-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 25px;
        order: 2;
    }
    
    .join-and-steps-container .step:first-child {
        order: 1;
    }
    
    .steps-container .step:nth-child(1) {
        order: 2;
    }
    
    .steps-container .step:nth-child(2) {
        order: 3;
    }
    
    .steps-container .step:nth-child(3) {
        order: 4;
    }
    
    .steps-container .step:nth-child(4) {
        order: 5;
    }

    .service-description{
        text-align: left;
    }
    
    .about-title {
        font-size: 24px;
    }

    
    .about-description {
        font-size: 14px;
    }
    
    .about-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .how-it-works::before, .how-it-works::after {
        width: 200px;
        height: 200px;
    }
    
    .step {
        width: 140px;
    }
    
    .step-circle {
        width: 200px;
        height: 200px;
    }
    
    .step-number {
        top: 25px;
        right: 75px;
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .join-circle {
        width: 200px;
        height: 200px;
    }
    
    .OIP-image {
        top: 100px;
        width: 140px;
    }
    
    .steps-btn {
        margin-top: 40px;
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .footer-links a {
        font-size: 16px;
    }
    
    .footer-links .separator {
        font-size: 16px;
    }
    
    .copyright {
        font-size: 16px;
    }
}

/* Additional responsive breakpoints for better coverage */
@media (max-width: 480px) {
    .hero-title {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 11px;
    }
    
    .what-we-do h2 {
        font-size: 18px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .how-it-works-title {
        font-size: 20px;
    }
    
    .how-it-works-subtitle {
        font-size: 12px;
    }
    
    .about-title {
        font-size: 20px;
    }
    
    .about-description {
        font-size: 11px;
    }
    
    .about-circle {
        display: none;
    }
    
    .about-center-circle {
        display: none;
    }
    
    .join-and-steps-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 20px;
        order: 2;
    }
    
    .join-and-steps-container .step:first-child {
        order: 1;
    }
    
    .steps-container .step:nth-child(1) {
        order: 2;
    }
    
    .steps-container .step:nth-child(2) {
        order: 3;
    }
    
    .steps-container .step:nth-child(3) {
        order: 4;
    }
    
    .steps-container .step:nth-child(4) {
        order: 5;
    }
    
    .step-circle {
        width: 180px;
        height: 180px;
    }
    
    .step-number {
        top: 20px;
        right: 65px;
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .join-circle {
        width: 180px;
        height: 180px;
    }
    
    .OIP-image {
        top: 90px;
        width: 120px;
    }
    
    .service-item, .service-item-left {
        margin-bottom: 20px;
    }
    
    .circle-icon, .service-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero-description {
        font-size: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .what-we-do {
        padding: 30px 15px;
    }
    
    .what-we-do h2 {
        font-size: 16px;
    }
    
    .how-it-works {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .how-it-works-title {
        font-size: 18px;
    }
    
    .how-it-works-subtitle {
        font-size: 11px;
    }
    
    .about {
        min-height: auto;
    }
    
    .about-left, .about-right {
        padding: 30px 15px;
    }
    
    .about-title {
        font-size: 18px;
    }
    
    .about-description {
        font-size: 11px;
    }
    
    .about-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .step-circle {
        width: 160px;
        height: 160px;
    }
    
    .step-number {
        top: 20px;
        right: 65px;
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .join-circle {
        width: 160px;
        height: 160px;
    }
    
    .OIP-image {
        top: 80px;
        width: 100px;
    }
    
    .steps-btn {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .footer-links a {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .footer-links .separator {
        font-size: 16px;
    }
    
    .copyright {
        font-size: 16px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 20px;
    }
    
    .hero-content {
        padding-top: 40px;
    }
    
    .about {
        min-height: 100vh;
    }
    
    .about-left, .about-right {
        padding: 20px;
    }
    
    .about-left img {
        max-height: 400px !important;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-size: 35%;
    }
    
    .about-left img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .hero::before {
        display: none;
    }
    
    .mobile-menu-toggle,
    .mobile-sidebar {
        display: none !important;
    }
    
    .btn,
    .about-btn,
    .steps-btn {
        border: 1px solid #000;
        background: none !important;
        color: #000 !important;
    }
}