/* ============================================
   DOLPHIN MEDIA - Modern Event Management Design
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES & RESET
   ============================================ */
:root {
    /* Modern Color Palette */
    --primary-color: #0066cc;
    --primary-dark: #004999;
    --primary-light: #3385d6;
    --secondary-color: #ff6b35;
    --accent-color: #ffd23f;
    
    /* Neutral Colors */
    --dark-bg: #0a0e27;
    --darker-bg: #05070f;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-muted: #95a5a6;
    
    /* Spacing */
    --section-padding: 4rem 9%;
    --box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    --border-radius: 1rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --heading-size: 4rem;
    --subheading-size: 2.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*::selection {
    background: var(--primary-color);
    color: var(--white);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    background: #f0f4f8;
    overflow-x: hidden;
    font-size: 1.6rem;
    color: var(--text-dark);
}

section {
    padding: var(--section-padding);
}

/* Shared layout constraints for consistent alignment */
.section-width,
.stats .box-container,
.service .box-container,
.about .row,
.team .team-container,
.gallery .box-container,
.partners .swiper,
.review .review-slider,
.contact .contact-row,
.footer .box-container,
.news-container,
.careers-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Global spacing and typography harmony */
body {
    line-height: 1.7;
    letter-spacing: 0.01em;
}

p {
    text-transform: none;
}

/* ============================================
   2. HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 2rem 9%;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header .logo {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    letter-spacing: 0.1rem;
}

.header .logo span {
    color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header .navbar a {
    font-size: 1.7rem;
    margin-left: 3rem;
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.header .navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-color));
    transition: width 0.3s ease;
    border-radius: 0.5rem;
}

.header .navbar a:hover,
.header .navbar a.active {
    color: var(--primary-light);
}

.header .navbar a:hover::before,
.header .navbar a.active::before {
    width: 100%;
}

#menu-bars {
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    display: none;
}

/* ============================================
   3. HOME/HERO SECTION
   ============================================ */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker-bg);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(255, 107, 53, 0.1));
    z-index: 1;
}

.home .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home .swiper-slide {
    overflow: hidden;
}

.home .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    animation: zoomInOut 20s infinite;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.home .swiper-pagination-bullet {
    background: var(--white);
    width: 1.2rem;
    height: 1.2rem;
    opacity: 0.7;
}

.home .swiper-pagination-bullet-active {
    background: var(--primary-light);
    opacity: 1;
    width: 3rem;
    border-radius: 1rem;
}

/* ============================================
   4. MAIN HEADING SECTION
   ============================================ */
.main-heading-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #0066cc 50%, #004999 100%);
    padding: 4rem 9%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-heading-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.3), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.main-heading-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50rem;
    height: 50rem;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-2rem) rotate(5deg);
    }
}

.main-heading {
    font-size: 5rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
}

.main-heading span:first-child {
    display: block;
    background: linear-gradient(135deg, #ffd23f 0%, #ff6b35 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.main-heading span:last-child {
    color: var(--white);
    font-weight: 500;
}

/* ============================================
   5. STATS/EXPERIENCE SECTION
   ============================================ */
.stats {
    background: linear-gradient(180deg, #e8f1f8 0%, #e8f1f8 100%);
    padding: 4rem 9%;
}

.stats .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3.5rem;
}

.stats .box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    color: var(--white);
    transform: translateY(0);
}

.stats .box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 20rem;
    height: 20rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.stats .box:hover {
    transform: translateY(-1rem);
    box-shadow: var(--box-shadow-hover);
}

.stats .box:hover::before {
    top: -20%;
    right: -20%;
    width: 30rem;
    height: 30rem;
}

.stats .box i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.stats .box h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stats .box p {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ============================================
   6. HEADINGS
   ============================================ */
.heading {
    text-align: center;
    font-size: var(--heading-size);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    position: relative;
    display: block;
    width: 100%;
}

.heading::before {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.4rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.5rem;
}

.heading span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   7. SERVICE SECTION
   ============================================ */
.service {
    background: linear-gradient(180deg, #e8f1f8 0%, #d4e7f4 100%);
}

.service .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3.5rem;
    margin-top: 3rem;
}

.service .box {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 0.2rem solid transparent;
    transition: all 0.4s ease;
}

.service .box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    transition: all 0.4s ease;
    z-index: 0;
    opacity: 0.05;
}

.service .box:hover {
    border-color: var(--primary-color);
    transform: translateY(-1rem);
    box-shadow: var(--box-shadow-hover);
}

.service .box:hover::before {
    top: 0;
}

.service .box i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service .box h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Service description - hidden by default, shown on hover */
.service .box .service-desc {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
}

/* Show description on box hover */
.service .box:hover .service-desc {
    max-height: 20rem;
    opacity: 1;
    margin-bottom: 1.5rem;
}

/* ============================================
   8. ABOUT SECTION
   ============================================ */
.about {
    background: linear-gradient(180deg, #d4e7f4 0%, #d4e7f4 100%);
}

.about .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3rem;
}

.about .row .image {
    flex: 1 1 45rem;
    position: relative;
}

.about .row .image::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 100%;
    height: 100%;
    border: 0.5rem solid var(--primary-light);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about .row .image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    object-fit: cover;
}

.about .row .content {
    flex: 1 1 45rem;
}

.about .row .content h3 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.4;
}

.about .row .content p {
    font-size: 1.6rem;
    color: var(--text-light);
    line-height: 2;
    text-transform: none;
}

/* ============================================
   9. TEAM SECTION
   ============================================ */
.team {
    background: linear-gradient(180deg, #e0eef7 0%, #e0eef7 100%);
}

.team .team-container {
    margin-top: 2rem;
}

.team .team-row {
    display: grid;
    grid-template-columns: repeat(3, 38rem);
    justify-content: center;
    gap: 1.6rem;
    margin-bottom: 3.5rem;
}

.team .team-member {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block;
}

.team .team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    transition: all 0.5s ease;
}

.team .team-member:hover {
    transform: translateY(-1rem);
    box-shadow: var(--box-shadow-hover);
}

.team .team-member:hover::before {
    left: 100%;
}

.team .team-member img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
    border: 0.15rem solid var(--primary-light);
}

.team .team-member h3 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.team .team-member .designation {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Team grid responsiveness for smaller fixed columns */
@media (max-width: 991px) {
    .team .team-row { grid-template-columns: repeat(2, 20rem); justify-content: center; }
}
@media (max-width: 600px) {
    .team .team-row { grid-template-columns: 18rem; justify-content: center; }
}

/* ============================================
   10. GALLERY SECTION
   ============================================ */
.gallery {
    background: linear-gradient(180deg, #e0eef7 0%, #d8e9f5 100%);
}

.gallery.portfolio-page {
    padding-top: 12rem;
}

.gallery .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery .box {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    height: 35rem;
    display: block;
    background: var(--white);
}

.gallery .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.gallery .box:hover::before {
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.3), rgba(0, 0, 0, 0.9));
}

.gallery .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery .box:hover img {
    transform: scale(1.1);
}

.gallery .box .title {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    z-index: 2;
    transform: translateY(2rem);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery .box:hover .title {
    transform: translateY(0);
    opacity: 1;
}

.gallery .box .icons {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    gap: 1rem;
    transform: translateY(-5rem);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery .box:hover .icons {
    transform: translateY(0);
    opacity: 1;
}

.gallery .box .icons a {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.gallery .box .icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ============================================
   11. PARTNERS SECTION
   ============================================ */
.partners {
    background: linear-gradient(180deg, #d8e9f5 0%, #cfe3f3 100%);
    padding: 4rem 0;
}

.partners .heading {
    margin-bottom: 3rem;
}

.partners-swiper {
    padding: 2rem 0;
}

.partners-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 12rem;
    border: 1px solid #e2ebf5;
}

.partners-swiper .swiper-slide:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--box-shadow-hover);
}

.partners-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 8rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.partners-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .partners-swiper {
        padding: 1.5rem 0;
    }
    .partners-swiper .swiper-slide {
        height: 10rem;
        padding: 1.5rem;
    }
    .partners-swiper .swiper-slide img {
        max-height: 6rem;
    }
}

/* ============================================
   12. REVIEW SECTION
   ============================================ */
.review {
    background: linear-gradient(180deg, #cfe3f3 0%, #c7ddf0 100%);
}

.review-slider {
    margin-top: 3rem;
    padding: 2rem 0;
}

.review-slider .box {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.review-slider .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.5rem 0 0 0.5rem;
}

.review-slider .box .fa-quote-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    color: var(--primary-light);
    opacity: 0.1;
}

.review-slider .box .user {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-slider .box .user .avatar-initial {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    border: 0.3rem solid var(--primary-color);
}

.review-slider .box .user .user-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.review-slider .box .user .user-info span {
    font-size: 1.4rem;
    color: var(--text-light);
}

.review-slider .box p {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    text-transform: none;
}

.review-slider .swiper-pagination-bullet {
    background: var(--primary-color);
}

/* ============================================
   13. CONTACT SECTION
   ============================================ */
.contact {
    background: linear-gradient(180deg, #c7ddf0 0%, #b8d4eb 100%);
}

.contact .contact-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact .contact-map iframe {
    width: 100%;
    height: 50rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact .contact-details form {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact .contact-details form .inputBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact .contact-details form .inputBox input,
.contact .contact-details form input,
.contact .contact-details form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-dark);
    background: var(--light-bg);
    border: 0.2rem solid transparent;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact .contact-details form .inputBox input:focus,
.contact .contact-details form input:focus,
.contact .contact-details form textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
}

.contact .contact-details form textarea {
    resize: vertical;
    min-height: 15rem;
}

.contact .contact-details form .btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    cursor: pointer;
    border-radius: 0.5rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: var(--box-shadow);
}

.contact .contact-details form .btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: var(--box-shadow-hover);
}



/* ============================================
   14. FOOTER SECTION
   ============================================ */
.footer {
    background: var(--dark-bg);
    padding: 3rem 9%;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.footer .box h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.footer .box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 0.3rem;
    background: var(--primary-light);
    border-radius: 0.5rem;
}

.footer .box a {
    display: block;
    font-size: 1.5rem;
    color: var(--text-muted);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.footer .box a:hover {
    color: var(--primary-light);
    padding-left: 1rem;
}

.footer .box a i {
    margin-right: 1rem;
    color: var(--primary-light);
}

.footer .credit {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    color: var(--text-muted);
}

.footer .credit span {
    color: var(--primary-light);
    font-weight: 600;
}

/* ============================================
   15. WHATSAPP BUTTON
   ============================================ */
.whatsapp-button {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 2rem rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0.5rem 2rem rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0.5rem 3rem rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-button i {
    font-size: 3rem;
    color: var(--white);
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* ============================================
   16. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    
    .header {
        padding: 2rem 5%;
    }
    
    section {
        padding: 5rem 5%;
    }
    
    .main-heading {
        font-size: 3.5rem;
    }
    
    .heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    #menu-bars {
        display: initial;
    }
    
    .header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.3s ease;
    }
    
    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .header .navbar a {
        display: block;
        margin: 2rem;
        font-size: 2rem;
    }
    
    /* Mobile: Show service descriptions by default (no hover on touch devices) */
    .service .box .service-desc {
        max-height: 20rem;
        opacity: 1;
        margin-bottom: 1.5rem;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .heading {
        font-size: 2.5rem;
    }
    
    .contact .contact-details form .inputBox {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-button {
        width: 5rem;
        height: 5rem;
        bottom: 2rem;
        right: 2rem;
    }
    
    .whatsapp-button i {
        font-size: 2.5rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .heading {
        font-size: 2rem;
    }
    
    .stats .box,
    .service .box {
        padding: 2rem;
    }
}

/* ============================================
   17. ACCESSIBILITY & PERFORMANCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 0.3rem solid var(--primary-light);
    outline-offset: 0.3rem;
}

/* Smooth scrolling for reduced motion */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ============================================
   18. NAVIGATION DROPDOWN
   ============================================ */
.header .navbar .dropdown {
    position: relative;
    display: inline-block;
}

.header .navbar .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header .navbar .dropdown-toggle i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.header .navbar .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.header .navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 25rem;
    background: var(--dark-bg);
    border-radius: 0.5rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: all 0.3s ease;
    margin-top: 1rem;
    padding: 1rem 0;
}

.header .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header .navbar .dropdown-menu a {
    display: block;
    padding: 1rem 2rem;
    margin: 0;
    font-size: 1.5rem;
    color: var(--white);
    border-left: 0.3rem solid transparent;
}

.header .navbar .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-light);
    color: var(--primary-light);
}

/* ============================================
   19. HERO CONTENT OVERLAY
   ============================================ */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 100rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    text-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
    text-transform: none;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary, .btn-secondary {
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 0.5rem 2rem rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 3rem rgba(0, 102, 204, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 0.2rem solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-0.3rem);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   20. SECTION SUBTITLE
   ============================================ */
.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 4rem;
    text-transform: none;
}

/* ============================================
   21. SERVICE LINKS
   ============================================ */
.service .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.service .service-link:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

.service .service-link i {
    font-size: 1.3rem;
}

/* ============================================
   22. PORTFOLIO FILTERS
   ============================================ */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 5rem;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: translateY(-0.3rem);
    box-shadow: var(--box-shadow-hover);
}

.gallery .box.hide {
    display: none;
}

/* ============================================
   23. NEWS/INSIGHTS SECTION
   ============================================ */
.news {
    background: linear-gradient(180deg, #c7ddf0 0%, #bbd6ed 100%);
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--box-shadow-hover);
}

.news-image {
    position: relative;
    height: 25rem;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.news-content {
    padding: 3rem;
}

.news-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--text-muted);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-content h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.news-content p {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-transform: none;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

/* ============================================
   24. CAREERS SECTION
   ============================================ */
.careers {
    background: linear-gradient(180deg, #bbd6ed 0%, #b0d0e8 100%);
}

.careers-container {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 4rem;
    margin-top: 5rem;
    align-items: start;
}

.careers-intro {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 10rem;
}

.careers-intro h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-light);
    padding: 1.5rem 0;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.05);
    text-transform: none;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 2rem;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.job-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border-left: 0.5rem solid transparent;
}

.job-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(1rem);
    box-shadow: var(--box-shadow-hover);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-header h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.job-type {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.job-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-details p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.job-details i {
    color: var(--primary-color);
}

.job-description {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-transform: none;
}

.apply-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.apply-btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: var(--box-shadow-hover);
}

/* ============================================
   25. ENHANCED CONTACT SECTION
   ============================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--box-shadow-hover);
}

.info-card i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-card h4 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    font-size: 1.4rem;
    color: var(--text-light);
    text-transform: none;
}

.form-select {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-dark);
    background: var(--light-bg);
    border: 0.2rem solid transparent;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select:focus {
    /* ============================================
       PORTFOLIO HERO SECTION
       ============================================ */
    .portfolio-hero {
        min-height: 50vh;
        background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 15rem 9% 8rem;
        position: relative;
        overflow: hidden;
    }

    .portfolio-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 40rem;
        height: 40rem;
        background: radial-gradient(circle, rgba(255, 210, 63, 0.2), transparent);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .portfolio-hero-content h1 {
        font-size: 6rem;
        color: var(--white);
        margin-bottom: 2rem;
        font-weight: 700;
        text-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
    }

    .portfolio-hero-content p {
        font-size: 2rem;
        color: var(--white);
        opacity: 0.9;
        text-transform: none;
    }

    border-color: var(--primary-color);
    background: var(--white);
}

/* ============================================
   26. RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .careers-container {
        grid-template-columns: 1fr;
    }
    
    .careers-intro {
        position: static;
    }
    
    .header .navbar .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.05);
        margin: 0;
        display: none;
    }
    
    .header .navbar .dropdown.active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 30rem;
    }
    
    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 30rem;
    }
}

@media (max-width: 450px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}
