/* ========================================
   JDIP Ltd - Main Stylesheet
   Colors: Primary #1a1a2e, Accent #EDAC09
   ======================================== */

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(237, 172, 9, 0.2);
    border-top-color: #EDAC09;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Top Bar */
.top-bar {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    color: #EDAC09;
    margin-right: 6px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 15px;
    font-size: 14px;
}

.top-bar-right a:hover {
    color: #EDAC09;
}

/* Header */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo img {
    height: 60px;
    transition: height 0.3s ease;
}

.logo-sticky {
    display: none;
}

.site-header.scrolled .logo-default {
    display: none;
}

.site-header.scrolled .logo-sticky {
    display: block;
}

.nav-list {
    display: flex;
    gap: 0;
}

.nav-list>li {
    position: relative;
}

.nav-list>li>a {
    display: block;
    padding: 18px 18px;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-list>li>a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #EDAC09;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list>li:hover>a::after,
.nav-list>li.active>a::after {
    transform: scaleX(1);
}

.nav-list>li.active>a,
.nav-list>li:hover>a {
    color: #EDAC09;
}

.nav-list>li>a i {
    font-size: 10px;
    margin-left: 4px;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-top: 3px solid #EDAC09;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 0 0 8px 8px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown li a:hover {
    background: #f8f8fa;
    color: #EDAC09;
    padding-left: 25px;
}

.dropdown li:last-child a {
    border-bottom: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1a1a2e;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Menu Contact & Social */
.mobile-menu-footer {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.78);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content .subtitle {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #EDAC09;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-slide.active .hero-content h1 {
    animation: fadeInUpHero 0.8s ease forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInUpHero {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #EDAC09;
    color: #fff;
}

.btn-primary:hover {
    background: #d49a08;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 172, 9, 0.3);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    margin-left: 15px;
}

.btn-outline:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Section Styles */
.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #EDAC09;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: #EDAC09;
    margin: 15px auto 0;
    border-radius: 2px;
}

.bg-light {
    background: #f8f9fc;
}

.bg-dark {
    background: #1a1a2e;
    color: #fff;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #EDAC09;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: rgba(237, 172, 9, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #EDAC09;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    background: #EDAC09;
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #EDAC09;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(237, 172, 9, 0.3);
}

.experience-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    display: block;
}

.experience-badge .text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text .label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #EDAC09;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #EDAC09;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-card .icon {
    font-size: 36px;
    color: #EDAC09;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.value-card p {
    color: #666;
    font-size: 14px;
}

/* Projects Gallery */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card .project-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    background: rgba(26, 26, 46, 0.85);
    display: flex;
    align-items: flex-end;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    background: rgba(26, 26, 46, 0.92);
}

.project-card h3 {
    color: #fff;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
}

.project-card .location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-top: 4px;
}

/* Load More / Infinite Scroll */
.load-more-trigger {
    text-align: center;
    padding: 30px 0;
}

.load-more-spinner {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 3px solid #e0e0e0;
    border-top-color: #EDAC09;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.load-more-end {
    text-align: center;
    padding: 20px 0;
    color: #999;
    font-size: 14px;
}

.project-card.loading-in {
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s ease forwards;
}

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

/* Stats Section */
.stats-section {
    background: #1a1a2e;
    padding: 80px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #EDAC09;
    display: block;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.85);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: #EDAC09;
}

.breadcrumb .current {
    color: #EDAC09;
}

/* Content Pages */
.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.content-section p {
    color: #555;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
}

/* Management / Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.team-card-body {
    padding: 30px;
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.team-card .designation {
    color: #EDAC09;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.team-card .qualification {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.team-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-cards {
    display: grid;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card .icon {
    width: 55px;
    height: 55px;
    background: rgba(237, 172, 9, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #EDAC09;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.contact-info-card p {
    color: #666;
    font-size: 14px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #f8f9fc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EDAC09;
    background: #fff;
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Footer */
.site-footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.75);
}

.footer-main {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(10);
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #EDAC09;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links a:hover {
    color: #EDAC09;
    padding-left: 5px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-contact-info i {
    color: #EDAC09;
    margin-right: 8px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-social a:hover {
    background: #EDAC09;
    border-color: #EDAC09;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #EDAC09;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(237, 172, 9, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #d49a08;
    transform: translateY(-3px);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Sidebar for inner pages */
.inner-page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    padding: 80px 0;
}

.sidebar .widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.sidebar .widget h4 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EDAC09;
}

.sidebar .widget ul li {
    margin-bottom: 8px;
}

.sidebar .widget ul li a {
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.sidebar .widget ul li a:hover {
    color: #EDAC09;
}

.sidebar .widget ul li a.active {
    color: #EDAC09;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inner-page-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-left span:last-child {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list>li>a {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list>li>a::after {
        display: none;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 15px;
        display: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    /* Mobile Menu Footer - Contact & Social */
    .mobile-menu-footer {
        display: block;
        border-top: 1px solid #eee;
        padding-top: 20px;
        margin-top: 20px;
    }

    .mobile-menu-footer .mobile-contact {
        margin-bottom: 18px;
    }

    .mobile-menu-footer .mobile-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        color: #555;
        font-size: 14px;
    }

    .mobile-menu-footer .mobile-contact a:hover {
        color: #EDAC09;
    }

    .mobile-menu-footer .mobile-contact i {
        color: #EDAC09;
        font-size: 16px;
        width: 20px;
        text-align: center;
    }

    .mobile-menu-footer .mobile-social {
        display: flex;
        gap: 10px;
    }

    .mobile-menu-footer .mobile-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1a1a2e;
        font-size: 16px;
    }

    .mobile-menu-footer .mobile-social a:hover {
        background: #EDAC09;
        color: #fff;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .stat-item .number {
        font-size: 36px;
    }

    .projects-grid-v2 {
        grid-template-columns: 1fr;
    }


    .service-block,
    .service-block-reverse {
        grid-template-columns: 1fr;
    }

    .service-block-reverse .service-block-img {
        order: 0;
    }
}

/* ===========================
   Team Card Images
   =========================== */
.team-card-img {
    height: 280px;
    overflow: hidden;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-img img {
    transform: scale(1.05);
}

/* ===========================
   Team Profile - Horizontal
   =========================== */
.team-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 45px;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.team-profile:hover {
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
}

.team-profile-img {
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.team-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-profile:hover .team-profile-img img {
    transform: scale(1.04);
}

.team-profile-content {
    padding: 35px 40px 35px 0;
}

.team-profile-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.team-profile-content .designation {
    color: #EDAC09;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.team-profile-content .qualification {
    color: #888;
    font-size: 13px;
    margin-bottom: 18px;
    display: block;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.team-profile-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.team-profile-reverse {
    direction: rtl;
}

.team-profile-reverse>* {
    direction: ltr;
}

.team-profile-reverse .team-profile-content {
    padding: 35px 0 35px 40px;
}

@media (max-width: 768px) {

    .team-profile,
    .team-profile-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .team-profile-img {
        min-height: 300px;
    }

    .team-profile-content,
    .team-profile-reverse .team-profile-content {
        padding: 25px;
    }
}

/* ===========================
   Services V2 - Homepage Cards
   =========================== */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

.services-grid-v2 .service-card-v2:nth-child(-n+3) {
    grid-column: span 2;
}

.services-grid-v2 .service-card-v2:nth-child(4) {
    grid-column: 1 / span 3;
}

.services-grid-v2 .service-card-v2:nth-child(5) {
    grid-column: 4 / span 3;
}

@media (max-width: 992px) {
    .services-grid-v2 {
        grid-template-columns: 1fr;
    }

    .services-grid-v2 .service-card-v2:nth-child(-n+3),
    .services-grid-v2 .service-card-v2:nth-child(4),
    .services-grid-v2 .service-card-v2:nth-child(5) {
        grid-column: auto;
    }
}

.service-card-v2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.service-card-v2-img {
    height: 200px;
    overflow: hidden;
}

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

.service-card-v2:hover .service-card-v2-img img {
    transform: scale(1.08);
}

.service-card-v2-body {
    padding: 25px;
    position: relative;
}

.service-card-v2-icon {
    width: 50px;
    height: 50px;
    background: #EDAC09;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-top: -45px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(237, 172, 9, 0.3);
    margin-bottom: 15px;
}

.service-card-v2-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.service-card-v2-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card-v2-link {
    color: #EDAC09;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-card-v2:hover .service-card-v2-link {
    gap: 10px;
}

/* ===========================
   Service Blocks - Services Page
   =========================== */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}

.service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-block-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}

.service-block-reverse .service-block-img {
    order: 2;
}

.service-block-reverse .service-block-content {
    order: 1;
}

.service-block-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-block-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.service-block:hover .service-block-img img,
.service-block-reverse:hover .service-block-img img {
    transform: scale(1.03);
}

.service-block-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #EDAC09;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(237, 172, 9, 0.3);
}

.service-block-icon {
    width: 55px;
    height: 55px;
    background: rgba(237, 172, 9, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #EDAC09;
    margin-bottom: 18px;
}

.service-block-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.service-block-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
}

.service-features li i {
    color: #EDAC09;
    font-size: 14px;
}

/* ===========================
   Project Cards V2 - Clean
   =========================== */
.projects-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.project-card-v2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
}

.project-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.project-card-v2-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.project-card-v2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-v2:hover .project-card-v2-img img {
    transform: scale(1.06);
}

.project-card-v2-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(237, 172, 9, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card-v2:hover .project-card-v2-zoom {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.project-card-v2-info {
    padding: 18px 20px;
}

.project-card-v2-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.project-card-v2-info p {
    color: #888;
    font-size: 13px;
}

.project-card-v2-info p i {
    color: #EDAC09;
    margin-right: 4px;
}

/* ===========================
   Lightbox
   =========================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 80vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-info {
    margin-top: 20px;
    color: #fff;
}

.lightbox-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 5px;
}

.lightbox-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.lightbox-info p i {
    color: #EDAC09;
    margin-right: 5px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: #EDAC09;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .service-block,
    .service-block-reverse {
        grid-template-columns: 1fr;
    }

    .service-block-reverse .service-block-img {
        order: 0;
    }

    .service-block-img img {
        height: 250px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    overflow: hidden;
}

.clients-slider {
    position: relative;
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
}

.clients-slider::before,
.clients-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fc 0%, transparent 100%);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fc 0%, transparent 100%);
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scroll-clients 40s linear infinite;
    align-items: center;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 300px;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }

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