
/* Hero Section - EXACT same classes */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    padding: 8rem 8%;
    gap: 2rem;
    position: relative;
}

.hero-right {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.circle-button {
    position: relative;
    width: 200px;
    height: 200px;
}

.rotate-circle {
    animation: spin 15s linear infinite;
    width: 100%;
    height: 100%;
}

.rotate-circle:hover {
    animation: spin 5s linear infinite;
}

.textcircle text {
    font-size: 32px;
    font-weight: 600;
    fill: black;
}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a2441;
    font-size: 2rem;
    color: #0a2441;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-left h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1.3;
}

.hero-left p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
    font-weight: 600;
}

/* Services Section - EXACT same classes */
.services-section {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 8%;
    gap: 2rem;
    position: relative;
}

.services-left {
    flex: 1;
    position: sticky;
    top: 120px;
    max-width: 400px;
    height: 400px;
}

.services-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.8s ease-in-out;
    opacity: 0;
}

.services-left img.active {
    opacity: 1;
}

.service-card-image {
    display: none;
}

.services-right {
    flex: 2;
    position: relative;
}

.service-title {
    position: sticky;
    top: 0;
    background: #f9fafc;
    padding-bottom: 1rem;
    font-weight: 600;
    font-size: 1.6rem;
    color: #1b2a41;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 3rem;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    /* opacity: 0; */
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card-content {
    flex: 1;
    min-width: 300px;
}

.service-card-image-container {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.service-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image-container img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1b2a41;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #0a2441;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.view-btn .arrow {
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

.view-btn:hover {
    background: #0056b3;
    transform: translateX(3px);
}

.approach-section {
    padding: 4rem 8%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.approach-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.approach-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Modal Styles - EXACT same classes */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.modal-content {
    background-color: #fff;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.modal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #1b2a41;
}

.modal-body .intro {
    font-weight: 500;
    color: #333;
    margin-bottom: 1.5rem;
}

.modal-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1b2a41;
    font-size: 1.3rem;
}

.modal-body ul.key-aspects {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body ul.key-aspects li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.modal-body ul.benefits {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body ul.benefits li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.modal-body strong {
    color: #1b2a41;
    font-weight: 600;
}

/* Fade Animation - EXACT same classes */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles - EXACT same classes */
@media (max-width: 1024px) {
    .hero {
        padding: 3rem 5%;
    }

    .services-section {
        padding: 3rem 5%;
    }

    .approach-section {
        padding: 3rem 5%;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
      .fade-section {
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }

    .services-section {
        flex-direction: column;
    }

    .services-left {
        display: none;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card-image-container {
        order: -1;
    }

    .service-title {
        position: relative;
        top: auto;
        padding-bottom: 0;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 5.5rem;
    }

    .hero-right {
        justify-content: center;
        margin-top: 2rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2rem 4%;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-left p {
        font-size: 0.9rem;
    }

    .circle-button {
        width: 150px;
        height: 150px;
    }

    .services-section {
        padding: 2rem 4%;
    }

    .service-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-card-content,
    .service-card-image-container {
        min-width: 100%;
    }

    .approach-section {
        padding: 2rem 4%;
        margin-top: 2rem;
    }

    .approach-section h2 {
        font-size: 1.7rem;
    }

    .approach-section p {
        font-size: 0.9rem;
    }

    .modal-content {
        margin: 0.5rem;
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 400px) {
    .hero-left h1 {
        font-size: 1.6rem;
    }

    .circle-button {
        width: 130px;
        height: 130px;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .view-btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Print styles */
@media print {
    .circle-button,
    .highlighted-nav {
        display: none !important;
    }

    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}