/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--iyeg-primary);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

:root {
    /* Colors */
    --iyeg-primary: #0A2540;
    --iyeg-primary-light: #1a3a55;
    --iyeg-primary-dark: #051c2f;
    --iyeg-text-body: #425466;
    --iyeg-text-white: #FFFFFF;
    --iyeg-accent: #2563EB;
    --iyeg-accent-hover: #1d4ed8;
    --iyeg-btn-primary: #132c6d;
    --iyeg-btn-hover: #1a3f8f;
    --iyeg-yellow: #F6BE1E;
    /*--iyeg-bg-hero: #D9D9D9;*/
    --iyeg-bg-hero: #F9FAFF;
    --iyeg-bg-light: #F9FAFF;
    --iyeg-border-light: #E2E8F0;
    
    /* Spacing */
    --iyeg-space-3: 1.5rem;
    --iyeg-space-4: 2rem;
    --iyeg-space-5: 2.5rem;
    --iyeg-space-8: 4rem;
    --iyeg-space-10: 5rem;
    
    /* Border Radius */
    --iyeg-radius-md: 12px;
    --iyeg-radius-lg: 16px;
    --iyeg-radius-xl: 24px;
    
    /* Header Height */
    --iyeg-header-total-height: 6.5rem;
    
    /* Transitions */
    --iyeg-transition-fast: 0.3s ease;
    --iyeg-transition-slow: 0.8s ease;
}

/* ===== CONTAINER ===== */
.iyeg-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
.iyeg-hero__title {
    /*font-size: 3rem;*/
    /*font-size: 3.5rem;*/
    font-size: 3.3rem;
    /*font-weight: 700;*/
    font-weight: 800;
    line-height: 1.1;
    /*color: var(--iyeg-primary);*/
    color: var(--iyeg-btn-primary);
    /*color: white;*/
    margin-bottom: var(--iyeg-space-3);
}

.iyeg-hero__description {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--iyeg-text-body);
    /*color: white;*/
    margin-bottom: var(--iyeg-space-4);
}

.iyeg-section__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--iyeg-btn-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.iyeg-section__subtitle {
    font-size: 1.125rem;
    color: var(--iyeg-text-body);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.iyeg-section__divider {
    width: 60px;
    height: 4px;
    /*background: var(--iyeg-yellow);*/
    background: var(--iyeg-accent);
    margin: 0.5rem auto 1.5rem;
    border-radius: 4px;
}

/* ===== BUTTONS ===== */
.iyeg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--iyeg-transition-fast);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1;
}

.iyeg-btn--primary {
    background-color: var(--iyeg-btn-primary);
    color: var(--iyeg-text-white);
    min-height: 44px;
}

.iyeg-btn--primary:hover {
    background-color: var(--iyeg-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ===== PRELOADER ===== */
.iyeg-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--iyeg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.iyeg-preloader--hidden {
    opacity: 0;
    visibility: hidden;
}

.iyeg-preloader__spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--iyeg-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== BACK TO TOP BUTTON ===== */
.iyeg-back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--iyeg-accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--iyeg-transition-fast);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.iyeg-back-to-top--visible {
    opacity: 1;
    visibility: visible;
}

.iyeg-back-to-top:hover {
    background-color: var(--iyeg-accent-hover);
    transform: translateY(-3px);
}

/* ===== WHATSAPP BUTTON ===== */
.iyeg-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    transition: all var(--iyeg-transition-fast);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.iyeg-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* ===== HERO SECTION ===== */
.iyeg-hero {
    margin-top: var(--iyeg-header-total-height);
    background-color: var(--iyeg-bg-hero);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
    width: 100%;
    height: calc(100vh - var(--iyeg-header-total-height));
    min-height: 500px;
}

/* Simple background image overlay */
.iyeg-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-image: url('/assets/images/sections/hero-section/hero-bg-pattern.png');*/
    background-image: url('/assets/images/sections/hero-section/hero-bg-pattern.jpg');
    background-size: cover;
    /*background-size: contain;*/
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}



.iyeg-hero__wrapper {
    position: relative;
    padding: 0; /* Remove padding since we're using full height */
    /*z-index: 2;*/
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.iyeg-hero__container {
    height: 100%;
    display: flex;
    align-items: center;
}

.iyeg-hero__grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: var(--iyeg-space-5);
    align-items: center;
    position: relative;
    /*z-index: 3;*/
    z-index: 4;
}

.iyeg-hero__left {
    position: relative;
    z-index: 4;
    background-color: transparent;
}

.iyeg-hero__right {
    position: relative;
    z-index: 4;
    background-color: transparent;
}

.iyeg-hero__image-wrapper {
    width: 100%;
    max-width: 654px;
    height: 469px;
    position: relative;
    overflow: hidden;
    border-radius: var(--iyeg-radius-md);
    background-color: transparent;
}

.iyeg-hero__slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.iyeg-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.iyeg-hero__slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

.iyeg-hero__slide.zoom-out {
    /*transform: scale(1.2);*/
    transform: scale(1.05);
    opacity: 0;
    z-index: 2;
}

.iyeg-hero__slide.zoom-in {
    /*transform: scale(0.8);*/
    transform: scale(0.95);
    opacity: 0;
    z-index: 1;
}

.iyeg-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    /*background-color: var(--iyeg-bg-hero);*/
    background-color: transparent;
}

/* ===== AFFORDABLE WEBSITE DESIGN SECTION ===== */
.iyeg-affordable {
    padding: 5rem 0;
    background-color: white;
    width: 100%;
}

.iyeg-affordable__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.iyeg-affordable__image {
    overflow: hidden;
}

.iyeg-affordable__image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
    object-fit: contain;
    transition: transform var(--iyeg-transition-fast);
    transform: scale(1.05);
}

/*.iyeg-affordable__image:hover img {*/
/*    transform: scale(1.02);*/
/*}*/


.iyeg-affordable__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--iyeg-btn-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.iyeg-affordable__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--iyeg-text-body);
    margin-bottom: 1.25rem;
}

.iyeg-affordable__description:last-of-type {
    margin-bottom: 2rem;
}

/*.iyeg-affordable__btn {*/
/*    margin-top: 0.5rem;*/
/*}*/

.iyeg-services-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
    /*text-align: center;*/
    
    font-size: 1.125rem;
    line-height: 1.6;
}

.iyeg-services-list li {
    color: var(--iyeg-text-body);
    margin-bottom: 0.75rem;
}

.iyeg-services-list li strong {
    color: var(--iyeg-btn-primary); /* matches heading tone */
    font-weight: 600;
}



/* ===== SERVICES SECTION ===== */
.iyeg-services {
    font-family: 'Inter', sans-serif;
    background-color: var(--iyeg-bg-light);
    padding: 5rem 0;
    width: 100%;
}

.iyeg-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.iyeg-service-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.iyeg-service-card__icon {
    width: 45px;
    height: 45px;
}

.iyeg-service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.iyeg-service-card__content {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.iyeg-service-card__bar {
    /*width: 5px;*/
    width: 2px;
    background-color: var(--iyeg-yellow);
    border-radius: 3px;
    flex-shrink: 0;
    align-self: stretch;
}

.iyeg-service-card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.iyeg-service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--iyeg-primary);
    margin: 0;
    line-height: 1.4;
}

.iyeg-service-card__desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--iyeg-text-body);
    margin: 0;
}

/* ===== WHO WE BUILD SECTION ===== */
.iyeg-who-we-build {
    padding: 5rem 0;
    background-color: white;
    width: 100%;
}

.iyeg-who-we-build__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.iyeg-who-card {
    background: white;
    border-radius: var(--iyeg-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--iyeg-transition-fast), box-shadow var(--iyeg-transition-fast);
}

.iyeg-who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.iyeg-who-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.iyeg-who-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--iyeg-transition-fast);
}

.iyeg-who-card:hover .iyeg-who-card__image img {
    transform: scale(1.05);
}

.iyeg-who-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.2));
    opacity: 0;
    transition: opacity var(--iyeg-transition-fast);
}

.iyeg-who-card:hover .iyeg-who-card__overlay {
    opacity: 1;
}

.iyeg-who-card__content {
    padding: 1.5rem;
}

.iyeg-who-card__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--iyeg-primary);
    margin-bottom: 0.75rem;
}

.iyeg-who-card__content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--iyeg-text-body);
}

/* ===== WHY US SECTION ===== */
/*.iyeg-why-us {*/
/*    padding: 5rem 0;*/
/*    background-color: var(--iyeg-bg-light);*/
/*    width: 100%;*/
/*}*/

/*.iyeg-why-us__grid {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 4rem;*/
/*    align-items: center;*/
/*}*/

/*.iyeg-why-us__image img {*/
/*    width: 100%;*/
/*    border-radius: var(--iyeg-radius-xl);*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.iyeg-why-us__text h2 {*/
/*    font-size: 2.25rem;*/
/*    font-weight: 700;*/
/*    color: var(--iyeg-primary);*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.iyeg-why-us__text > p {*/
/*    font-size: 1.125rem;*/
/*    color: var(--iyeg-text-body);*/
/*    margin-bottom: 2rem;*/
/*    line-height: 1.6;*/
/*}*/

/*.iyeg-why-us__feature {*/
/*    display: flex;*/
/*    gap: 1.25rem;*/
/*    margin-bottom: 1.75rem;*/
/*}*/

/*.iyeg-why-us__feature-icon {*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    border-radius: 50%;*/
/*    background-color: rgba(37, 99, 235, 0.1);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: var(--iyeg-accent);*/
/*    font-size: 1.25rem;*/
/*    flex-shrink: 0;*/
/*}*/

/*.iyeg-why-us__feature-content h4 {*/
/*    font-size: 1.125rem;*/
/*    font-weight: 700;*/
/*    color: var(--iyeg-primary);*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.iyeg-why-us__feature-content p {*/
/*    font-size: 0.95rem;*/
/*    color: var(--iyeg-text-body);*/
/*    line-height: 1.5;*/
/*}*/


/* ===== WHY US SECTION ===== */
.iyeg-why-us {
    padding: 5rem 0;
    background-color: var(--iyeg-bg-light);
    width: 100%;
}

.iyeg-why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.iyeg-why-us__image img {
    width: 100%;
    border-radius: var(--iyeg-radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.iyeg-why-us__text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--iyeg-btn-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.iyeg-why-us__text > p {
    font-size: 1.125rem;
    color: var(--iyeg-text-body);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.iyeg-why-us__feature {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

/* Updated icon styles for PNG images */
.iyeg-why-us__feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*background-color: rgba(37, 99, 235, 0.1);*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--iyeg-transition-fast);
    border: 2px solid var(--iyeg-accent);
}

.iyeg-why-us__feature-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    transition: transform var(--iyeg-transition-fast);
}

.iyeg-why-us__feature:hover .iyeg-why-us__feature-icon {
    /*background-color: rgba(37, 99, 235, 0.2);*/
    transform: scale(1.05);
}

.iyeg-why-us__feature:hover .iyeg-why-us__feature-icon-img {
    transform: scale(1.1);
}

.iyeg-why-us__feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--iyeg-primary);
    margin-bottom: 0.5rem;
}

.iyeg-why-us__feature-content p {
    font-size: 1rem;
    color: var(--iyeg-text-body);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .iyeg-why-us__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iyeg-why-us__image {
        order: 2;
    }
    
    .iyeg-why-us__text {
        order: 1;
        text-align: center;
    }
    
    .iyeg-why-us__feature {
        text-align: left;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .iyeg-affordable__image img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: contain;
}

    .iyeg-why-us {
        padding: 3rem 0;
    }
    
    .iyeg-why-us__text h2 {
        font-size: 1.75rem;
    }
    
    .iyeg-why-us__text > p {
        font-size: 1rem;
    }
    
    .iyeg-why-us__feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .iyeg-why-us__feature-icon-img {
        width: 24px;
        height: 24px;
    }
    
    .iyeg-why-us__feature-content h4 {
        font-size: 1rem;
    }
    
    .iyeg-why-us__feature-content p {
        font-size: 0.875rem;
    }
    
    .iyeg-map-section {
        height: 25rem;
    }
    
    
    .iyeg-services-list li strong {
        display: block;
        margin-bottom: 4px;
        font-size: 1rem;
    }

    .iyeg-services-list li {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .iyeg-why-us__feature {
        gap: 1rem;
    }
    
    .iyeg-why-us__feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .iyeg-why-us__feature-icon-img {
        width: 22px;
        height: 22px;
    }
    
    .iyeg-map-section {
        height: 20rem;
    }
}

@media (max-width: 360px) {
    .iyeg-map-section {
        height: 18rem;
    }
}


/* ===== PROCESS SECTION ===== */
/*.iyeg-process {*/
/*    padding: 5rem 0;*/
/*    background-color: white;*/
/*    width: 100%;*/
/*}*/

/*.iyeg-process__container {*/
/*    position: relative;*/
/*    margin: 3rem 0;*/
/*}*/

/*.iyeg-process__line {*/
/*    position: absolute;*/
/*    top: 60px;*/
/*    left: 50%;*/
/*    width: 66%;*/
/*    height: 2px;*/
/*    background-color: var(--iyeg-border-light);*/
/*    transform: translateX(-50%);*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    z-index: 1;*/
/*}*/

/*.iyeg-process__line-segment {*/
/*    flex: 1;*/
/*    height: 100%;*/
/*    background-color: var(--iyeg-border-light);*/
/*    transition: background-color var(--iyeg-transition-fast);*/
/*}*/

/*.iyeg-process__line-segment.active {*/
/*    background-color: var(--iyeg-accent);*/
/*}*/

/*.iyeg-process__steps {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3, 1fr);*/
/*    gap: 2.5rem;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*.iyeg-process__step {*/
/*    text-align: center;*/
/*    padding: 1.25rem;*/
/*    position: relative;*/
/*}*/

/*.iyeg-process__step-icon {*/
/*    width: 90px;*/
/*    height: 90px;*/
/*    border-radius: 50%;*/
/*    background-color: #ffffff;*/
/*    border: 4px solid rgba(37, 99, 235, 0.1);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin: 0 auto 1.5rem;*/
/*    color: var(--iyeg-accent);*/
/*    font-size: 2rem;*/
/*    transition: all var(--iyeg-transition-fast);*/
/*    position: relative;*/
/*    z-index: 3;*/
/*}*/

/*.iyeg-process__step:nth-child(2) .iyeg-process__step-icon {*/
/*    border-color: rgba(37, 99, 235, 0.1);*/
/*    color: var(--iyeg-accent);*/
/*}*/

/*.iyeg-process__step:hover .iyeg-process__step-icon {*/
/*    border-color: var(--iyeg-accent);*/
/*    transform: scale(1.1);*/
/*    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);*/
/*}*/

/*.iyeg-process__step h3 {*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*    color: var(--iyeg-primary);*/
/*    margin-bottom: 0.75rem;*/
/*}*/

/*.iyeg-process__step p {*/
/*    color: var(--iyeg-text-body);*/
/*    font-size: 0.95rem;*/
/*    line-height: 1.6;*/
/*}*/


/* ===== PROCESS SECTION ===== */
.iyeg-process {
    padding: 5rem 0;
    background-color: white;
    width: 100%;
}

.iyeg-process__container {
    position: relative;
    margin: 3rem 0;
}

.iyeg-process__line {
    position: absolute;
    top: 60px;
    top: 48px;
    left: 50%;
    width: 66%;
    height: 2px;
    background-color: var(--iyeg-border-light);
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}


/*.iyeg-process__line-segment {*/
/*    flex: 1;*/
/*    height: 100%;*/
/*    background-color: var(--iyeg-border-light);*/
/*    transition: background-color var(--iyeg-transition-fast);*/
/*}*/

/*.iyeg-process__line-segment {*/
/*    flex: 1;*/
/*    height: 100%;*/
/*    background-color: var(--iyeg-border-light);*/
/*    transition: background-color var(--iyeg-transition-fast), width 0.5s ease-in-out;*/
/*    width: 0%;*/
/*}*/




/*.iyeg-process__line-segment.active {*/
/*    background-color: var(--iyeg-accent);*/
/*}*/

.iyeg-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.iyeg-process__step {
    text-align: center;
    padding: 1.25rem;
    position: relative;
}

/* Updated icon styles for PNG images */
.iyeg-process__step-icon {
    /*width: 80px;*/
    width: 60px;
    /*height: 80px;*/
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--iyeg-transition-fast);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.iyeg-process__step-icon-img {
    /*width: 45px;*/
    width: 32px;
    /*height: 45px;*/
    height: 32px;
    object-fit: contain;
    display: block;
    transition: transform var(--iyeg-transition-fast);
}

.iyeg-process__step:hover .iyeg-process__step-icon {
    border-color: var(--iyeg-accent);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.iyeg-process__step:hover .iyeg-process__step-icon-img {
    transform: scale(1.05);
}

.iyeg-process__step:nth-child(2) .iyeg-process__step-icon {
    border-color: rgba(37, 99, 235, 0.1);
}

.iyeg-process__step:nth-child(2):hover .iyeg-process__step-icon {
    border-color: var(--iyeg-accent);
}

.iyeg-process__step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--iyeg-primary);
    margin-bottom: 0.75rem;
}

.iyeg-process__step p {
    color: var(--iyeg-text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process CTA */
.iyeg-process__cta {
    background: linear-gradient(135deg, var(--iyeg-primary) 0%, var(--iyeg-primary-dark) 100%);
    border-radius: var(--iyeg-radius-xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.iyeg-process__cta-bg-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    filter: blur(40px);
    transform: translate(50%, -50%);
}

.iyeg-process__cta-content {
    position: relative;
    z-index: 2;
}

.iyeg-process__cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.iyeg-process__cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.iyeg-process__cta-content .iyeg-btn--primary {
    background-color: #ffffff;
    color: var(--iyeg-primary);
}

.iyeg-process__cta-content .iyeg-btn--primary:hover {
    background-color: var(--iyeg-yellow);
    color: var(--iyeg-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .iyeg-process__steps {
        gap: 1.5rem;
    }
    
    .iyeg-process__step h3 {
        font-size: 1.25rem;
    }
    
    .iyeg-process__step-icon {
        width: 70px;
        height: 70px;
    }
    
    .iyeg-process__step-icon-img {
        width: 40px;
        height: 40px;
    }
    
    .iyeg-process__cta {
        padding: 3rem 2rem;
    }
    
    .iyeg-process__cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .iyeg-process {
        padding: 3rem 0;
    }
    
    .iyeg-process__line {
        display: none;
    }
    
    .iyeg-process__steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iyeg-process__step {
        padding: 1rem;
    }
    
    .iyeg-process__step-icon {
        width: 70px;
        height: 70px;
    }
    
    .iyeg-process__step-icon-img {
        width: 40px;
        height: 40px;
    }
    
    .iyeg-process__step h3 {
        font-size: 1.125rem;
    }
    
    .iyeg-process__cta {
        padding: 2rem 1.5rem;
    }
    
    .iyeg-process__cta-content h2 {
        font-size: 1.5rem;
    }
    
    .iyeg-process__cta-content p {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .iyeg-process__steps {
        gap: 1.5rem;
    }
    
    .iyeg-process__step h3 {
        font-size: 1.25rem;
    }
    
    .iyeg-process__cta {
        padding: 3rem 2rem;
    }
    
    .iyeg-process__cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .iyeg-process {
        padding: 3rem 0;
    }
    
    .iyeg-process__line {
        display: none;
    }
    
    .iyeg-process__steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iyeg-process__step {
        padding: 1rem;
    }
    
    .iyeg-process__step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .iyeg-process__step h3 {
        font-size: 1.125rem;
    }
    
    .iyeg-process__cta {
        padding: 2rem 1.5rem;
    }
    
    .iyeg-process__cta-content h2 {
        font-size: 1.5rem;
    }
    
    .iyeg-process__cta-content p {
        font-size: 1rem;
    }
}



/* Process section active states */
.iyeg-process__step.active .iyeg-process__step-icon {
    border-color: var(--iyeg-accent);
    background-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.iyeg-process__step.active .iyeg-process__step-icon-img {
    transform: scale(1.05);
}

/*.iyeg-process__line-segment {*/
/*    transition: background-color 0.3s ease, width 0.5s ease-in-out;*/
/*    width: 0%;*/
/*}*/

/*.iyeg-process__line-segment.active {*/
/*    background-color: var(--iyeg-accent);*/
/*    width: 100%;*/
/*}*/

.iyeg-process__line-segment {
    flex: 1;
    height: 100%;
    background-color: var(--iyeg-border-light);
    position: relative;
    overflow: hidden;
}

.iyeg-process__line-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--iyeg-accent);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.iyeg-process__line-segment.active::before {
    width: 100%;
}

/* Optional pulse animation */
.iyeg-process__step.active .iyeg-process__step-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}


/* ===== MARQUEE SECTION ===== */
.iyeg-marquee {
    background-color: var(--iyeg-bg-light);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}


.iyeg-marquee__track {
    display: flex;
    gap: 0.3rem;
    /*width: fit-content;*/
    width: max-content;
    animation: marquee 25s linear infinite;
}

.iyeg-marquee__track:hover {
    animation-play-state: paused;
}

.iyeg-marquee__logo {
    width: 140px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform var(--iyeg-transition-fast), filter var(--iyeg-transition-fast);
}

.iyeg-marquee__logo:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ===== CTA SECTION ===== */
.iyeg-cta-section {
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.iyeg-cta-section--bg-image {
    background-image: url('/assets/images/sections/section_6/iyeg-home-cta-bg.png');
    position: relative;
}

.iyeg-cta-section--bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.1);
}

.iyeg-cta-section__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.iyeg-cta-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.iyeg-cta-section__desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.iyeg-btn--secondary {
    background-color: white;
    color: var(--iyeg-accent);
}

.iyeg-btn--secondary:hover {
    background-color: var(--iyeg-btn-hover);
    color: white;
    transform: translateY(-2px);
}

/* ===== 3D TESTIMONIALS ===== */
.iyeg-testimonials-3d {
    padding: 5rem 0;
    background: linear-gradient(145deg, #f8faff 0%, #f0f3fc 100%);
    width: 100%;
    overflow: hidden;
}

.iyeg-testimonials-3d__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.iyeg-testimonials-3d__header {
    text-align: center;
    margin-bottom: 2rem;
}

/*.iyeg-testimonials-3d__title {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    color: var(--iyeg-primary);*/
/*    letter-spacing: -0.02em;*/
/*}*/

.iyeg-testimonials-3d__divider {
    width: 60px;
    height: 4px;
    background: var(--iyeg-yellow);
    margin: 0.5rem auto;
    border-radius: 4px;
}

.iyeg-testimonials-3d__stage {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    overflow: visible;
    touch-action: pan-y;
}

.iyeg-testimonials-3d__track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.iyeg-testimonials-3d__card {
    position: absolute;
    width: 580px;
    height: 350px;
    left: 50%;
    top: 50%;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
    cursor: pointer;
    z-index: 1;
    pointer-events: none;
}

.iyeg-testimonials-3d__card-inner {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid var(--iyeg-border-light);
    overflow: hidden;
    pointer-events: auto;
}

.iyeg-testimonials-3d__card.active {
    z-index: 100;
}

.iyeg-testimonials-3d__card-content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.iyeg-testimonials-3d__quote-icon {
    /*color: var(--iyeg-accent);*/
    color: var(--iyeg-btn-primary);
    font-size: 1.6rem;
    /*opacity: 0.15;*/
    opacity: 1;
    margin-bottom: 0.2rem;
    flex-shrink: 0;
}

.iyeg-testimonials-3d__body-wrapper {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
    margin: 0.5rem 0;
}

.iyeg-testimonials-3d__scroll-area {
    overflow-y: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    height: 100%;
}

.iyeg-testimonials-3d__scroll-area::-webkit-scrollbar {
    display: none;
}

.iyeg-testimonials-3d__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    padding-right: 10px;
}

.iyeg-testimonials-3d__author {
    border-top: 1px solid #f1f5f9;
    padding-top: 1.2rem;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iyeg-testimonials-3d__author strong {
    font-weight: 700;
    color: #0F172A;
    font-size: 1.05rem;
}

.iyeg-testimonials-3d__author span {
    font-size: 0.85rem;
    color: #64748b;
}

.iyeg-testimonials-3d__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--iyeg-border-light);
    transition: var(--iyeg-transition-fast);
}

.iyeg-testimonials-3d__nav:hover {
    background: var(--iyeg-accent);
    color: white;
    border-color: var(--iyeg-accent);
}

.iyeg-testimonials-3d__nav--prev {
    left: 1%;
}

.iyeg-testimonials-3d__nav--next {
    right: 1%;
}

.iyeg-testimonials-3d__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.iyeg-testimonials-3d__dot {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: 0.4s;
}

.iyeg-testimonials-3d__dot.active {
    width: 28px;
    background: var(--iyeg-accent);
}

/* ===== CONTACT SECTION ===== */
.iyeg-contact {
    padding: 5rem 0;
    background-color: var(--iyeg-bg-light);
    width: 100%;
}

.iyeg-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.iyeg-contact__info h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--iyeg-btn-primary);
    margin-bottom: 1rem;
}

.iyeg-contact__info > p {
    font-size: 1.125rem;
    color: var(--iyeg-text-body);
    margin-bottom: 2rem;
}

.iyeg-contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.iyeg-contact__detail {
    background: white;
    border-radius: var(--iyeg-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--iyeg-border-light);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.iyeg-contact__detail-icon {
    background: rgba(37, 99, 235, 0.1);
    color: var(--iyeg-btn-primary);
    width: 50px;
    height: 50px;
    border-radius: var(--iyeg-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.iyeg-contact__detail-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--iyeg-primary);
    margin-bottom: 0.25rem;
}

.iyeg-contact__detail-content p {
    font-size: 1rem;
    color: var(--iyeg-text-body);
    margin-bottom: 0.25rem;
}

.iyeg-contact__detail-content small {
    font-size: 0.875rem;
    color: #94a3b8;
}

.iyeg-contact__form-wrapper {
    background: white;
    border-radius: var(--iyeg-radius-xl);
    padding: 2.5rem;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--iyeg-border-light);
}

.iyeg-contact__form-wrapper h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--iyeg-primary);
    margin-bottom: 1.5rem;
}

.iyeg-form-group {
    margin-bottom: 1.5rem;
}

.iyeg-form-label {
    display: block;
    font-weight: 500;
    color: var(--iyeg-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.iyeg-form-input,
.iyeg-form-select,
.iyeg-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--iyeg-border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all var(--iyeg-transition-fast);
    background-color: white;
}

.iyeg-form-input:focus,
.iyeg-form-select:focus,
.iyeg-form-textarea:focus {
    outline: none;
    border-color: var(--iyeg-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}


/* Custom dropdown icon for select - extra CSS only */
.iyeg-form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23425466' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.iyeg-form-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Remove default arrow for Firefox */
.iyeg-form-select::-moz-focus-inner {
    border: 0;
}

/* Remove default arrow for IE/Edge */
.iyeg-form-select::-ms-expand {
    display: none;
}



.iyeg-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.iyeg-contact__submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    gap: 0.5rem;
}



/* ===== MAP SECTION ===== */
.iyeg-map-section {
    width: 100%;
    height: 28.125rem; /* 450px */
    background-color: var(--iyeg-primary);
    line-height: 0;
    border-top: 1px solid var(--iyeg-border-light);
    border-bottom: 1px solid var(--iyeg-border-light);
}

.iyeg-map-container {
    width: 100%;
    height: 100%;
    border: 0;
}

.iyeg-map-section:hover .iyeg-map-container {
    opacity: 0.95;
    transition: opacity var(--iyeg-transition-fast);
}



/*new css*/
/* ===== FORM ADDITIONAL STYLES (Add to your existing CSS) ===== */

/* ===== FORM HIDDEN ELEMENTS - ADD THESE TO YOUR EXISTING CSS ===== */

/* 1. HONEYPOT - Completely hidden from everyone (users + screen readers) */
.iyeg-form__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

/* 2. SCREEN READER ONLY - Visually hidden but screen readers can see */
.iyeg-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    
    /* Extra insurance */
    clip-path: inset(50%);
}

/* 3. HELP TEXT - Uses screen reader only styles */
.iyeg-form__help {
    /* Inherits from .iyeg-sr-only */
}

/* 4. ERROR MESSAGES - Hidden by default, shown by JavaScript */
.iyeg-form__error {
    display: block;
    color: #e94560;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* This is CRITICAL - hides errors until JS shows them */
.iyeg-form__error[hidden] {
    display: none !important;
}

/* 5. STATUS MESSAGES - Hidden by default */
.iyeg-form__status {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* This is CRITICAL - hides status messages until JS shows them */
.iyeg-form__status[hidden] {
    display: none !important;
}

.iyeg-form__status--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.iyeg-form__status--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 6. Required asterisk styling */
.iyeg-form__required {
    color: #e94560;
    margin-left: 0.25rem;
}

/* 7. Input error styling (when JS adds error class) */
.iyeg-form-input.error,
.iyeg-form-select.error,
.iyeg-form-textarea.error {
    border-color: #e94560 !important;
}

/* 8. Disabled button state */
.iyeg-btn--primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}



/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .iyeg-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iyeg-hero__image-wrapper {
        margin: 0 auto;
        height: 400px;
        max-width: 100%;
    }
    
    .iyeg-hero__title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .iyeg-hero__description {
        text-align: center;
    }
    
    /*.iyeg-hero__cta {*/
    /*    display: table;*/
    /*    margin-left: auto;*/
    /*    margin-right: auto;*/
    /*}*/
    
    .iyeg-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .iyeg-who-we-build__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .iyeg-why-us__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iyeg-why-us__image {
        order: 2;
    }
    
    .iyeg-why-us__text {
        order: 1;
        text-align: center;
    }
    
    .iyeg-why-us__feature {
        text-align: left;
    }
    
    .iyeg-contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iyeg-affordable__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .iyeg-affordable__image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .iyeg-affordable__title {
        font-size: 1.875rem;
        text-align: center;
    }
    
    /*.iyeg-affordable__description {*/
    /*    text-align: center;*/
    /*}*/
    
    /*.iyeg-affordable__btn {*/
    /*    display: table;*/
    /*    margin-left: auto;*/
    /*    margin-right: auto;*/
    /*}*/
    
    .iyeg-testimonials-3d__card {
        width: 88vw;
        height: 320px;
    }
    
    .iyeg-testimonials-3d__stage {
        height: 420px;
    }
    
    .iyeg-testimonials-3d__nav {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --iyeg-header-total-height: 5rem;
    }
    
    .iyeg-hero__wrapper {
        padding: 3rem 0;
    }
    
    .iyeg-hero__image-wrapper {
        height: 300px;
    }
    
    .iyeg-hero__title {
        font-size: 2rem;
    }
    
    .iyeg-section__title,
    .iyeg-testimonials-3d__title,
    .iyeg-cta-section__title,
    .iyeg-affordable__title {
        font-size: 1.75rem;
    }
    
    .iyeg-services__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .iyeg-who-we-build__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .iyeg-services,
    .iyeg-who-we-build,
    .iyeg-why-us,
    .iyeg-contact,
    .iyeg-affordable,
    .iyeg-testimonials-3d,
    .iyeg-cta-section {
        padding: 3rem 0;
    }
    
    .iyeg-testimonials-3d__card-content {
        padding: 1.5rem;
    }
    
    .iyeg-testimonials-3d__text {
        font-size: 1rem;
    }
    
    .iyeg-contact__form-wrapper {
        padding: 1.5rem;
    }
    
    .iyeg-contact__detail {
        padding: 1rem;
    }
    
    .iyeg-marquee__logo {
        width: 100px;
        height: 50px;
        margin: 0 1rem;
    }
    
    .iyeg-back-to-top {
        bottom: 70px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .iyeg-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .iyeg-testimonials-3d__card {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .iyeg-container {
        padding: 0 1.25rem;
    }
    
    .iyeg-hero__image-wrapper {
        height: 250px;
    }
    
    .iyeg-hero__title {
        font-size: 1.75rem;
    }
    
    .iyeg-hero__description {
        font-size: 1rem;
    }
    
    .iyeg-section__title,
    .iyeg-testimonials-3d__title,
    .iyeg-cta-section__title,
    .iyeg-affordable__title {
        font-size: 1.5rem;
    }
    
    .iyeg-section__subtitle,
    .iyeg-affordable__description {
        font-size: 1rem;
    }
    
    .iyeg-service-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .iyeg-service-card__title {
        font-size: 1.125rem;
    }
    
    .iyeg-service-card__desc {
        font-size: 0.875rem;
    }
    
    .iyeg-who-card__image {
        height: 180px;
    }
    
    .iyeg-who-card__content {
        padding: 1rem;
    }
    
    .iyeg-who-card__content h3 {
        font-size: 1.125rem;
    }
    
    .iyeg-who-card__content p {
        font-size: 0.875rem;
    }
    
    .iyeg-why-us__text h2 {
        font-size: 1.5rem;
    }
    
    .iyeg-contact__info h2 {
        font-size: 1.5rem;
    }
    
    .iyeg-testimonials-3d__card {
        height: 420px;
    }
    
    .iyeg-testimonials-3d__author strong {
        font-size: 0.9rem;
    }
}



@media (max-width: 1024px) {
    .iyeg-hero__grid {
        display: grid;
    }

    .iyeg-hero__right {
        grid-row: 1;
    }

    .iyeg-hero__left {
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    .iyeg-btn {
        width: 100%;
    }
}