/* ========================================
   HOME PAGE STYLES - UPDATED
   ======================================== */

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--light);
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(36px, 8vw, 70px);
    font-weight: 800;
    letter-spacing: 0px;
    margin-bottom: 60px;
    line-height: 1.4;
}

.hero-content .subtitle {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-content .tagline {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 60px;
    text-transform: uppercase;
}

.slider-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    width: 40px;
    border-radius: 6px;
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: transparent;
    color: var(--light);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    border-color: white;
    color: black;
    background: white;
}

/* Stats Section */
.stats-section {
    padding: 100px 80px;
    background: var(--light);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat-card {
    background: #fafafa;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.stat-card:hover {
    background: var(--light);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 200;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 100px 80px;
    background: var(--dark);
    color: var(--light);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
    line-height: 1.3;
}

.section-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    font-weight: 300;
}

.section-text.highlight {
    color: var(--light);
    font-weight: 400;
    font-size: 18px;
}

/* ========================================
   PROJECTS SECTION - STATIC 3-COLUMN GRID
   ======================================== */

.projects-section {
    padding: 100px 80px;
    background: #fafafa;
}

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

.projects-header .section-label {
    color: var(--primary);
}

.projects-header .section-title {
    color: var(--dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: white;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

/* Overlay Text Styling */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 60px 25px 25px;
    display: flex;
    align-items: flex-end;
}

.overlay-text {
    color: white;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
    text-transform: uppercase;
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.video-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 40px;
    max-width: 1000px;
}

.video-content h2 {
    font-size: clamp(24px, 4vw, 64px);
    font-weight: 300;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 40px;
    letter-spacing: 0px;
}

.video-btn {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--dark);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.video-btn:hover {
    background: var(--dark);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========================================
   GLOBAL PRESENCE SECTION WITH LEAFLET MAP
   ======================================== */

.global-presence-section {
    background: #262626;
}

.map-container {
    position: relative;
    width: 100%;
}

/* Leaflet Map Container */
#global-map {
    width: 100%;
    height: 300px;
    background: #262626;
}

/* Overlay on top of map */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1000;
}

.overlay-top {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(to bottom, rgba(38, 38, 38, 0.9) 0%, transparent 100%);
}

.overlay-bottom {
    text-align: center;
    padding: 40px 40px 60px;
    background: linear-gradient(to top, rgba(38, 38, 38, 0.9) 0%, transparent 100%);
}

.overlay-bottom .cta-button {
    pointer-events: auto;
}

.map-overlay .section-title {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 300;
    line-height: 1.5;
    color: var(--light);
    margin: 15px 0 0 0;
    letter-spacing: 3px;
}

.map-overlay .presence-subtitle {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

.map-overlay .cta-button {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--primary);
    padding: 16px 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
}

.map-overlay .cta-button:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(253, 185, 19, 0.3);
}

/* Custom Leaflet Marker Styles */
.custom-marker {
    background: transparent;
    border: none;
}

.custom-marker .marker-pin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-marker .marker-pulse {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: leafletPulse 2s ease-out infinite;
}

/* Gold markers for India */
.gold-marker .marker-pin {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(253, 185, 19, 0.8);
}

.gold-marker .marker-pulse {
    background: rgba(253, 185, 19, 0.4);
}

/* White markers for International */
.white-marker .marker-pin {
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.white-marker .marker-pulse {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes leafletPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Tooltip Styles */
.map-tooltip {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid var(--primary) !important;
    color: var(--light) !important;
    font-size: 10px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 6px 12px !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.map-tooltip::before {
    border-top-color: var(--primary) !important;
}

.intl-tooltip {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.intl-tooltip::before {
    border-top-color: rgba(255, 255, 255, 0.5) !important;
}

/* Hide Leaflet attribution */
.leaflet-control-attribution {
    display: none !important;
}


/* ========================================
   HIGHLIGHTS SECTION
   ======================================== */

.highlights-section {
    position: relative;
    padding: 100px 80px;
    overflow: hidden;
}

.highlights-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.highlights-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2;
}

.highlights-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
}

.highlights-content h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
    letter-spacing: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* 2-column grid for 2 highlights */
.highlights-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.highlight-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.highlight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.highlight-text {
    padding: 30px;
    text-align: center;
}

.highlight-text p {
    font-size: 11px;
    letter-spacing: 2px;
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.highlight-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.highlight-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid black;
    color: var(--primary);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.highlight-btn:hover {
    background: black;
    color: white;
}

/* ========================================
   COMBINED WORK & HIGHLIGHTS SECTION
   ======================================== */

.combined-work-section {
    position: relative;
    padding: 100px 80px;
    overflow: hidden;
}

.combined-section-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.combined-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2;
}

.combined-section-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
}

.combined-section-content .projects-header {
    text-align: center;
    margin-bottom: 80px;
}

.combined-section-content .projects-header .section-label {
    color: var(--primary);
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.combined-section-content .projects-header .section-title {
    color: var(--dark);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 200;
    letter-spacing: 4px;
}

.combined-section-content .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 100px;
}

.combined-section-content .project-card {
    position: relative;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.combined-section-content .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(0,0,0,0.1);
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.combined-section-content .project-card:hover::before {
    border-color: var(--primary);
}

.combined-section-content .project-image {
    height: 420px;
}

.combined-section-content .project-image img {
    filter: grayscale(20%);
    transition: all 0.7s ease;
}

.combined-section-content .project-card:hover .project-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.combined-section-content .project-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.combined-section-content .overlay-text {
    padding: 35px 30px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.8;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.combined-section-content .project-card:hover {
    transform: none;
    box-shadow: none;
}

.portfolio-view-all {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.portfolio-view-all a {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    padding: 15px 0;
    position: relative;
    transition: color 0.3s ease;
}

.portfolio-view-all a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--dark);
    transform: scaleX(0.3);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.portfolio-view-all a:hover {
    color: var(--primary);
}

.portfolio-view-all a:hover::after {
    transform: scaleX(1);
    background: var(--primary);
}

.combined-section-content .highlights-header {
    text-align: center;
    margin-bottom: 80px;
}

.combined-section-content .highlights-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 200;
    color: var(--dark);
    letter-spacing: 4px;
}

/* Highlights grid inside combined section - matching portfolio style */
.combined-section-content .highlights-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 0;
    gap: 25px;
}

.combined-section-content .highlight-card {
    position: relative;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.combined-section-content .highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(0,0,0,0.1);
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.combined-section-content .highlight-card:hover::before {
    border-color: var(--primary);
}

.combined-section-content .highlight-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.7s ease;
}

.combined-section-content .highlight-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.combined-section-content .highlight-card:hover {
    transform: none;
    box-shadow: none;
}

.combined-section-content .highlight-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    padding: 80px 30px 35px;
    text-align: left;
    border-top: none;
}

.combined-section-content .highlight-text p {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 300;
}

.combined-section-content .highlight-text h3 {
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.combined-section-content .highlight-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s ease;
}

.combined-section-content .highlight-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

/* ========================================
   CLIENTS SCROLLING SECTION
   ======================================== */

.clients-section {
    padding: 100px 0;
    background: var(--light);
    text-align: center;
    overflow: hidden;
}

.clients-section h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    padding: 0 80px;
}

.clients-section p {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 60px;
    font-weight: 300;
    padding: 0 20px;
}

.logo-scroll-container {
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 30px 0;
}

.logo-scroll {
    display: flex;
    animation: scroll 40s linear infinite;
}

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

.logo-scroll:hover {
    animation-play-state: paused;
}

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

.client-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    display: block;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 100px 80px;
    background: var(--dark);
    color: var(--light);
}

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

.testimonials-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.testimonials-header hr {
    max-width: 100px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 60px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-item.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-text {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
    color: white;
}

.testimonial-author {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    font-weight: 400;
    flex-wrap: wrap;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
    pointer-events: none;
}

.testimonial-arrow {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 32px;
    color: white;
    pointer-events: all;
}

.testimonial-arrow:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* ========================================
   AWARDS SECTION
   ======================================== */

.awards-section {
    padding: 100px 80px;
    background: var(--light);
}

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

.awards-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: var(--dark);
}

.awards-header p {
    font-size: 16px;
    color: var(--gray);
    font-weight: 300;
}

.awards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.award-item {
    text-align: center;
    padding: 50px 30px;
    transition: all 0.4s ease;
    position: relative;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.award-item:hover::before {
    transform: scaleX(1);
}

.award-item:hover {
    background: var(--light);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.award-icon {
    width: 100%;
    height: 180px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.award-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-year {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.award-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--dark);
}

.award-org {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* ========================================
   WHY STED SECTION
   ======================================== */

.why-section {
    padding: 100px 80px;
    background: #fafafa;
}

.why-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.why-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(253, 185, 19, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: var(--primary);
}

.why-card:hover .why-icon svg {
    color: white;
}

.why-card h3 {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--dark);
}

.why-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 15px;
    font-weight: 300;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 100px 80px;
    background: black;
    text-align: center;
    color: var(--light);
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-section p {
    font-size: 16px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.9;
    font-weight: 300;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ======================================== */

@media (max-width: 1024px) {
    .stats-section,
    .about-section,
    .clients-section,
    .testimonials-section,
    .highlights-section,
    .awards-section,
    .why-section,
    .cta-section,
    .projects-section,
    .combined-work-section {
        padding: 80px 40px;
    }

    .combined-section-content .projects-grid {
        gap: 20px;
        margin-bottom: 60px;
    }

    .combined-section-content .project-image {
        height: 350px;
    }

    .projects-grid {
        gap: 25px;
    }

    .project-image {
        height: 280px;
    }

    .portfolio-view-all {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .combined-section-content .highlight-card img {
        height: 350px;
    }

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

    .why-grid,
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-card {
        padding: 50px 30px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */

@media (max-width: 768px) {
    .stats-section,
    .about-section,
    .clients-section,
    .testimonials-section,
    .highlights-section,
    .awards-section,
    .why-section,
    .cta-section,
    .projects-section,
    .combined-work-section {
        padding: 60px 20px;
    }

    /* ========================================
       CLIENT LOGOS - MOBILE FIX
       Bigger logos (40% increase), less space (30% reduction), faster scroll
       ======================================== */
    .client-logo {
        flex: 0 0 85px;
        padding: 0 3px;
    }

    .client-logo img {
        max-width: 80px;
        /* max-height removed to allow natural aspect ratio */
    }

    .logo-scroll {
        animation: scroll 20s linear infinite;
    }

    /* ========================================
       TESTIMONIALS - MOBILE FIX
       Center content, arrows at bottom
       ======================================== */
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    .testimonial-item {
        text-align: center;
    }

    .testimonial-text {
        text-align: center;
    }

    .testimonial-author {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

    .testimonial-author .divider {
        display: none;
    }

    .testimonial-nav {
        position: relative;
        top: auto;
        transform: none;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        width: auto;
    }

    .testimonial-arrow {
        font-size: 24px;
        width: 50px;
        height: 50px;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 50%;
    }

    /* ========================================
       MAP SECTION - MOBILE FIX
       Wider view to show more countries
       ======================================== */
    #global-map {
        height: 400px;
    }

    .map-tooltip {
        font-size: 8px !important;
        padding: 4px 8px !important;
    }

    /* Global Presence Mobile */
    .presence-header {
        padding: 60px 20px 30px;
    }

    .presence-header .section-title {
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .presence-subtitle {
        font-size: 10px;
    }

    .presence-footer {
        padding: 30px 20px 60px;
    }

    .combined-section-content .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .combined-section-content .project-image {
        height: 300px;
    }

    .combined-section-content .projects-header {
        margin-bottom: 50px;
    }

    .combined-section-content .projects-header .section-title {
        letter-spacing: 2px;
    }

    .portfolio-view-all {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .combined-section-content .highlights-header {
        margin-bottom: 50px;
    }

    .combined-section-content .highlights-header h2 {
        letter-spacing: 2px;
    }

    .combined-section-content .highlights-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .combined-section-content .highlight-card img {
        height: 300px;
    }

    .combined-section-content .highlight-text {
        padding: 60px 25px 30px;
    }

    .combined-section-content .highlight-text h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

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

    .project-image {
        height: 250px;
    }

    .project-overlay {
        padding: 40px 20px 20px;
    }

    .overlay-text {
        font-size: 12px;
    }

    .video-section {
        height: 70vh;
    }

    .video-content {
        padding: 0 20px;
    }

    .highlights-section {
        padding: 60px 20px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .highlight-card img {
        height: 200px;
    }

    .client-logo {
        flex: 0 0 120px;
        padding: 0 5px;
    }

    .client-logo img {
        max-width: 80px;
        max-height: 40px;
    }

    .stats-grid,
    .why-grid,
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-content {
        padding: 0 20px;
        min-height: 180px;
    }

    .testimonial-nav {
        position: relative;
        top: auto;
        transform: none;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .testimonial-arrow {
        font-size: 28px;
    }

    .stat-card {
        padding: 40px 25px;
    }

    .hero-content h1 {
        font-size: clamp(32px, 7vw, 50px);
        margin-bottom: 40px;
    }

    .hero-content .tagline {
        margin-bottom: 40px;
    }

    .cta-button {
        padding: 16px 40px;
    }

    .slider-nav {
        bottom: 40px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .why-section .section-title {
        margin-bottom: 40px;
    }

    .award-icon {
        height: 150px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
   ======================================== */

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .hero-content .tagline {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 11px;
    }

    .reel-card {
        flex: 0 0 260px;
    }

    .reel-image {
        height: 180px;
    }

    .projects-reel {
        animation-duration: 35s;
    }

    .reel-progress-bar {
        animation-duration: 35s;
    }

    .stat-number {
        font-size: 42px;
    }

    .section-title {
        font-size: 24px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-author {
        font-size: 11px;
        gap: 10px;
    }

    .why-card,
    .award-item {
        padding: 40px 20px;
    }

    .why-card h3,
    .award-title {
        font-size: 16px;
    }
}
