*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll Timeline API Setup */
@supports (animation-timeline: scroll()) {
    html {
        scroll-behavior: smooth;
    }
}

/* ================================
   REDUCE SERVICES DROPDOWN WIDTH FOR PRODUCT ENGINEERING PAGE
   ================================ */
body.product-engineering-page #nav-container .dropdown-menu {
    min-width: 200px !important; /* Match nav.css width */
}





/* Scroll Animation Keyframes */
@keyframes productengineering-hero-reveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes productengineering-slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes productengineering-slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(100px) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes productengineering-scale-in {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes productengineering-float-animation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes productengineering-progress-fill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes productengineering-stagger-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Progress Indicator */
.productengineering-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    z-index: 1001;
    transform-origin: left;
}

@supports (animation-timeline: scroll()) {
    .productengineering-scroll-progress {
        animation: productengineering-progress-fill 1s linear;
        animation-timeline: productengineering-progress-timeline;
        animation-range: 0% 100%;
    }
}

/* Product Engineering Page Scroll Animations */
@supports (animation-timeline: scroll()) {
    /* Hero Section Animations */
    .hero-content h1 {
        animation: productengineering-hero-reveal 1s ease-out;
        animation-timeline: productengineering-hero-timeline;
        animation-range: 0% 20%;
    }
    
    .hero-content p {
        animation: productengineering-hero-reveal 1s ease-out 0.2s;
        animation-timeline: productengineering-hero-timeline;
        animation-range: 0% 25%;
    }
    
    /* Service Cards Animations */
    .service-card:nth-child(1) {
        animation: productengineering-slide-in-left 1s ease-out;
        animation-timeline: productengineering-content-timeline;
        animation-range: 20% 40%;
    }
    
    .service-card:nth-child(2) {
        animation: productengineering-slide-in-right 1s ease-out 0.2s;
        animation-timeline: productengineering-content-timeline;
        animation-range: 25% 45%;
    }
    
    .service-card:nth-child(3) {
        animation: productengineering-scale-in 1s ease-out 0.4s;
        animation-timeline: productengineering-content-timeline;
        animation-range: 30% 50%;
    }
    
    /* Service Icons Animations */
    .cloud-native .service-icon {
        animation: productengineering-float-animation 3s ease-in-out infinite;
        animation-timeline: productengineering-content-timeline;
        animation-range: 25% 75%;
    }
    
    .faas .service-icon {
        animation: productengineering-float-animation 3s ease-in-out infinite 0.5s;
        animation-timeline: productengineering-content-timeline;
        animation-range: 30% 80%;
    }
    
    .monolith-microservice .service-icon {
        animation: productengineering-float-animation 4s ease-in-out infinite 1s;
        animation-timeline: productengineering-content-timeline;
        animation-range: 35% 85%;
    }
    
    /* Service Content Animations */
    .service-content h2 {
        animation: productengineering-slide-in-left 1s ease-out;
        animation-timeline: productengineering-content-timeline;
        animation-range: 20% 50%;
    }
    
    .service-content h3 {
        animation: productengineering-hero-reveal 1s ease-out 0.3s;
        animation-timeline: productengineering-content-timeline;
        animation-range: 25% 60%;
    }
    
    .service-content p {
        animation: productengineering-hero-reveal 1s ease-out 0.5s;
        animation-timeline: productengineering-content-timeline;
        animation-range: 30% 70%;
    }
    
    /* Sub-services Animations */
    .sub-service:nth-child(odd) {
        animation: productengineering-slide-in-left 0.8s ease-out;
        animation-timeline: productengineering-content-timeline;
        animation-range: 40% 70%;
    }
    
    .sub-service:nth-child(even) {
        animation: productengineering-slide-in-right 0.8s ease-out;
        animation-timeline: productengineering-content-timeline;
        animation-range: 45% 75%;
    }
    
    /* CTA Section Animations */
    .cta-section {
        animation: productengineering-stagger-fade-in 1s ease-out;
        animation-timeline: productengineering-cta-timeline;
        animation-range: 70% 90%;
    }
    
    .cta-content h2 {
        animation: productengineering-slide-in-left 1s ease-out;
        animation-timeline: productengineering-cta-timeline;
        animation-range: 75% 95%;
    }
    
    .cta-content p {
        animation: productengineering-hero-reveal 1s ease-out 0.2s;
        animation-timeline: productengineering-cta-timeline;
        animation-range: 80% 100%;
    }
    
    .cta-content button {
        animation: productengineering-scale-in 1s ease-out 0.3s;
        animation-timeline: productengineering-cta-timeline;
        animation-range: 75% 100%;
    }
}

/* Fallback for browsers that don't support Scroll Timeline API */
@supports not (animation-timeline: scroll()) {
    /* Intersection Observer fallback animations */
    .hero-content h1, .hero-content p,
    .service-card, .service-icon, .service-content,
    .sub-service, .cta-section, .cta-content h2, .cta-content p, .cta-content button {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .hero-content h1.visible, .hero-content p.visible,
    .service-card.visible, .service-icon.visible, .service-content.visible,
    .sub-service.visible, .cta-section.visible, .cta-content h2.visible, 
    .cta-content p.visible, .cta-content button.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .productengineering-scroll-progress {
        display: none;
    }
}

body{
    font-family: "poppins", sans-serif;
    background-color: #ffffff;
    color:#1d4ed8;
    line-height: 1.6;
    padding: 20px;
    overflow-x:hidden;
}

/* ================================
   HERO SECTION
   ================================ */

/* Main Content */
#main {
    margin-top: 80px;
    
}

.productengineering-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content:center;
    background: #ffffff;
    overflow: hidden;
}

.productengineering-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #ffffff;
    
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: #132c6f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    color:#5a6473;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   INTRODUCTION SECTION
   ================================ */

.introduction-section {
    padding: 80px 20px;
    background-color: #ffffff;
    margin: 0 -20px;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #070d5e;
    margin-bottom: 2rem;
    background:#070d5e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #5a6473;
    margin-bottom: 3rem;
    font-family: "inter", sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.key-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight {
    text-align: center;
    padding: 2rem;
    background: f4f8ff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.highlight i {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.highlight h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.highlight p {
    font-size: 1rem;
    color: #6b7280;
    font-family: "inter", sans-serif;
}

/* ================================
   SERVICES OVERVIEW
   ================================ */

.services-overview {
    padding: 80px 20px;
    background-color: #ffffFf;
    margin: 0 -20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f4f8ff;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h2 {
    color: #3b82f6;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6473;
    font-family: "inter", sans-serif;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Sub-services */
.sub-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.sub-service {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.sub-service:hover {
    background: #e8eaff;
    transform: translateY(-3px);
}

.sub-service i {
    font-size: 2rem;
    color: #1d4ed8;
    margin-bottom: 1rem;
}

.sub-service h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.sub-service p {
    font-size: 0.9rem;
    color: #666;
    font-family: "inter", sans-serif;
}

/* Service Button */
.service-btn {
    width: 250px;
    height: 50px;
    background: linear-gradient(135deg, #2161a0 0%, #1d4ed8 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.service-btn a {
    color: white;
    text-decoration: none;
}

/* Different colors for each service card */
.cloud-native .service-icon {
    background: linear-gradient(135deg, #2161a0 0%, #1d4ed8 100%);
}

.cloud-native::before {
    background: linear-gradient(135deg, #2161a0 0%, #1d4ed8 100%);
    pointer-events: none; 
}

.faas .service-icon {
    background: linear-gradient(135deg, #2161a0 0%, #1d4ed8 100%);
}

.faas::before {
    background: linear-gradient(135deg, #2161a0 0%, #1d4ed8 100%);
}

.monolith-microservice .service-icon {
    background: linear-gradient(135deg, #2161a0 0%, #1d4ed8 100%);
}

.monolith-microservice::before {
    background: linear-gradient(135deg, #2161a0 0%, #1d4ed8 100%);
}

/* Enhanced hover effects for all service cards */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-content h2 {
    color: #070d5e;
}

/* Enhanced hover effects for Cloud Native */
.cloud-native:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

.cloud-native:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    animation: productengineering-float-animation 2s ease-in-out infinite;
}

/* Enhanced hover effects for FaaS */
.faas:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.3);
}

.faas:hover .service-icon {
    transform: scale(1.15) rotate(180deg);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
    animation: productengineering-float-animation 2.5s ease-in-out infinite;
}

/* Enhanced hover effects for Monolith to Microservice */
.monolith-microservice:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.monolith-microservice:hover .service-icon {
    transform: scale(1.1) rotate(-360deg);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
    animation: productengineering-float-animation 2.2s ease-in-out infinite;
}

/* ================================
   WHY CHOOSE SECTION
   ================================ */

.why-choose-section {
    padding:  20px;
    background-color: #ffffff;
    margin: 0 -20px;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    background: #070d5e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    background: #f4f8ff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.benefit-card i {
    font-size: 3rem;
    color:#1d4ed8;
    
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: #6b7280;
    font-family: "inter", sans-serif;
    line-height: 1.6;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    width:100%;
    background: #273995;
    border: 2px solid rgb(214, 205, 214);
    border-radius: 30px;
    margin: 60px -20px;
    padding: 60px 20px;
      width:80%;
    margin-left:12%;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #f4f8ff;
    margin-bottom: 2rem;
    font-family: "inter", sans-serif;
    font-weight: 400;
}

.cta-content button {
    width: 180px;
    height: 50px;
    background-color: #ffffff;
    border: none;
    border-radius: 25px;
    color: rgb(85, 56, 212);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-content button:hover {
    background-color: #c3bbd1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(158, 101, 212, 0.4);
}

.cta-content button a {
    color: #1d4ed8;
    text-decoration: none;
}

/* ================================
   FOOTER STYLES (Same as Homepage)
   ================================ */

footer{
    width: 100%;
    margin-top: 60px;
}

#footbox{
    width: 100vw;
    height: 300px;
    padding: 30px;
    background-color: rgb(82, 80, 80);
    margin-top: 20px;
    margin-left: -5vw;
}

#footbox img{
    width: 20px;
    height: auto;
    object-fit: contain;
}

#footabout{
    width: 85vw;
    height: auto;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

#footnav{
    width: 45vw;
    height: auto;
    display: flex;
    justify-content: center;
    gap:20vw;
    margin-left: 20%;
}

#footnav1{
    display: flex;
    flex-direction: column;
    gap:9px;
}

#footnav2{
    display: flex;
    flex-direction: column;
    gap:9px;
}

#footnav a{
    color: #827E7E;
    text-decoration: none;
}

#footlogo{
    height: 5vh;
    width: 10vw;
    font-size: 22px;
    margin-top: -8vh;
    letter-spacing: -1px;
    color: white;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footabout img {
    width: 72px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#footabout_title{
    width: 19vw;
}

/* ================================
   RESPONSIVE - TABLET
   ================================ */
@media (max-width: 1024px) {
    .hero-content {
        margin-left: clamp(1rem, 3vw, 2rem);
        height: auto;
    }
    
    .hero-content h1 {
        width: clamp(80%, 85vw, 45vw);
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .hero-content p {
        width: 100%;
        font-size: clamp(1.1rem, 2vw, 1.3rem);
    }
    
    .intro-content h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .intro-content p {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
    
    .key-highlights {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 40px;
        gap: 30px;
    }
    
    .service-content h2 {
        font-size: clamp(1.8rem, 3vw, 2.2rem);
    }
    
    .service-content h3 {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
    }
    
    .sub-services {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .cta-content p {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }


/* ================================
   RESPONSIVE - MOBILE
   ================================ */
@media (max-width: 768px) {
    .nav-container {
        padding-left: 20px;
    }

    .dropdown-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
    }
    
    .key-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .service-card:hover {
        margin: 0 auto;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content > p {
        font-size: 1rem;
    }
    
    .sub-services {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-overview {
        padding: 60px 20px;
    }

    .services-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        display: none;
        width: 100%;
        background: transparent;
    }

    .services-dropdown.submenu-open .dropdown-menu {
        display: block;
    }

    .services-dropdown.submenu-open .services-link i {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.02);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }
    
    .cloud-native:hover {
        transform: translateY(-2px) rotate(0.5deg);
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15);
    }
    
    .cloud-native:hover .service-icon {
        transform: scale(1.05) rotate(90deg);
        box-shadow: 0 8px 15px rgba(59, 130, 246, 0.15);
        animation: productengineering-float-animation 3s ease-in-out infinite;
    }
    
    .faas:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 10px 20px rgba(245, 158, 11, 0.15);
    }
    
    .faas:hover .service-icon {
        transform: scale(1.05) rotate(45deg);
        box-shadow: 0 8px 15px rgba(245, 158, 11, 0.15);
        animation: productengineering-float-animation 3.5s ease-in-out infinite;
    }
    
    .monolith-microservice:hover {
        transform: translateY(-2px) rotate(-0.5deg);
        box-shadow: 0 10px 20px rgba(16, 185, 129, 0.15);
    }
    
    .monolith-microservice:hover .service-icon {
        transform: scale(1.05) rotate(-90deg);
        box-shadow: 0 8px 15px rgba(16, 185, 129, 0.15);
        animation: productengineering-float-animation 3.2s ease-in-out infinite;
    }
    
    .service-content h2 {
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .sub-services {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .services-overview {
        padding: 40px 15px;
    }

    #footbox{
        height: 70vh;
    }
    
    #footbox h2{
        margin-left: -50px;
    }
    
    #footnav{
        margin-left:45vw ;
    }
    
    #footnav{
        display: flex;
        flex-direction: column;
    }
    
    #footbox {
        margin-left: 0;
        width: 100%;
        height: auto;
        padding: 30px clamp(15px, 4vw, 30px);
    }
    
    #footabout {
        width: 100%;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    #footlogo {
        width: auto;
        margin-top: 0;
        font-size: clamp(18px, 4vw, 22px);
    }
    
    #footabout_title {
        width: 100%;
        max-width: 400px;
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    #footnav {
        width: 100%;
        margin-left: 0;
        flex-wrap: wrap;
    }
}
}