/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Subtle shine sweep for service cards and steps */
.service-card,
.step {
    position: relative;
    overflow: hidden; /* keep shine contained to the hovered card/step */
}


/* Keep original subtle shine for service cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 75%;
    height: 100%;
    /* brighter center, slightly wider */
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.6) 55%, rgba(255,255,255,0) 100%);
    transform: skewX(-18deg);
    transition: left 0.75s cubic-bezier(.22,.9,.28,1), opacity 0.45s ease;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(4px);
    border-radius: inherit;
}

/* Stronger, more noticeable shine specifically for steps */
.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 45%, rgba(255,255,255,0.6) 55%, rgba(255,255,255,0) 100%);
    transform: skewX(-18deg);
    transition: left 0.7s cubic-bezier(.22,.9,.28,1), opacity 0.45s ease;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(6px);
    border-radius: inherit;
}

.service-card:hover::before,
.service-card:focus::before,
.step:hover::before,
.step:focus::before {
    left: 150%;
    opacity: 1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #333;
    color: #333;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.logo {
    grid-column: 1;
}

.logo h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    width: 100%;
    padding: 0;
}

.logo-link {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: #a5a6a6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    grid-column: 2;
    justify-self: flex-start;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #959698;
}

@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 20px;
    }

    .logo {
        grid-column: 1;
    }

    .nav-menu {
        grid-column: 1;
        gap: 0.8rem;
        font-size: 0.85rem;
        justify-self: flex-start;
        padding: 0;
    }

    .nav-link {
        white-space: nowrap;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .nav-link {
        white-space: nowrap;
        padding: 0.5rem;
    }
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, hsl(0, 0%, 100%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff 0%, hsl(0, 0%, 100%) 100%);
    border-radius: 2px;
}


/* Hero Section */
.hero {
    padding: 3rem 2rem 50px 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-image: url('resources/bm2.jpg'); 
    background-size: 100% 100%; 
    background-position: top center; 
    background-attachment: fixed;
    position: relative;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* spacing Section */
.hero .spacing-section {
    padding: 0;
    background-color: #ffffff;
    height: 30px;
    border: 3px solid #ffffff;
    color: white;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.banner-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .banner-img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-image-container {
        min-height: 250px;
        margin-top: 20px;
    }
}

.hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.hero-subtitle {
    color: #ffffff;
    margin: 1rem 1rem 1rem 0rem;
    font-size: 1.3rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    width: fit-content;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.hero-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 5rem 2rem 50px 2rem;
    background: #ffffff;
    position: relative;
    margin-bottom: 50px;
}

.about .section-title{
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    background: linear-gradient(135deg, #231d1d 0%, hsl(0, 0%, 0%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #181515 0%, hsl(0, 0%, 0%) 100%);
    border-radius: 2px;
}

.about .container {
    max-width: 1200px;
}

.about-textcontent {
    display: flex;
    flex-direction: column;
    font-size: larger;
    gap: 3rem;
}

.about-subsection {
    background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.about-subsection:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border-left-color: #17A100;
}

.about h2 {
    color: #000000;

}

.about h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.30rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .about-subsection {
        padding: 2rem;
    }

    .about h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}
.about-image-placeholder {
    display: flex;
    justify-content: center;
}

.about-image-placeholder .image-placeholder {
    width: 100%;
    height: 350px;
    background-color: #e0e0e0;
    border: 2px dashed #999;
}

#plan {
    background: transparent;
    background-attachment: fixed;
    position: relative;
}



.about h3{
    font-size: larger;
    top: 1rem;
}




/* Services Section */

.s_spacing-section_bg {
    background-image: url('resources/db.jpg');
    background-attachment: fixed;
    background-size: 100% 100%;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0;
    display: block;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.s_spacing-section_bg .s_spacing-section {
    padding: 0;
    background-repeat: no-repeat;
    background-image: url('resources/db.jpg');
    background-attachment: fixed;
    background-size: 100% 100%;
    background-position: top center;
    height: 30px;
    border: 3px solid #ffffff;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    width: 90%;
    max-width: 1200px;
    display: block;
    position: relative;
    margin: 0 auto;
    left: 0;
    top: -30px;
    transform: none;
    z-index: 1;
}


.services {
    padding: 5rem 2rem;
    position: relative;
    /* allow scaled children to overflow without being clipped */
        overflow: visible; /* safety: ensure overlay doesn't clip scaled children */
}

.services-overlay {
    position: relative;
    top: 0;
    left: 0;
        overflow: visible; /* safety: ensure overlay doesn't clip scaled children */
    width: 100%;
    height: 100%;
    z-index: 1;
}
.section-title {
    display: block;
    position: relative;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -25%);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
    opacity: 1;
}


.services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    overflow: visible;
}

/* Force visible overflow and strong hover stacking in case ancestor rules clip scaled children */
section#services,
.services,
.services .container,
.services-grid,
section#approach,
.approach,
.approach .container,
.approach-steps {
    overflow: visible !important;
}

/* High-specificity hover/tap rules to override other transform rules and ensure stacking above siblings */
section#services .services-grid .service-card:hover,
section#services .services-grid .service-card:focus,
section#approach .approach-steps .step:hover,
section#approach .approach-steps .step:focus {
    transform: translateY(-6px) scale(1.06) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18) !important;
    z-index: 9999 !important;
}

/* Improve rendering on mobile/touch */
section#services .services-grid .service-card,
section#approach .approach-steps .step {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-origin: center center;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #a75a61 0%, #4d819c 100%) 1;
    transition: transform 0.28s cubic-bezier(.2,.9,.2,1), box-shadow 0.28s ease, border-image 0.28s ease;
    text-align: center;
    position: relative;
    transform-origin: center center;
    will-change: transform, box-shadow;
}

.service-card:hover,
.service-card:focus {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    border-image: linear-gradient(180deg, #4d819c 0%, #a75a61 100%) 1;
}

/* Make hovered/scaled cards appear above neighbors */
.service-card:hover,
.step:hover {
    z-index: 20;
}

/* Touch devices: apply a subtle scale on tap */
.service-card:active {
    transform: translateY(-2px) scale(1.03);
}

/* Mobile / touch-specific: ensure taps produce a visible scale and shadow */
@media (hover: none) and (pointer: coarse) {
    .service-card:active,
    .service-card:focus,
    .step:active,
    .step:focus {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 1rem auto;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Approach Section */
.approach {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    position: relative;
}

.approach-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#approach {
    position: relative;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background-color: #fff;
    padding: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.28s cubic-bezier(.2,.9,.2,1), transform 0.28s cubic-bezier(.2,.9,.2,1);
    overflow: hidden; /* contain shine pseudo-element to this step */
    position: relative;
    margin-bottom: 20%;
    transform-origin: center top;
    will-change: transform, box-shadow;
}

.step:hover,
.step:focus {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

/* Touch behavior: scale on tap for mobile */
.step:active {
    transform: scale(1.02);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: inherit;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    padding: 3px;
    background-image: 
        linear-gradient(180deg, #a75a61 0%, #4d819c 100%),
        linear-gradient(180deg, #a75a61 0%, #4d819c 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step:hover .step-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}
.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.step p {
    color: #666;
    line-height: 1.7;
}


/* Why Choose Us Section */

/* spacing Section Container */

.wc_spacing-section_bg {
    background-image: url('resources/bb.jpg');
    background-attachment: fixed;
    background-size: 100% 100%;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 2rem;
    display: block;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.wc_spacing-section_bg .wc_spacing-section {
    padding: 0;
    background-repeat: no-repeat;
    background-image: url('resources/bb.jpg');
    background-attachment: fixed;
    background-size: 100% 100%;
    background-position: top center;
    height: 30px;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    width: 90%;
    max-width: 1200px;
    display: block;
    position: relative;
    margin: 0 auto;
    left: 0;
    top: -60px;
    transform: none;
    z-index: 1;

    
}
.why-choose {
    padding: 5rem 2rem 5rem 2rem;
    background: transparent;
    position: relative;
    margin-bottom: 20px;
}


.why-choose .section-title{
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    background: linear-gradient(135deg, #ffffff 0%, hsl(0, 0%, 100%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.why-choose .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 27%;
    transform: translateX(-50%);
    width: 53%;
    height: 3px;
    background: linear-gradient(90deg, #efe8e8 0%, hsl(0, 0%, 100%) 100%);
    border-radius: 2px;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.benefit {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #0a84cd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.benefit p {
    color: #666;
    line-height: 1.7;
}


/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: #fff;
}

.contact .section-title{
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    background: linear-gradient(135deg, #231d1d 0%, hsl(0, 0%, 0%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #181515 0%, hsl(0, 0%, 0%) 100%);
    border-radius: 2px;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
    background-color: #667eea;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #764ba2;
    transform: translateY(-2px);
}
.contact {
    padding: 2rem 2rem;
    background-color: #fff;
    position: relative;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: auto;
    min-height: auto;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    font-weight: 600;
    color: #171b2d;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.info-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #764ba2;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.footer p {
    margin: 0.5rem 0;
}

.footer p:first-child {
    font-weight: 600;
}

/* Partners Section */
.p_spacing-section_bg {
    background-image: url('resources/bf_bg1.jpg');
    background-attachment: fixed;
    background-size: 100% 100%;
    position: relative;
    height: 40%;
    width: 100%;
    margin: 0;
    padding: 2rem;
    display: block;
    align-items: center;
    justify-content: center;
    top:-30px;
    z-index: 2;
}
.p_spacing-section_bg .p_spacing-section {
    padding: 0;
    background-repeat: no-repeat;
    background-image: url('resources/bf_bg1.jpg');
    background-attachment: fixed;
    background-size: 100% 100%;
    background-position: top center;
    height: 30px;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    width: 90%;
    max-width: 1200px;
    display: block;
    position: relative;
    margin: 0 auto;
    left: 0;
    top: -60px;
    transform: none;
    z-index: 1;
}

.partners {
    padding: 5rem 2rem;
    background: transparent;
    position: relative;
}

.partners-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 100%;
    height: 150px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.partner-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: cover;
}

.partner-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.partner-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .partners {
        padding: 3rem 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 60px;
        bottom: -8px;
    }

    .hero {
        padding: 2rem 1rem 50px 1rem;
        min-height: auto;
        flex-direction: column;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image-container {
        min-height: 250px;
    }

    .banner-img {
        max-width: 100%;
    }

    .about {
        padding: 3rem 1rem;
    }

    .about-subsection {
        padding: 1.5rem;
    }

    .about h3 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .s_spacing-section_bg {
        background-attachment: scroll;
        background-size: contain;
        padding: 0;
    }
    .s_spacing-section_bg .s_spacing-section {
        background-attachment: scroll;
        background-size: contain;
        background-size: 100% 100%;
        height: 30px;
        top: -30px;
        margin: 0 auto;
    }

    .services {
        padding: 3rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .approach {
        padding: 3rem 1rem;
    }

    .approach-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
        padding-top: 3rem;
    }

    .step h3 {
        font-size: 1.1rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .why-choose {
        padding: 3rem 1rem;
        height: 110%;
    }

    .why-choose .section-title::after{
        width: 90%;
        left: 45%;
    }

    .wc_spacing-section_bg {
        background-attachment: scroll;
        background-size: contain;
        padding: 0;
    }

    .wc_spacing-section_bg .wc_spacing-section {
        background-image: none;
        background-color: #010520;
        color:#010520;
        height: 30px;
        top: -30px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit {
        padding: 1.5rem;
    }

    .benefit h3 {
        font-size: 1.1rem;
    }

    .benefit p {
        font-size: 0.9rem;
    }

    .contact {
        padding: 3rem 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .contact-info {
        padding: 1.5rem;
        height: auto;
        margin-top: 1.5rem;
    }

    .partners {
        padding: 3rem 1rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-logo {
        height: 120px;
    }

    .partner-card h3 {
        font-size: 1.1rem;
    }

    .partner-card p {
        font-size: 0.9rem;
    }

    .nav-menu {
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    .nav-link {
        white-space: nowrap;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 50px;
        height: 2px;
        bottom: -6px;
    }

    .hero {
        padding: 1.5rem 1rem 40px 1rem;
        min-height: auto;
    }

    .hero-wrapper {
        gap: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .nav-link {
        white-space: nowrap;
        padding: 0.25rem;
    }

    .nav-link {
        padding: 0.5rem;
    }

    .about {
        padding: 2rem 1rem;
    }

    .about-subsection {
        padding: 1rem;
        gap: 1rem;
    }

    .about h3 {
        font-size: 1.2rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .s_spacing-section_bg {
        background-attachment: scroll;
        background-size: contain;
        padding: 0;
    }
    .s_spacing-section_bg .s_spacing-section {
        background-attachment: scroll;
        background-size: contain;
        background-size: 100% 100%;
        height: 30px;
        top: -30px;
        margin: 0 auto;
    }


    .services {
        padding: 2rem 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .approach {
        padding: 2rem 1rem;
    }

    .step {
        padding: 1rem;
        padding-top: 2.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.85rem;
    }

    .why-choose {
        padding: 2rem 1rem;
        margin-bottom: 10px;
        height: 190%;
    }

    .why-choose h2 {
        font-size: 1.5rem;
        padding: 0.8rem;
    }

    .why-choose .section-title::after{
        width: 90%;
        left: 50%;
    }

    .wc_spacing-section_bg {
        background-attachment: scroll;
        background-size: cover;
        padding: 0;
        height: 190%;
    }

    .wc_spacing-section_bg .wc_spacing-section {
        background-image: none;
        background-color: #010520;
        color:#010520;
        height: 30px;
        top: -30px;
        margin: 0 auto;
        z-index: 1;
    }

    .benefit h3 {
        font-size: 1rem;
    }

    .benefit p {
        font-size: 0.85rem;
    }

    .contact {
        padding: 2rem 1rem;
    }

    .contact-intro {
        font-size: 0.95rem;
    }

    .contact-form {
        gap: 0.8rem;
    }

    .contact-info {
        padding: 1.2rem;
        height: auto;
    }

    .contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .info-item {
        margin-bottom: 1.5rem;
    }

    .info-item h4 {
        font-size: 0.95rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .partners {
        padding: 2rem 1rem;
    }

    .partner-logo {
        height: 100px;
    }

    .partner-card h3 {
        font-size: 1rem;
    }

    .partner-card p {
        font-size: 0.85rem;
    }

    .footer {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

