body { 
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f6f8;
    overflow-x: hidden;
}

.showcase-icon {
    display: flex;
    position: fixed;
    top: 40%;
    right: 12px;
    z-index: 100;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2a4d7a 0%, #4fa3ff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(44,104,255,0.10);
    padding: 12px 8px;
    transition: background 0.25s, box-shadow 0.25s;
}
.showcase-icon:hover {
    background: rgb(169, 157, 89);
    box-shadow: 0 8px 32px rgba(44,104,255,0.18);
}
@media(max-width:800px){
    .showcase-icon{
        display: none;
    }
}

.showcase-icon .showcase-icon-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: linear-gradient(180deg, #2a4d7a 80%, #4fa3ff 100%);
    width: 54px;
    min-height: 240px;
    padding: 18px 0;
    position: sticky;
    top: 80px;
    right: 0;
    box-shadow: 0 6px 24px rgba(44,104,255,0.13);
    border-radius: 20px 0 0 20px;
    z-index: 101;
    animation: showcaseSlideIn 0.7s cubic-bezier(.4,1.2,.4,1);
    transition: box-shadow 0.3s, background 0.3s;
}


.showcase-icon .showcase-icon-main a{
    color: #fff;
    font-size: 20px;
}

@keyframes showcaseSlideIn {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.showcase-icon .showcase-icon-main:hover {
    box-shadow: 0 12px 36px rgba(44,104,255,0.18);
    background: linear-gradient(180deg, #b7a85c 80%, #fffbe6 100%);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #2a4d7a 60%, #4fa3ff 100%);
    padding: 0 32px;
    min-height: 68px;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 2px 12px rgba(44,104,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 38px;
    height: 38px;
                    border-radius: 50%;
                    background: #fff;
                    object-fit: cover;
                    box-shadow: 0 1px 4px rgba(44,104,255,0.10);
                }
                .nav-title {
                    color: #fff;
                    font-size: 1.18em;
                    font-weight: 700;
                    letter-spacing: 1px;
                    text-shadow: 0 1px 2px #0002;
                }
                .nav-links {
                    display: flex;
                    gap: 32px;
                    list-style: none;
                    margin: 0;
                    padding: 0;
                }
                .nav-links li {
                    opacity: 0;
                    transform: translateY(-18px);
                    animation: navFadeIn 0.7s forwards;
                    animation-delay: calc(0.12s * var(--i));
                }
                @keyframes navFadeIn {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
                .nav-links a {
                    color: #fff;
                    font-size: 1.08em;
                    font-weight: 600;
                    text-decoration: none;
                    padding: 8px 18px;
                    border-radius: 18px;
                    transition: background 0.25s, color 0.18s, transform 0.18s;
                    position: relative;
                }
                .nav-links a::after {
                    content: '';
                    display: block;
                    height: 3px;
                    width: 0;
                    background: #fff;
                    border-radius: 2px;
                    transition: width 0.3s;
                    position: absolute;
                    left: 18px;
                    bottom: 2px;
                }
                .nav-links a:hover, .nav-links a:focus {
                    background: rgba(255,255,255,0.13);
                    color: #ffe;
                    transform: translateY(-2px) scale(1.07);
                }
                .nav-links a:hover::after, .nav-links a:focus::after {
                    width: 60%;
                }
                /* Hamburger menu for mobile */
                .nav-toggle {
                    display: none;
                }
                .nav-toggle-label {
                    display: none;
                    flex-direction: column;
                    justify-content: center;
                    cursor: pointer;
                    width: 38px;
                    height: 38px;
                    gap: 5px;
                }
                .nav-toggle-label span {
                    display: block;
                    height: 4px;
                    width: 100%;
                    background: #fff;
                    border-radius: 2px;
                    transition: 0.3s;
                }
                @media (max-width: 800px) {
                    .main-nav {
                        flex-direction: column;
                        align-items: stretch;
                        padding: 0 10px;
                        min-height: unset;
                    }
                    .nav-brand {
                        padding: 10px 0 6px 0;
                        justify-content: center;
                    }
                    .nav-links {
                        flex-direction: column;
                        gap: 0;
                        background: linear-gradient(90deg, #2a4d7a 60%, #4fa3ff 100%);
                        border-radius: 0 0 18px 18px;
                        box-shadow: 0 2px 12px rgba(44,104,255,0.08);
                        position: absolute;
                        top: 100%;
                        left: 0;
                        right: 0;
                        overflow: hidden;
                        max-height: 0;
                        transition: max-height 0.4s cubic-bezier(.4,1.2,.4,1);
                    }
                    .nav-links li {
                        opacity: 1;
                        transform: none;
                        animation: none;
                    }
                    .nav-links a {
                        padding: 14px 0;
                        border-radius: 0;
                        text-align: center;
                        width: 100%;
                        display: block;
                    }
                    .nav-toggle {
                        display: block;
                        position: absolute;
                        right: 18px;
                        top: 18px;
                        width: 38px;
                        height: 38px;
                        opacity: 0;
                        z-index: 20;
                    }
                    .nav-toggle-label {
                        display: flex;
                        position: absolute;
                        right: 18px;
                        top: 18px;
                        z-index: 21;
                    }
                    .nav-toggle:checked ~ .nav-links {
                        max-height: 350px;
                        box-shadow: 0 8px 24px rgba(44,104,255,0.13);
                    }
                    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
                        transform: translateY(9px) rotate(45deg);
                    }
                    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
                        opacity: 0;
                    }
                    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
                        transform: translateY(-9px) rotate(-45deg);
                    }
                }

.hero-header {
                    position: relative;
                    min-height: 340px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    background: linear-gradient(120deg, #2a4d7a 60%, #4fa3ff 100%);
                    border-radius: 0 0 32px 32px;
                    box-shadow: 0 4px 24px rgba(44,104,255,0.09);
                }
                .hero-bg-anim {
                    position: absolute;
                    inset: 0;
                    background: radial-gradient(circle at 70% 30%, #4fa3ff33 0%, transparent 70%),
                                radial-gradient(circle at 20% 80%, #2a4d7a22 0%, transparent 70%);
                    z-index: 1;
                    pointer-events: none;
                    animation: heroBgMove 8s infinite alternate;
                }
                @keyframes heroBgMove {
                    0% { background-position: 70% 30%, 20% 80%; }
                    100% { background-position: 60% 40%, 30% 70%; }
                }
                .hero-content {
                    position: relative;
                    z-index: 2;
                    text-align: center;
                    color: #fff;
                    width: 100%;
                    max-width: 600px;
                    margin: 0 auto;
                    padding: 36px 12px 32px 12px;
                }
                .hero-icon-bounce {
                    font-size: 2.8em;
                    color: #fff;
                    margin-bottom: 18px;
                    animation: heroBounce 1.6s infinite alternate;
                    display: inline-block;
                }
                @keyframes heroBounce {
                    0% { transform: translateY(0);}
                    60% { transform: translateY(-12px);}
                    100% { transform: translateY(0);}
                }
                .hero-title {
                    font-size: 2.3em;
                    font-weight: 800;
                    letter-spacing: 1px;
                    margin-bottom: 10px;
                    opacity: 0;
                    transform: translateY(-40px);
                    animation: heroTitleIn 1.1s 0.2s forwards;
                }
                @keyframes heroTitleIn {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
                .hero-sub {
                    font-size: 1.18em;
                    font-weight: 500;
                    color: #eaf3ff;
                    margin-bottom: 22px;
                    opacity: 0;
                    transform: translateY(30px);
                    animation: heroSubIn 1.1s 0.6s forwards;
                }
                @keyframes heroSubIn {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
                .hero-animated-list {
                    list-style: none;
                    padding: 0;
                    margin: 0 0 24px 0;
                    min-height: 2em;
                    position: relative;
                    font-size: 1.15em;
                    font-weight: 600;
                }
                .hero-animated-list li {
                    opacity: 0;
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    width: 100%;
                    transition: opacity 0.7s;
                    color: #c1dcff;
                    text-shadow: 0 1px 2px #000;
                    letter-spacing: 0.5px;
                }
                .hero-animated-list li.active {
                    opacity: 1;
                    z-index: 1;
                    animation: heroListFadeIn 0.7s;
                }
                @keyframes heroListFadeIn {
                    from { opacity: 0; transform: translateY(18px);}
                    to { opacity: 1; transform: translateY(0);}
                }
                .hero-cta-btn {
                    display: inline-block;
                    padding: 12px 36px;
                    background: linear-gradient(90deg, #4fa3ff 60%, #2a4d7a 100%);
                    color: #fff;
                    border: none;
                    border-radius: 24px;
                    font-size: 1.1em;
                    font-weight: 700;
                    text-decoration: none;
                    box-shadow: 0 2px 8px rgba(44, 104, 255, 0.12);
                    transition: background 0.3s, transform 0.2s;
                    margin-top: 10px;
                }
                .hero-cta-btn:hover {
                    background: linear-gradient(90deg, #2a4d7a 60%, #4fa3ff 100%);
                    transform: translateY(-3px) scale(1.04);
                }
                @media (max-width: 600px) {
                    .hero-header {
                        min-height: 220px;
                        border-radius: 0 0 18px 18px;
                    }
                    .hero-title {
                        font-size: 1.3em;
                    }
                    .hero-content {
                        padding: 22px 4px 18px 4px;
                    }
                }

                .services-title {
                    font-size: 2em;
                    color: #2a4d7a;
                    margin-bottom: 18px;
                    opacity: 0;
                    transform: translateY(-40px);
                    animation: slideIn 1s forwards;
                }

             
                .services-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                    gap: 28px;
                    margin-top: 28px;
                    padding-left: 24px;
                    padding-right: 24px;
                }
                @media (max-width: 700px) {
                    .services-grid {
                        padding-left: 8px;
                        padding-right: 8px;
                    }
                }
                .service-card {
                    background: #fff;
                    border-radius: 14px;
                    box-shadow: 0 2px 12px rgba(44, 104, 255, 0.08);
                    padding: 28px 20px 22px 20px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    opacity: 0;
                    transform: translateY(40px);
                    animation: fadeIn 1.1s forwards;
                    transition: transform 0.18s, box-shadow 0.18s;
                }
                .service-card:hover {
                    transform: translateY(-6px) scale(1.04);
                    box-shadow: 0 6px 24px rgba(44, 104, 255, 0.14);
                }
                .service-icon {
                    font-size: 2.2em;
                    color: #4fa3ff;
                    margin-bottom: 14px;
                    display: flex;
                    gap: 8px;
                    transition: color 0.3s, transform 0.2s;
                }
                .service-card:hover .service-icon {
                    color: #2a4d7a;
                    transform: scale(1.13) rotate(-6deg);
                }
                .service-card h3 {
                    font-size: 1.18em;
                    color: #2a4d7a;
                    margin-bottom: 10px;
                    text-align: center;
                }
                .service-card p {
                    color: #444;
                    font-size: 1em;
                    margin-bottom: 10px;
                    text-align: center;
                }
                .service-card ul {
                    padding-left: 18px;
                    margin: 0 0 8px 0;
                    color: #4fa3ff;
                    font-size: 0.98em;
                    text-align: left;
                    align-self: flex-start;
                }
                @media (max-width: 700px) {
                    .services-grid {
                        grid-template-columns: 1fr;
                    }
                    .service-card {
                        padding: 20px 10px 16px 10px;
                    }
                }
                @keyframes slideIn {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
                @keyframes fadeIn {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                .projects-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
                    gap: 28px;
                    margin-top: 28px;
                    padding-left: 24px;
                    padding-right: 24px;
                }
                @media (max-width: 700px) {
                    .projects-grid {
                        padding-left: 8px;
                        padding-right: 8px;
                    }
                }
                .project-card {
                    background: #fff;
                    border-radius: 14px;
                    box-shadow: 0 2px 12px rgba(44, 104, 255, 0.08);
                    overflow: hidden;
                    display: flex;
                    flex-direction: column;
                    transition: transform 0.18s, box-shadow 0.18s;
                }
                .project-card:hover {
                    transform: translateY(-6px) scale(1.03);
                    box-shadow: 0 6px 24px rgba(44, 104, 255, 0.14);
                }
                .project-image {
                    width: 100%;
                    height: 170px;
                    background: #eaf3ff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                    opacity: 0;
                    transform: translateY(40px);
                    transition: opacity 0.7s, transform 0.7s;
                }
                .project-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                .project-info {
                    padding: 20px 18px 16px 18px;
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                }
                .project-info h3 {
                    font-size: 1.15em;
                    color: #2a4d7a;
                    margin-bottom: 8px;
                }
                .project-info p {
                    color: #444;
                    font-size: 1em;
                    margin-bottom: 10px;
                }
                .project-info ul {
                    padding-left: 18px;
                    margin: 0 0 8px 0;
                    color: #4fa3ff;
                    font-size: 0.98em;
                }
                .see-more-btn {
                    display: inline-block;
                    padding: 12px 32px;
                    background: linear-gradient(90deg, #2a4d7a 60%, #4fa3ff 100%);
                    color: #fff;
                    border: none;
                    border-radius: 24px;
                    font-size: 1.1em;
                    font-weight: 600;
                    text-decoration: none;
                    box-shadow: 0 2px 8px rgba(44, 104, 255, 0.12);
                    transition: background 0.3s, transform 0.2s;
                    margin-top: 12px;
                }
                .see-more-btn:hover {
                    background: linear-gradient(90deg, #4fa3ff 60%, #2a4d7a 100%);
                    transform: translateY(-3px) scale(1.04);
                }
                @media (max-width: 700px) {
                    .projects-grid {
                        grid-template-columns: 1fr;
                    }
                    .project-image {
                        height: 140px;
                    }
                }

                .about-section {
                    background: #f5faff;
                    border-radius: 12px;
                    padding: 40px 24px 32px 24px;
                    margin: 40px 0;
                    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
                    text-align: center;
                    overflow: hidden;
                }
                .about-title {
                    font-size: 2em;
                    color: #2a4d7a;
                    margin-bottom: 18px;
                    opacity: 0;
                    transform: translateY(-40px);
                    animation: slideIn 1s forwards;
                }
                .about-content {
                    font-size: 1.1em;
                    color: #333;
                    max-width: 700px;
                    margin: 0 auto 28px auto;
                    line-height: 1.7;
                    opacity: 0;
                    transform: translateY(40px);
                    animation: fadeIn 1.2s 0.5s forwards;
                }
                .about-btn-container {
                    opacity: 0;
                    animation: bounceIn 1s 1.2s forwards;
                }
                .about-more-btn {
                    display: inline-block;
                    padding: 12px 32px;
                    background: linear-gradient(90deg, #2a4d7a 60%, #4fa3ff 100%);
                    color: #fff;
                    border: none;
                    border-radius: 24px;
                    font-size: 1.1em;
                    font-weight: 600;
                    text-decoration: none;
                    box-shadow: 0 2px 8px rgba(44, 104, 255, 0.12);
                    transition: background 0.3s, transform 0.2s;
                }
                .about-more-btn:hover {
                    background: linear-gradient(90deg, #4fa3ff 60%, #2a4d7a 100%);
                    transform: translateY(-3px) scale(1.04);
                }
                @keyframes slideIn {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
                @keyframes fadeIn {
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
                @keyframes bounceIn {
                    0% {
                        opacity: 0;
                        transform: scale(0.7);
                    }
                    60% {
                        opacity: 1;
                        transform: scale(1.1);
                    }
                    100% {
                        opacity: 1;
                        transform: scale(1);
                    }
                }
                /* Responsive */
                @media (max-width: 600px) {
                    .about-section {
                        padding: 24px 8px 20px 8px;
                    }
                    .about-title {
                        font-size: 1.3em;
                    }
                }

                   .contact-section {
                    background: #eaf3ff;
                    border-radius: 12px;
                    padding: 40px 24px 32px 24px;
                    margin: 40px 0;
                    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
                    text-align: center;
                    overflow: hidden;
                }
                .contact-title {
                    font-size: 2em;
                    color: #2a4d7a;
                    margin-bottom: 18px;
                    opacity: 0;
                    transform: translateY(-40px);
                    animation: slideIn 1s forwards;
                }
                .contact-cards {
                    display: flex;
                    justify-content: center;
                    gap: 32px;
                    flex-wrap: wrap;
                }
                .contact-card {
                    background: #fff;
                    border-radius: 16px;
                    box-shadow: 0 2px 12px rgba(44, 104, 255, 0.08);
                    padding: 28px 24px;
                    min-width: 220px;
                    max-width: 260px;
                    margin: 12px 0;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    opacity: 0;
                    transform: translateY(40px);
                    animation: fadeIn 1.2s forwards;
                    transition: transform 0.2s;
                }
                .contact-card i {
                    font-size: 2.2em;
                    color: #4fa3ff;
                    margin-bottom: 12px;
                    transition: color 0.3s, transform 0.2s;
                }
                .contact-card:hover i {
                    color: #2a4d7a;
                    transform: scale(1.15) rotate(-8deg);
                }
                .contact-card h3 {
                    margin: 8px 0 6px 0;
                    font-size: 1.15em;
                    color: #2a4d7a;
                }
                .contact-card a, .contact-card p {
                    color: #333;
                    font-size: 1em;
                    text-decoration: none;
                    word-break: break-all;
                }
                .contact-card a:hover {
                    color: #4fa3ff;
                    text-decoration: underline;
                }
                @media (max-width: 700px) {
                    .contact-cards {
                        flex-direction: column;
                        gap: 14px;
                        padding-left: 2px;
                        padding-right: 2px;
                        margin-left: 6px;
                        margin-right: 56px;
                    }
            
                    .contact-card {
                        width: 100%;
                        max-width: 100%;
                    }
                }