/*  */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9fb;
    color: #333;
}

.container-about {
    max-width: 1400px;
    margin: auto;
    /* padding: 60px 20px; */
}

.title {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn {
    background: #ff6b57;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #e0442f;
}

.values {
    margin-top: 50px;
}

.values h2 {
    font-size: 30px;
    color: #1e1e2f;
    margin-bottom: 15px;
}

.values ul {
    list-style: none;
    padding-left: 0;
}

.values ul li {
    margin-bottom: 12px;
    font-size: 18px;
    padding-left: 20px;
    position: relative;
}

.values ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #ff6b57;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex: 1 1 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.agent-section {
    text-align: center;
    margin-top: 60px;
}

.slider-about {
    margin: 60px 0;
    overflow: hidden;
    position: relative;
}

.slider-about-track {
    display: flex;
    animation: scroll 15s linear infinite;
}

.slider-about-track img {
    height: 200px;
    margin-right: 20px;
    border-radius: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }

    .slider-about-track img {
        height: 150px;
    }
}


.redesigned-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding: 0 20px;
}

.modern-title {
    font-size: 40px;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e1e2f;
    text-align: center;
    margin-bottom: 15px;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: #ff6b57;
    margin-bottom: 30px;
}

section {
    margin: 50px 0;
}

.company-section .accent-line {
    margin-left: 0;
}

/* Company Section */
.company-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.company-text {
    flex: 1 1 500px;
}

.company-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.modern-btn {
    background: #ff6b57;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 87, 0.3);
}

.modern-btn:hover {
    background: #e05a49;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 87, 0.4);
}

.company-image {
    flex: 1 1 300px;
    position: relative;
}

.image-stack {
    position: relative;
    height: 450px;
}

.image-primary {
    position: absolute;
    top: 0;
    right: 20px;
    width: 80%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.image-primary img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.image-secondary img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    top: 20px;
    right: -15px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 14px;
}

/* Founder Section */
.founder-section {
    background-color: #f9f9fb;
    padding: 40px 40px;
    border-radius: 20px;
}

.founder-section .accent-line {
    margin: 0 auto 30px;
}

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

.founder-image {
    flex: 0 0 120px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transition: all 0.3s ease;
}

.founder-overlay h3 {
    margin: 0;
    font-size: 24px;
}

.founder-overlay p {
    margin: 5px 0 0;
    opacity: 0.8;
}

.founder-bio {
    flex: 1 1 500px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Why Us Section */
/* 
.why-us-section .accent-line {
    margin: 0 auto 50px;
}

.why-us-section {
    width: 100%;
    background: #f9f9f9;
    padding: 60px 20px;
    box-sizing: border-box;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 1200px) {
    .why-us-container {
        margin: 0px -140px 0px -140px;
    }
}

@media (min-width: 1600px) {
    .why-us-container {
        margin: 0px -140px 0px -140px;
    }
}

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

.accent-line {
    width: 80px;
    height: 4px;
    background-color: #ff8800;
    margin: 0 auto 40px;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 10px;
}

.benefit-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #ff8800;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #555;
} */

.gagan-advantages-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.primary-heading {
    color: #111;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.descriptive-text {
    /* color: rgba(255, 255, 255, 0.9); */
    font-size: 16px;
    font-weight: 300;
    /* margin-bottom: 60px; */
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    text-align: left;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-symbol {
    width: 60px;
    height: 60px;
    background: #FA4A4A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(250, 74, 74, 0.3);
    transition: all 0.3s ease;
}

.advantage-item:hover .feature-symbol {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(250, 74, 74, 0.4);
}

.feature-symbol i {
    font-size: 2rem;
    /* color: white; */
}

.text-block {
    flex: 1;
}

.feature-heading {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    color: #5a6c7d;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
}

/* Fifth item spans full width */
.advantage-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .advantage-item:nth-child(5) {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .primary-heading {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .descriptive-text {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .advantage-item {
        padding: 25px;
        gap: 20px;
    }

    .feature-symbol {
        width: 40px;
        height: 40px;
    }

    .feature-symbol i {
        font-size: 1.8rem;
    }

    .feature-heading {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {


    .primary-heading {
        font-size: 1.8rem;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .feature-symbol {
        margin: 0 auto;
    }

    .text-block {
        text-align: center;
    }
}

/* Animation for items on scroll */
.advantage-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.6s ease forwards;
}

.advantage-item:nth-child(1) {
    animation-delay: 0.1s;
}

.advantage-item:nth-child(2) {
    animation-delay: 0.2s;
}

.advantage-item:nth-child(3) {
    animation-delay: 0.3s;
}

.advantage-item:nth-child(4) {
    animation-delay: 0.4s;
}

.advantage-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section .accent-line {
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ff6b57;
}

.service-icon {
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e1e2f;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-btn {
    background: transparent;
    color: #ff6b57;
    border: 2px solid #ff6b57;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #ff6b57;
    color: white;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #1e1e2f, #343456);
    padding: 80px 40px;
    border-radius: 20px;
    color: white;
}

.mission-section .section-title {
    color: white;
}

.mission-section .accent-line {
    margin: 0 auto 40px;
    background: #ff6b57;
}

.mission-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon {
    margin-bottom: 30px;
}

.mission-text {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    background: url('/api/placeholder/1200/400') center/cover no-repeat;
    position: relative;
    padding: 100px 40px;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 47, 0.8);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn {
    background: #ff6b57;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 87, 0.3);
}

.cta-btn:hover {
    background: #e05a49;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 87, 0.4);
}

/* Gallery Section */
.gallery-section {
    overflow: hidden;
}

.gallery-section .accent-line {
    margin: 0 auto 50px;
}

.gallery-slider {
    margin: 60px -20px;
    position: relative;
}

.slider-track {
    display: flex;
    animation: scroll 25s linear infinite;
    gap: 30px;
}

.slider-item {
    flex: 0 0 350px;
    height: 250px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-item:hover img {
    transform: scale(1.1);
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
}

.slider-item:hover .slider-overlay {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 5 - 30px * 5));
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .modern-title,
    .section-title {
        font-size: 30px;
    }

    .company-content,
    .founder-details {
        gap: 30px;
    }

    .image-stack {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .cta-title {
        font-size: 32px;
    }

    .mission-text {
        font-size: 20px;
    }

    section {
        margin: 70px 0;
    }
}



/*  */


.redesigned-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding: 0 20px;
}

.modern-title {
    font-size: 40px;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e1e2f;
    text-align: center;
    margin-bottom: 15px;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: #ff6b57;
    margin-bottom: 30px;
}


.company-section .accent-line {
    margin-left: 0;
}

/* Company Section */
.company-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.company-text {
    flex: 1 1 500px;
}

.company-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.modern-btn {
    background: #ff6b57;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 87, 0.3);
}

.modern-btn:hover {
    background: #e05a49;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 87, 0.4);
}

.company-image {
    flex: 1 1 300px;
    position: relative;
}

.image-stack {
    position: relative;
    height: 450px;
}

.image-primary {
    position: absolute;
    top: 0;
    right: 20px;
    width: 80%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.image-primary img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.image-secondary img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    top: 20px;
    right: -15px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 14px;
}


/* Why Us Section */
.why-us-section .accent-line {
    margin: 0 auto 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e1e2f;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-section .accent-line {
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ff6b57;
}

.service-icon {
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e1e2f;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-btn {
    background: transparent;
    color: #ff6b57;
    border: 2px solid #ff6b57;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #ff6b57;
    color: white;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #1e1e2f, #343456);
    padding: 80px 40px;
    border-radius: 20px;
    color: white;
}

.mission-section .section-title {
    color: white;
}

.mission-section .accent-line {
    margin: 0 auto 40px;
    background: #ff6b57;
}

.mission-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon {
    margin-bottom: 30px;
}

.mission-text {
    color: #fff;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    background: url('/api/placeholder/1200/400') center/cover no-repeat;
    position: relative;
    padding: 100px 40px;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 47, 0.8);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #FFF;
}

.cta-btn {
    background: #ff6b57;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 87, 0.3);
}

.cta-btn:hover {
    background: #e05a49;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 87, 0.4);
}

/* Gallery Section */
.gallery-section {
    overflow: hidden;
}

.gallery-section .accent-line {
    margin: 0 auto 50px;
}

.gallery-slider {
    margin: 60px -20px;
    position: relative;
}

.slider-track {
    display: flex;
    animation: scroll 25s linear infinite;
    gap: 30px;
}

.slider-item {
    flex: 0 0 350px;
    height: 250px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-item:hover img {
    transform: scale(1.1);
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
}

.slider-item:hover .slider-overlay {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 5 - 30px * 5));
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .modern-title,
    .section-title {
        font-size: 30px;
    }

    .company-content,
    .founder-details {
        gap: 30px;
    }

    .image-stack {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .cta-title {
        font-size: 32px;
    }

    .mission-text {
        font-size: 20px;
    }

    section {
        margin: 70px 0;
    }
}

.benefit-icon {
    color: #e05a49;
}

/*  */