*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #fff7fa;
    color: #444;
    padding: 30px 20px;
}

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

/* NAVBAR */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 15px 35px;
    border-radius: 22px;
    box-shadow: 0 8px 20px rgba(255,182,193,0.15);
    margin-bottom: 50px;
    position: sticky;
    top: 20px;
    z-index: 1000;
}

.logo img{
    height: 100px;
}

.nav-links{
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a{
    text-decoration: none;
    color: #002b6b;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover{
    color: #d96c8a;
}

.headline-line{
    white-space: nowrap;
}

/* HERO SECTION */

.hero-section {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 80px;

    flex-wrap: wrap;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(5, 32, 24, 0.92),
            rgba(5, 32, 24, 0.92)
        ),


    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}
.hero-section::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg') center center no-repeat;

    background-size: 90%;

    opacity: 0.06;

    pointer-events: none;

    z-index: 0;
}

.hero-text{
    position: relative;
    z-index: 1;
}

.hero-text h1 {

    font-size: 72px;

    font-weight: 800;

    line-height: 1.1;

    color: #0f4c81;

    margin-bottom: 25px;

}

.hero-text p {

    font-size: 22px;

    line-height: 1.8;

    color: #444;

    max-width: 700px;

    margin-bottom: 35px;
}

.hero-btn{
    background: linear-gradient(to right, #002b6b, #4d6fb5);
    color: white;
    border: none;
    padding: 16px 34px;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.hero-btn:hover{
    transform: scale(1.05);
}

.hero-image{
    position: relative;
    z-index: 1;
}

.hero-image img{
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 12px 35px rgba(0,43,107,0.12);
}

/* SECTION TITLE */

.section-title{
    text-align: center;
    font-size: 44px;
    color: #002b6b;
    margin-bottom: 50px;
}

/* SERVICES */

.services-section{
    display: flex;
    flex-direction: column;
    gap: 45px
}

.service-card{
    background: white;
    padding: 40px;
    border-radius: 28px;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(0,43,107,0.08);
    transition: 0.3s;
}

.service-card:hover{
    transform: translateY(-6px);
}

.service-card h3{
    color: #002b6b;
    font-size: 32px;
    margin-bottom: 20px;
}

.service-card p{
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* BUTTON */

.learn-btn{
    display: inline-block;
    margin-top: 25px;
    background: linear-gradient(to right, #002b6b, #4d6fb5);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    text-decoration: none;
}

.learn-btn:hover{
    transform: scale(1.05);
}

/* SERVICE DETAILS */

.service-details{
    display: none;
    margin-top: 35px;
    animation: fadeIn 0.5s ease;
}

.feature-box{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f7f9ff;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 18px;
    transition: 0.3s;
}

.feature-box:hover{
    background: #edf2ff;
    transform: translateX(8px);
}

.feature-box span{
    font-size: 28px;
}

.feature-box p{
    margin: 0;
}

/* ABOUT */

.about-section{

    margin-top: 45px;
    background: white;
    padding: 45px;
    border-radius: 28px;
    margin-bottom: 90px;
    box-shadow: 0 10px 25px rgba(0,43,107,0.08);
}


.about-section h2{
    color: #002b6b;
    font-size: 38px;
    margin-bottom: 20px;
}

.about-section p{
    color: #666;
    line-height: 1.9;
}

/* TESTIMONIALS */

.review-title{
    text-align: center;
    font-size: 42px;
    color: #002b6b;
    margin-bottom: 40px;
}

.review-section{
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.review-section::-webkit-scrollbar{
    display: none;
}

.review-track{
    display: flex;
    gap: 25px;
    width: max-content;
}

.review-card{
    width: 340px;
    background: white;
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 10px 25px rgba(0,43,107,0.08);
}

.review-card p{
    line-height: 1.9;
    color: #666;
}

.review-card h4{
    margin-top: 18px;
    color: #002b6b;
}

.stars{
    color: gold;
    font-size: 20px;
    margin-bottom: 15px;
}

/* CONTACT */

.contact-section{
    background: white;
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 10px 25px rgba(0,43,107,0.08);
    margin-top: 70px;
    margin-bottom: 50px;
}

.contact-section h2{
    color: #002b6b;
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-section p{
    color: #666;
    margin-bottom: 12px;
}

/* ANIMATIONS */

@keyframes fadeIn{

    from{
        opacity: 0;
        transform: translateY(-10px);
    }

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

}

@keyframes slide{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}

/* MOBILE */

@media(max-width: 768px){

    .navbar{
        flex-direction: column;
        gap: 20px;
    }

    .nav-links{
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-text h1{
        font-size: 40px;
    }

    .hero-text p{
        font-size: 16px;
    }

    .section-title,
    .review-title{
        font-size: 34px;
    }

    .service-card h3{
        font-size: 26px;
    }

    .review-card{
        width: 280px;
    }

    .logo img{
        height: 55px;
    }

}

/* QUALITY SYSTEM PAGE */

/* FULL PAGE HERO */

.quality-hero {

    position: relative;

    min-height: 100vh;

    background-image: url('https://images.unsplash.com/photo-1581093450021-4a7360e9a6b5?q=80&w=1600&auto=format&fit=crop');

    background-size: cover;

    background-position: center;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 40px;

    overflow: hidden;
}

/* DARK OVERLAY */

.overlay {

    position: absolute;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.65);

    top: 0;

    left: 0;
}

/* CONTENT */

.quality-content {

    position: relative;

    z-index: 2;

    max-width: 1000px;

    color: white;
}

/* TITLE */

.quality-content h1 {

    font-size: 60px;

    margin-bottom: 20px;

    font-weight: bold;
}

/* SUBTITLE */

.subtitle {

    font-size: 22px;

    line-height: 1.7;

    margin-bottom: 40px;

    color: #f0f0f0;
}

/* GLASS EFFECT BOX */

.glass-box {

    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);

    padding: 40px;

    border-radius: 20px;

    text-align: left;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* BULLETS */

.glass-box ul {

    padding-left: 20px;
}

.glass-box ul li {

    margin-bottom: 40px;

    line-height: 3;

    font-size: 18px;

    color: white;
}

/* BUTTON */

.btn-primary {

    margin-top: 25px;

    background: #0b3d2e;

    color: white;

    border: none;

    padding: 14px 28px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 16px;

    transition: 0.3s;
}

.btn-primary:hover {

    background: #145c47;

    transform: translateY(-3px);
}

#services,
#about,
#recommendations {
    scroll-margin-top: 120px;
}

#quality-system,
#technical-documentation,
#training,
#urgent-support,
#medical-device {
    scroll-margin-top: 140px;
}

/* ANNAPOORNA PROFILE PAGE */

.annapoorna-page {

    min-height: 100vh;

    padding: 140px 40px 80px;

    background:
        linear-gradient(
            rgba(8,32,45,0.92),
            rgba(8,32,45,0.92)
        ),
        url('images/world-map.png');

    background-size: cover;
    background-position: center;
}



@media (max-width: 768px) {

    .profile-photo {

        width: 170px;
        height: 170px;
    }

    .profile-header h1 {

        font-size: 38px;
    }

    .profile-card {

        padding: 30px;
    }

    .profile-card p {

        font-size: 16px;
    }
}

/* TECHNICAL DOCUMENTATION PAGE */

.technical-hero {

    position: relative;

    min-height: 100vh;

    background:
        linear-gradient(
            rgba(5,32,24,0.82),
            rgba(5,32,24,0.82)
        ),
        url('images/technical-documentation-bg.jpg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 120px 40px 60px;
}

.technical-hero .overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;
}

.quality-content {

    position: relative;

    z-index: 2;

    max-width: 1100px;

    text-align: center;

    color: white;
}

.quality-content h1 {

    font-size: 60px;

    margin-bottom: 15px;
}

.subtitle {

    font-size: 22px;

    color: #dfeee8;

    margin-bottom: 35px;
}

.glass-box {

    background: rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);

    border-radius: 20px;

    padding: 50px;

    text-align: left;
}

.glass-box ul {

    padding-left: 25px;
}

.glass-box li {

    margin-bottom: 30px;

    line-height: 2;

    font-size: 18px;

    color: white;
}

/* TRAINING PAGE */

.training-hero {

    position: relative;

    min-height: 100vh;

    background:
        linear-gradient(
            rgba(5,32,24,0.82),
            rgba(5,32,24,0.82)
        ),
        url('images/training-bg.jpg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 120px 40px 60px;
}

.training-hero .overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;
}

/* SERVICE PAGES */

.service-page{
    padding: 60px 20px;
}

.service-page-card{
    background: white;
    max-width: 1100px;
    margin: auto;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card h1{
    color: #d96c8a;
    margin-bottom: 20px;
    text-align: center;
}

.service-intro{
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.bubble-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bubble{
    background: #fdeef3;
    border-left: 5px solid #d96c8a;
    padding: 20px;
    border-radius: 20px;
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

/* SAME PINK PAGE BACKGROUND AS INDEX */

body{
    background: #fff5f7;
}

.profile-header {

    text-align: center;

    margin-bottom: 40px;
}

.profile-photo {

    width: 220px;

    height: 220px;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid #d96c8a;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    margin-bottom: 20px;
}

.profile-header h1 {

    color: #d96c8a;

    margin-bottom: 10px;
}

.profile-content {

    background: white;

    max-width: 1100px;

    margin: 0 auto;

    padding: 50px;

    border-radius: 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    line-height: 2;
}

.profile-content p {

    margin-bottom: 25px;

    color: #444;

    font-size: 17px;
}

.services-section,
.about-section{
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-card{
    width: 100%;
}

.about-section{
    width: 100%;
}

.service-page-card{
    background: white;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-page-card h1{
    text-align: center;
    color: #002b6b;
    font-size: 42px;
    margin-bottom: 40px;
}


.bubble-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* DROPDOWN MENU */

.dropdown{
    position: relative;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 999;
}

.dropdown-content a{
    display: block;
    padding: 14px 20px;
    color: #002b6b;
    text-decoration: none;
    font-weight: 500;
}

.dropdown-content a:hover{
    background: #fff5f7;
    color: #d96c8a;
}

.dropdown:hover .dropdown-content{
    display: block;
}

.disabled-item{
    padding: 14px 24px;
    color: #999;
    cursor: default;
    user-select: none;
}

.review-container{
    position: relative;
    display: flex;
    align-items: center;
}

.review-section{
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
}

.review-section::-webkit-scrollbar{
    display: none;
}

.scroll-btn{
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #002b6b;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.scroll-btn:hover{
    background: #d96c8a;
    color: white;
    transform: scale(1.1);
}

.linkedin-reference{
    margin-top: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,43,107,0.08);
}

.linkedin-reference p{
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.linkedin-reference a{
    color: #0A66C2; /* LinkedIn blue */
    font-weight: 600;
    text-decoration: none;
}

.linkedin-reference a:hover{
    text-decoration: underline;
}

/* =========================
   MOBILE VERSION
========================= */

@media screen and (max-width: 768px) {

    body{
        padding: 15px;
    }

    .container{
        width: 100%;
    }

    /* NAVBAR */

    .navbar{
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        padding: 20px;
        text-align: center;
        margin-bottom: 30px;
    }

    .logo img{
        height: 70px;
    }

    .nav-links{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .nav-links a{
        font-size: 14px;
    }

    /* Disable desktop hover dropdown */

    .dropdown:hover .dropdown-content{
        display: none;
    }

    .dropdown-content{
        display: none;
    }

    /* HERO */

    .hero-section{
        min-height: auto;
        padding: 30px 10px;
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }

    .hero-section::before{
        background-size: contain;
        opacity: 0.05;
    }

    .hero-text{
        width: 100%;
    }

    .hero-text h1{
        font-size: 52px;
        line-height: 1.15;
        text-align: center;
        word-break: normal;
    }

    .headline-line{
        white-space: normal;
        display: block;
    }

    .hero-text p{
        font-size: 16px;
        line-height: 1.8;
        text-align: center;
        max-width: 100%;
    }

    .hero-btn{
        width: 100%;
        max-width: 320px;
        font-size: 18px;
        padding: 16px;
    }

    .hero-image{
        width: 100%;
    }

    .hero-image img{
        width: 100%;
    }

    /* TITLES */

    .section-title,
    .review-title{
        font-size: 42px;
        margin-bottom: 30px;
    }

    /* SERVICES */

    .services-section{
        gap: 25px;
    }

    .service-card{
        padding: 25px;
        border-radius: 20px;
    }

    .service-card h3{
        font-size: 34px;
        line-height: 1.2;
    }

    .service-card p{
        font-size: 16px;
        line-height: 1.8;
    }

    .learn-btn{
        width: auto;
    }

    /* ABOUT */

    .about-section{
        padding: 25px;
        margin-bottom: 50px;
    }

    .about-section h2{
        font-size: 34px;
    }

    /* REVIEWS */

    .review-container{
        position: relative;
    }

    .review-card{
        width: 290px;
        min-width: 290px;
        padding: 20px;
    }

    .review-card h4{
        font-size: 16px;
    }

    .review-card p{
        font-size: 15px;
        line-height: 1.8;
    }

    .scroll-btn{
        display: none;
    }

    /* CONTACT */

    .contact-section{
        padding: 25px;
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .contact-section h2{
        font-size: 34px;
    }

    /* SERVICE PAGES */

    .service-page{
        padding: 30px 15px;
    }

    .service-page-card{
        padding: 25px;
    }

    .service-page-card h1{
        font-size: 30px;
        line-height: 1.3;
    }

    .bubble{
        padding: 16px;
        font-size: 15px;
    }

    /* QUALITY / TRAINING / TECH DOC */

    .quality-content h1{
        font-size: 36px;
    }

    .subtitle{
        font-size: 16px;
        line-height: 1.8;
    }

    .glass-box{
        padding: 25px;
    }

    .glass-box li{
        font-size: 15px;
        line-height: 2;
        margin-bottom: 20px;
    }

    /* PROFILE PAGE */

    .profile-photo{
        width: 140px;
        height: 140px;
    }

    .profile-header h1{
        font-size: 32px;
    }

    .profile-content{
        padding: 25px;
    }

    .profile-content p{
        font-size: 15px;
        line-height: 1.8;
    }

}
