body {
    font-family: 'Inter', sans-serif;
    background-color: #FDF7F0;
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-orange-light {
    background-color: #FDF7F0;
}

.text-orange-dark {
    color: #E97444;
}

.bg-orange-button {
    background-color: #E97444;
}

.text-dark-brown {
    color: #4A2C2A;
}

/* New Services Section Styling */
.services-container {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(249,250,251,0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(233, 116, 68, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
    box-shadow: 0 8px 32px rgba(233, 116, 68, 0.08);
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.3s; }
.service-item:nth-child(3) { animation-delay: 0.5s; }

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 116, 68, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(233, 116, 68, 0.15);
    border-color: rgba(233, 116, 68, 0.3);
}

.service-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #E97444 0%, #E97444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 12px 30px rgba(233, 116, 68, 0.3);
    transition: all 0.4s ease;
    align-self: start;
    margin-top: 0.5rem;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #E97444, #F39C12, #E97444);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-item:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 16px 40px rgba(233, 116, 68, 0.4);
}

.service-item:hover .service-icon::after {
    opacity: 0.3;
}

.service-content {
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #E97444, #F39C12);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover .service-title::after {
    transform: scaleX(1);
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-group h4 {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #E97444;
    font-weight: bold;
    font-size: 0.875rem;
}

.service-item:hover .feature-list li {
    color: #333;
}

/* Floating background elements */
.services-bg-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 116, 68, 0.1), rgba(243, 156, 18, 0.1));
    animation: float 8s ease-in-out infinite;
}

.services-bg-element:nth-child(1) {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.services-bg-element:nth-child(2) {
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    animation-delay: 3s;
}

.services-bg-element:nth-child(3) {
    top: 50%;
    right: 5%;
    width: 100px;
    height: 100px;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg); 
        opacity: 0.2;
    }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-title::after {
        left: 50%;
        transform: translateX(-50%) scaleX(0);
    }

    .service-item:hover .service-title::after {
        transform: translateX(-50%) scaleX(1);
    }
}

@media (max-width: 640px) {
    .services-grid {
        gap: 2rem;
    }

    .service-item {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.5rem;
    }
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4A2C2A;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #E97444, #F39C12);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    /* color: #666; */
    max-width: 600px;
    margin: 2rem auto 0;
    line-height: 1.6;
}

/* Timeline Style Design */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #E97444, #D4663B, #E97444);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 3rem);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 3rem);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #E97444;
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline-dot:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(233, 116, 68, 0.4);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(233, 116, 68, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #E97444;
}

.timeline-number {
    position: absolute;
    top: -10px;
    background: #E97444;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.timeline-item:nth-child(odd) .timeline-number {
    right: -15px;
}

.timeline-item:nth-child(even) .timeline-number {
    left: -15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline-line {
        left: 2rem;
    }

    .timeline-dot {
        left: 2rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 5rem;
        margin-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-number,
    .timeline-item:nth-child(even) .timeline-number {
        left: -15px;
        right: auto;
    }
}

/* Floating elements animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.floating:nth-child(2) { animation-delay: 0.5s; }
.floating:nth-child(3) { animation-delay: 1s; }
.floating:nth-child(4) { animation-delay: 1.5s; }

/* Existing styles from previous code */
.bg-orange-button:hover {
    background-color: #D4663B;
}

.nav-link {
    color: #555555;
    font-weight: 500;
}

.nav-link:hover {
    color: #E97444;
}

.header-bg {
    background-color: #FDF7F0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up.delay-100 {
    animation-delay: 0.1s;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-\[1\.02\]:hover {
    transform: scale(1.02);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hexagon-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.benefit-hexagon {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(233, 116, 68, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.benefit-hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E97444, #F39C12, #E97444);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-hexagon:hover::before {
    transform: scaleX(1);
}

.benefit-hexagon:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 116, 68, 0.2);
    border-color: rgba(233, 116, 68, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E97444, #E97444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 116, 68, 0.3);
}

.benefit-hexagon:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(233, 116, 68, 0.4);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-description {
    color: #666;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Floating background elements */
.floating-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-bg:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: #E97444;
    animation-delay: 0s;
}

.floating-bg:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: #F39C12;
    animation-delay: 2s;
}

.floating-bg:nth-child(3) {
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: #E97444;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hexagon-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-hexagon {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* Section styling */
.why-uae-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E97444, #F39C12);
    border-radius: 2px;
}
/* .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
} */

/* Animation delays for staggered effect */
.benefit-hexagon:nth-child(1) { animation-delay: 0.1s; }
.benefit-hexagon:nth-child(2) { animation-delay: 0.2s; }
.benefit-hexagon:nth-child(3) { animation-delay: 0.3s; }
.benefit-hexagon:nth-child(4) { animation-delay: 0.4s; }
.benefit-hexagon:nth-child(5) { animation-delay: 0.5s; }
.benefit-hexagon:nth-child(6) { animation-delay: 0.6s; }
.benefit-hexagon:nth-child(7) { animation-delay: 0.7s; }
.benefit-hexagon:nth-child(8) { animation-delay: 0.8s; }

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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