/* ========================================
   Rudraksh Techno India - Main Stylesheet
   ======================================== */

/* ----------------------------------------
   CSS Variables & Reset
   ---------------------------------------- */
:root {
    --primary: #0066FF;
    --secondary: #FF6B35;
    --dark: #0A1929;
    --light: #F5F7FA;
    --white: #FFFFFF;
    --gray: #64748B;
    --success: #10B981;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ----------------------------------------
   Custom Scrollbar
   ---------------------------------------- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ----------------------------------------
   Utility Classes
   ---------------------------------------- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(0,102,255,0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-header h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0,102,255,0.3);
}

.btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,102,255,0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255,107,53,0.3);
}

.btn-secondary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255,107,53,0.4);
}

/* ----------------------------------------
   Loader with Logo
   ---------------------------------------- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    animation: pulse 1.5s infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2px;
}

.loader-text span {
    color: var(--primary);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ----------------------------------------
   Navigation - Desktop First Approach
   ---------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    animation: slideDown 0.8s ease;
    overflow: visible;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo - FIXED - No Cut */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    overflow: visible;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-text img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin-left: 0;
}

.logo-text span {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Desktop specific - overlap effect */
@media (min-width: 993px) {
    .logo-text:first-of-type {
        position: relative;
        z-index: 2;
        margin-right: -8px;
    }
    
    .logo-text:last-of-type {
        position: relative;
        z-index: 1;
    }
}

/* Navbar base */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li a.active {
    color: var(--primary);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: 0.6rem 1.8rem !important;
    border-radius: 50px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,255,0.3);
}

/* Hide contact link */
.nav-links li a[href="#contact"] {
    display: none;
}

/* =======================
   DESKTOP DROPDOWN
======================= */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    min-width: 220px;
    display: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    overflow: hidden;
    padding: 0.5rem 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown li a {
    padding: 0.7rem 1.5rem;
    color: var(--dark);
    font-size: 0.9rem;
    display: block;
}

.dropdown li a:hover {
    background: var(--light);
    color: var(--primary);
}

.nav-links li:hover .dropdown {
    display: block;
}

/* Menu Button - Hidden on Desktop */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 120px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(0,102,255,0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255,107,53,0.2);
    z-index: -1;
}

.hero p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeInRight 1s ease;
    position: relative;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
}

/* ========================================
   FLOATING CARDS - FIXED ANIMATION
   ======================================== */

/* Floating Cards - Desktop */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #4FC3F7;
    border-radius: 20px;
    box-shadow: 0 0 6px #4FC3F7, 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s infinite ease-in-out;
    color: white;
    transition: transform 0.1s ease;
    will-change: transform;
}

.floating-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.floating-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin: 0;
}

/* Float Animation - Desktop */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-1 {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(to bottom, #ff0084, #0066FF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

/* ----------------------------------------
   Stats Section
   ---------------------------------------- */
.stats-section {
    padding: 4rem 5%;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,102,255,0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-block {
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
}

.stat-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-block-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-block-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.stat-block-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ----------------------------------------
   Services Section
   ---------------------------------------- */
.services-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.service-card-modern:hover::before {
    transform: translateX(0);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: white;
    font-style: normal;
}

.service-live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.service-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features-list li {
    margin: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.service-features-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
}

.service-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
    color: var(--secondary);
}

/* ----------------------------------------
   Clients Section
   ---------------------------------------- */
.clients-section {
    padding: 4rem 5%;
    background: var(--white);
}

.clients-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.client-card-modern {
    background: var(--light);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.client-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-icon-modern {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.client-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.8rem;
}

.status-active {
    background: rgba(16,185,129,0.1);
    color: var(--success);
}

.status-pipeline {
    background: rgba(255,107,53,0.1);
    color: var(--secondary);
}

/* ----------------------------------------
   Team Section
   ---------------------------------------- */
.team-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--light), white);
}

.team-stats-modern {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0;
}

.team-stat-modern {
    text-align: center;
}

.team-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.team-stat-label {
    color: var(--gray);
    font-size: 0.95rem;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.team-member-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-member-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.team-member-modern:hover::before {
    transform: scaleX(1);
}

.team-member-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.member-avatar-modern {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    border: 4px solid white;
    box-shadow: var(--shadow-sm);
}

.team-member-modern h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.team-member-modern p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.member-experience {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* ----------------------------------------
   Industry Solutions Section
   ---------------------------------------- */
.industries-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--dark), #1a3650);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,107,53,0.1) 0%, transparent 50%);
}

.industries-section .section-header h2 {
    color: white;
}

.industries-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.industry-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.industry-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.industry-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----------------------------------------
   Location Section
   ---------------------------------------- */
.location-section {
    padding: 4rem 5%;
    background: var(--white);
}

.location-container-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.location-info-modern {
    background: var(--light);
    border-radius: 30px;
    padding: 2.5rem;
}

.location-info-modern h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.location-detail-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--gray);
}

.location-detail-modern i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.location-highlight-modern {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
}

.location-highlight-modern strong {
    font-size: 1.1rem;
}

.location-highlight-modern p {
    font-size: 0.95rem;
    color: var(--gray);
}

.map-container-modern {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ----------------------------------------
   Contact Section - Hidden
   ---------------------------------------- */
#contact {
    display: none;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer-modern {
    padding: 4rem 5% 2rem;
    background: var(--dark);
    color: white;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo-text span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.7rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-links h3 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-newsletter input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.1);
    color: white;
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-newsletter button {
    width: 100%;
    padding: 0.8rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Footer Links Grid - Two Columns */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col li a:hover {
    color: #FF6B35;
    padding-left: 5px;
}

/* Footer Brochure Section */
.footer-brochure {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 0;
}

.footer-brochure:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.footer-brochure h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: white;
}

.footer-brochure p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.brochure-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,102,255,0.3);
    gap: 1rem;
}

.brochure-btn i {
    font-size: 1.2rem;
}

/* Explore More Button */
.explore-more-container {
    text-align: center;
    margin-top: 3rem;
}

.explore-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,102,255,0.3);
}

.explore-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,102,255,0.4);
    gap: 1rem;
}

.explore-more-btn i {
    transition: transform 0.3s ease;
}

.explore-more-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* ========================================
   BREAKPOINT 1: TABLET LANDSCAPE (max-width: 992px)
   ======================================== */
@media (max-width: 992px) {
    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        gap: 2rem;
    }
    
    .hero p {
        margin: 0 auto 2rem;
        max-width: 600px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    /* Floating Cards - Tablet Landscape */
    .floating-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 85%;
        max-width: 300px;
        margin: 0 auto;
        animation: floatMobile 3s infinite ease-in-out;
    }
    
    /* Mobile-specific float animation - SMOOTHER */
    @keyframes floatMobile {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
    }
    
    .card-1, .card-2, .card-3 {
        animation-delay: 0s;
    }
    
    .card-2 {
        animation-delay: 0.5s;
    }
    
    .card-3 {
        animation-delay: 1s;
    }
    
    /* Stats */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Team */
    .team-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Location */
    .location-container-modern {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    /* Logo - No overlap on tablet */
    .logo-text:first-of-type {
        position: static;
        margin-right: 0;
    }
    
    .logo-text:last-of-type {
        position: static;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

/* ========================================
   BREAKPOINT 2: TABLET PORTRAIT / MOBILE LANDSCAPE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.6rem 1.2rem;
        overflow: visible;
    }
    
    /* Mobile Logo - FIXED - No Cut */
    .logo {
        gap: 5px;
        padding: 0;
        margin: 0;
        overflow: visible;
    }
    
    .logo-text:first-of-type {
        margin-right: 0;
        position: static;
        left: auto;
        flex-shrink: 0;
    }
    
    .logo-text:first-of-type img {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        margin-left: 0;
        display: block;
    }
    
    .logo-text:last-of-type {
        position: static;
        left: auto;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .logo-text:last-of-type span {
        font-size: 1rem;
        font-weight: 700;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 1px;
        white-space: nowrap;
        display: inline-block;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 20px 20px;
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 0.7rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .nav-links li a::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 0.5rem;
    }
    
    /* Dropdown Mobile */
    .dropdown {
        position: static;
        display: none !important;
        box-shadow: none;
        border: none;
        background: var(--light);
        border-radius: 8px;
        margin-top: 0.3rem;
        padding: 0.3rem 0;
    }
    
    .nav-links li.active .dropdown {
        display: block !important;
    }
    
    .dropdown li a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero {
        padding: 100px 5% 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Floating Cards - Tablet Portrait */
    .floating-card {
        position: relative !important;
        width: 90%;
        max-width: 280px;
        margin: 0 auto;
        animation: floatMobile 3s infinite ease-in-out;
    }
    
    @keyframes floatMobile {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-12px); }
    }
    
    .card-1, .card-2, .card-3 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        animation-delay: 0s;
    }
    
    .card-2 {
        animation-delay: 0.5s;
    }
    
    .card-3 {
        animation-delay: 1s;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Stats */
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-block {
        padding: 1.5rem 1rem;
    }
    
    .stat-block-number {
        font-size: 1.8rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card-modern {
        padding: 2rem 1.5rem;
    }
    
    /* Clients */
    .clients-grid-modern {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    /* Team */
    .team-grid-modern {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .team-stats-modern {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .team-stat-number {
        font-size: 2.2rem;
    }
    
    /* Industries */
    .industries-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .industry-card {
        padding: 2rem 1.5rem;
    }
    
    /* Location */
    .location-info-modern {
        padding: 1.5rem;
    }
    
    .map-container-modern {
        height: 300px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-about p {
        max-width: 90%;
        margin: 1rem auto 1.5rem;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }
    
    .footer-links ul li {
        margin-bottom: 0;
    }
    
    .footer-links h3 {
        margin-right: 0;
        text-align: center;
    }
    
    .footer-brochure {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-links-grid {
        gap: 1rem;
    }
    
    .footer-col li a {
        font-size: 0.9rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    /* Explore More */
    .explore-more-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   BREAKPOINT 3: MOBILE PORTRAIT (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-stat-number {
        font-size: 1.6rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
    
    /* Logo - Small Mobile */
    .logo-text:first-of-type {
        margin-right: -5px;
    }
    
    .logo-text:first-of-type img {
        width: 32px;
        height: 32px;
    }
    
    .logo-text:last-of-type span {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    /* Stats */
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-block-number {
        font-size: 1.5rem;
    }
    
    .stat-block-label {
        font-size: 0.75rem;
    }
    
    .stat-block-icon {
        font-size: 2rem;
    }
    
    /* Service Cards */
    .service-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .service-card-modern h3 {
        font-size: 1.2rem;
    }
    
    .service-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .service-features-list li {
        font-size: 0.9rem;
    }
    
    .service-live-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }
    
    /* Team */
    .team-grid-modern {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    
    .member-avatar-modern {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .team-member-modern h4 {
        font-size: 1.1rem;
    }
    
    .team-member-modern p {
        font-size: 0.85rem;
    }
    
    .team-stat-number {
        font-size: 2rem;
    }
    
    .team-stat-label {
        font-size: 0.85rem;
    }
    
    /* Industry Cards */
    .industry-card {
        padding: 1.5rem 1rem;
    }
    
    .industry-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .industry-card h3 {
        font-size: 1.1rem;
    }
    
    .industry-card p {
        font-size: 0.85rem;
    }
    
    /* Client Cards */
    .client-card-modern {
        padding: 1.2rem 1rem;
    }
    
    .client-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Location */
    .location-info-modern h3 {
        font-size: 1.5rem;
    }
    
    .location-detail-modern {
        font-size: 0.9rem;
        gap: 0.8rem;
    }
    
    .location-detail-modern i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .location-highlight-modern {
        padding: 1rem;
    }
    
    .location-highlight-modern strong {
        font-size: 0.95rem;
    }
    
    .map-container-modern {
        height: 250px;
    }
    
    /* Floating Cards - Mobile Portrait */
    .floating-card {
        max-width: 240px;
        padding: 0.6rem 0.8rem;
        gap: 0.5rem;
        animation: floatMobileSmall 3s infinite ease-in-out;
    }
    
    @keyframes floatMobileSmall {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    .floating-card h4 {
        font-size: 0.8rem;
    }
    
    .floating-card p {
        font-size: 0.7rem;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-modern {
        padding: 2.5rem 5% 1.5rem;
    }
    
    .footer-logo-text {
        font-size: 1rem;
    }
    
    .footer-logo-image {
        width: 35px;
        height: 35px;
    }
    
    .footer-about p {
        font-size: 0.85rem;
    }
    
    .footer-links h4 {
        font-size: 1rem;
    }
    
    .footer-links ul li a {
        font-size: 0.85rem;
    }
    
    .footer-newsletter input {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    .footer-newsletter button {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3 {
        margin-right: 0;
        text-align: center;
    }
    
    .footer-brochure {
        max-width: 250px;
    }
    
    .brochure-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    /* Explore More */
    .explore-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Container */
    .container {
        padding: 0 4%;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   EXTRA SMALL DEVICES (max-width: 360px)
   - Samsung Galaxy Fold etc.
   ======================================== */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .logo-text:last-of-type span {
        font-size: 0.75rem;
    }
    
    .logo-text:first-of-type img {
        width: 28px;
        height: 28px;
    }
    
    /* Floating Cards - Extra Small */
    .floating-card {
        max-width: 200px;
        padding: 0.4rem 0.6rem;
        animation: floatMobileSmall 3s infinite ease-in-out;
    }
    
    .floating-card h4 {
        font-size: 0.7rem;
    }
    
    .floating-card p {
        font-size: 0.6rem;
    }
    
    .card-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .stat-block {
        padding: 1rem 0.8rem;
    }
    
    .stat-block-number {
        font-size: 1.3rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .map-container-modern {
        height: 200px;
    }
    
    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }
}