/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --border: #e5e5e5;
    --card-bg: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --border: #404040;
    --card-bg: #2d2d2d;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

/* Navigation */
.navbar {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 20px;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-logo-img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    margin: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.45rem 0.7rem;
    border-radius: 6px;
    white-space: nowrap;
}

.btn-book-now {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white !important;
    padding: 0.45rem 1rem !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 0.88rem !important;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
    transition: all 0.25s ease !important;
    white-space: nowrap;
    margin-left: 0.3rem;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(37, 99, 235, 0.45);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent)) !important;
    color: white !important;
    background-color: unset;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: var(--bg-secondary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.theme-toggle {
    background: linear-gradient(135deg, #ff9933, #ff6600);
    border: 1.5px solid #ffd700;
    padding: 0.38rem 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 2px 6px rgba(255, 102, 0, 0.3);
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.theme-toggle:hover {
    background: linear-gradient(135deg, #ff6600, #ff9933);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.5);
    transform: translateY(-1px);
}

.theme-toggle::after {
    content: "जय श्री राम";
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.theme-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    display: block;
}

[data-theme="dark"] .light-theme-icon {
    display: inline-block;
}

[data-theme="dark"] .dark-theme-icon {
    display: none;
}

[data-theme="light"] .light-theme-icon {
    display: none;
}

[data-theme="light"] .dark-theme-icon {
    display: inline-block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 70px 20px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

[data-theme="dark"] .hero::before {
    opacity: 0.3;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.hero .btn {
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #ffffff !important;
    padding: 0.7rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
    letter-spacing: 0.5px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn i {
    font-size: 1.2rem;
}

/* Section Styles */
.section {
    padding: 35px 20px;
    background-color: var(--bg-secondary);
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section h2 i {
    color: var(--accent);
}

/* About Section */
.about-content-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-main h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-main p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.about-feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

.about-stats-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.stat-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 700;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--accent);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-card p {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.view-details {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.view-details i {
    transition: transform 0.3s ease;
}

.service-card:hover .view-details i {
    transform: translateX(5px);
}

/* Slider Container */
.slider-container {
    position: relative;
    padding: 0 60px;
}

.slider-container-full {
    position: relative;
    padding: 0 60px;
    width: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* Gallery Section with Tabs */
.gallery-section {
    background-color: var(--bg-secondary);
}

.gallery-section h2 {
    padding: 0 20px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 20px;
}

.gallery-tab {
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.gallery-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.gallery-tab.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

.gallery-tab-content {
    display: none;
}

.gallery-tab-content.active {
    display: block;
}

/* Gallery Slider */
.gallery-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    min-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    position: relative;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Video Slider */
.video-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.video-slider::-webkit-scrollbar {
    display: none;
}

.video-item {
    min-width: 350px;
    flex-shrink: 0;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    background-color: var(--accent);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.video-info i {
    margin-right: 0.3rem;
}

/* Shorts Slider */
.shorts-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.shorts-slider::-webkit-scrollbar {
    display: none;
}

.short-item {
    min-width: 220px;
    flex-shrink: 0;
    text-align: center;
}

.short-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.short-thumbnail:hover {
    transform: scale(1.05);
}

.short-thumbnail img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.short-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.short-thumbnail:hover .short-overlay {
    opacity: 1;
}

.short-overlay i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.short-views {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.short-item h4 {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 800;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    background-color: var(--card-bg);
    padding: 2rem 1.8rem 1.6rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 6px 24px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px var(--shadow);
    border-color: var(--accent);
}

.team-card:hover::before {
    opacity: 1;
}

/* Avatar wrapper */
.team-card-avatar-wrap {
    position: relative;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.team-card-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(var(--accent), var(--accent-hover), var(--accent));
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: spinGlow 3s linear infinite;
}

.team-card:hover .team-card-glow {
    opacity: 1;
}

@keyframes spinGlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.team-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--card-bg);
    position: relative;
    z-index: 1;
    display: block;
    box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}

.team-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* Role badge */
.team-role {
    margin-bottom: 0.9rem;
}

.team-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.team-bio-preview {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-social a {
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--accent);
}

/* ── More Details Button ── */
.team-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    padding: 0.62rem 1.5rem;
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

.team-more-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.45s ease;
}

.team-more-btn:hover::before {
    left: 100%;
}

.team-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37,99,235,0.45);
}

.team-more-btn:active {
    transform: translateY(0);
}

.team-btn-arrow {
    transition: transform 0.25s ease;
}

.team-more-btn:hover .team-btn-arrow {
    transform: translateX(4px);
}

/* ──────────────────────────────────────────
   Team Modal
────────────────────────────────────────── */
.team-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: tmFadeIn 0.25s ease;
}

.team-modal-overlay.is-open {
    display: flex;
}

@keyframes tmFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.team-modal-box {
    background: var(--card-bg);
    border-radius: 20px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: tmSlideUp 0.3s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes tmSlideUp {
    from { transform: translateY(40px) scale(0.96); opacity: 0; }
    to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* Scrollbar style inside modal */
.team-modal-box::-webkit-scrollbar { width: 5px; }
.team-modal-box::-webkit-scrollbar-track { background: transparent; }
.team-modal-box::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

.team-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 10;
}

.team-modal-close:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: rotate(90deg);
}

/* Modal header banner */
.tm-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: 2.5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tm-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.tm-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.tm-avatar-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 4px;
    background: rgba(255,255,255,0.35);
    display: inline-flex;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.tm-avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.tm-header h2 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tm-position {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.28rem 0.9rem;
    border-radius: 50px;
    position: relative;
    z-index: 2;
}

/* Modal body */
.tm-body {
    padding: 1.8rem 2rem 2rem;
    margin-top: -2rem;
}

/* Bio card */
.tm-bio-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.5rem;
}

.tm-bio-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Info rows */
.tm-info-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.93rem;
}

.tm-info-row:last-child {
    border-bottom: none;
}

.tm-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.tm-info-label {
    font-weight: 800;
    color: var(--text-primary);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tm-info-value {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.93rem;
}

/* Social row */
.tm-social-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tm-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    color: #fff;
}

.tm-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    opacity: 0.92;
}

.tm-social-btn.linkedin  { background: #0077b5; }
.tm-social-btn.whatsapp  { background: #25d366; }
.tm-social-btn.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* Skills section inside modal */
.tm-section-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--accent);
    margin: 1.4rem 0 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tm-skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.tm-skill-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    background: var(--bg-secondary);
    color: var(--accent);
    border: 1.5px solid var(--accent);
    letter-spacing: 0.3px;
    transition: background 0.2s, color 0.2s;
}

.tm-skill-tag:hover {
    background: var(--accent);
    color: #fff;
}

/* Connect Section */
.tm-portfolio-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.4rem;
    padding: 0.78rem 2rem;
    width: 100%;
    background: var(--bg-secondary);
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.tm-portfolio-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.tm-portfolio-btn:hover::before {
    opacity: 1;
}

.tm-portfolio-btn:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37,99,235,0.35);
}

.tm-portfolio-btn i,
.tm-portfolio-btn span {
    position: relative;
    z-index: 1;
}

.tm-ext-icon {
    font-size: 0.78rem;
    opacity: 0.75;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

/* Connect CTA */
.tm-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.6rem;
    padding: 0.8rem 2rem;
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(37,99,235,0.35);
    text-decoration: none;
}

.tm-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.5);
}

/* ──────────────────────────────────────────
   Responsive adjustments
────────────────────────────────────────── */
@media (max-width: 540px) {
    .team-modal-box {
        border-radius: 14px;
        max-height: 95vh;
    }
    .tm-header {
        padding: 2rem 1.2rem 3.5rem;
    }
    .tm-body {
        padding: 1.5rem 1.2rem 1.5rem;
    }
    .tm-avatar-ring {
        width: 90px;
        height: 90px;
    }
    .tm-header h2 {
        font-size: 1.35rem;
    }
    .tm-social-row {
        justify-content: center;
    }
    .team-more-btn {
        font-size: 0.85rem;
        padding: 0.55rem 1rem;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.contact-item p {
    color: var(--text-secondary);
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
    font-weight: 600;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.3rem;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.contact-item p {
    color: var(--text-secondary);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    z-index: 9999;
    animation: slideIn 0.5s ease;
    box-shadow: 0 5px 20px var(--shadow);
}

.notification.success {
    background-color: #10b981;
    color: white;
}

.notification.error {
    background-color: #ef4444;
    color: white;
}

.notification i {
    margin-right: 0.5rem;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 20px var(--shadow);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-contact-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px var(--shadow);
    }
    50% {
        box-shadow: 0 5px 30px var(--accent);
    }
}

/* Fullscreen Image Viewer */
.fullscreen-viewer {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.viewer-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.viewer-close:hover {
    color: var(--accent);
}

.viewer-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.viewer-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.viewer-info {
    margin-top: 1.5rem;
    color: white;
}

.viewer-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.viewer-info p {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Video Player */
.video-player-content {
    max-width: 90%;
    width: 1200px;
}

.player-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
}

.video-player-content video {
    width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

/* Shorts Player */
.shorts-player-content {
    max-width: 90%;
    width: 500px;
}

.shorts-player-content .video-container {
    aspect-ratio: 9/16;
    max-height: 85vh;
}

.shorts-player-content video {
    width: 100%;
    max-height: 85vh;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .viewer-close {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }

    .viewer-info h3 {
        font-size: 1.3rem;
    }

    .viewer-info p {
        font-size: 1rem;
    }

    .player-title {
        font-size: 1.3rem;
    }

    .video-player-content {
        width: 95%;
    }

    .shorts-player-content {
        width: 95%;
        max-width: 400px;
    }
    
    .video-container {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .viewer-close {
        font-size: 2rem;
        top: 10px;
        right: 15px;
    }

    .viewer-info h3 {
        font-size: 1.1rem;
    }

    .viewer-info p {
        font-size: 0.9rem;
    }

    .player-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .shorts-player-content {
        max-width: 350px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--card-bg);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
}

.contact-modal-content {
    max-width: 600px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.modal-content ul {
    list-style: none;
    padding-left: 0;
}

.modal-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 600;
}

.modal-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
}

/* Contact Modal Grid */
.contact-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-modal-item {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
}

.contact-modal-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-modal-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.contact-modal-item:hover .contact-modal-icon {
    transform: scale(1.1);
}

.contact-modal-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-modal-item p {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 3rem 20px 1rem;
    border-top: 2px solid var(--border);
}

/* Footer Profile Card */
.footer-profile-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.profile-avatar {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.profile-info {
    color: white;
    position: relative;
    z-index: 1;
}

.profile-info h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    opacity: 0.95;
}

.profile-desc {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.profile-social {
    display: flex;
    gap: 1rem;
}

.profile-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.profile-social a:hover {
    background: white;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.footer-section p {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-contact i {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-weight: 700;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        position: relative;
        padding: 1rem 15px;
    }

    .logo {
        order: 1;
        flex: 1;
        font-size: 1.5rem;
    }

    .nav-right {
        order: 2;
        gap: 0.8rem;
    }

    .theme-toggle {
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        order: 3;
        margin-top: 1rem;
        background-color: var(--card-bg);
        border-radius: 8px;
        padding: 0.5rem 0;
        box-shadow: 0 4px 12px var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: flex;
        padding: 1rem 1.2rem;
        width: 100%;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
        border-radius: 0;
        background: transparent;
    }
    
    .nav-links a:hover {
        background: var(--bg-secondary);
    }

    .nav-links .btn-book-now {
        margin: 0.8rem 1.2rem;
        display: inline-flex;
        width: calc(100% - 2.4rem);
        justify-content: center;
        border-radius: 50px !important;
        background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
        color: white !important;
        text-align: center;
        border: none !important;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .hero {
        padding: 50px 15px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .btn {
        padding: 0.65rem 1.6rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 35px 15px;
    }

    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .section h2 i {
        font-size: 2rem;
    }

    .about-content-new,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .about-stats-new {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .gallery-tabs {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .gallery-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .slider-container-full {
        padding: 0 50px;
    }

    .slider-btn.prev {
        left: 5px;
    }

    .slider-btn.next {
        right: 5px;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .slider-container {
        padding: 0 45px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-item,
    .video-item {
        min-width: 280px;
    }

    .gallery-item img,
    .video-thumbnail img {
        height: 200px;
    }

    .short-item {
        min-width: 180px;
    }

    .short-thumbnail img {
        height: 320px;
    }

    .team-card {
        padding: 1.5rem;
    }

    .team-img {
        width: 100px;
        height: 100px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1.2rem;
    }

    .contact-item i {
        font-size: 1.3rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 15px 1rem;
    }

    .footer-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .profile-avatar img {
        width: 100px;
        height: 100px;
    }

    .profile-info h3 {
        font-size: 1.5rem;
    }

    .profile-title {
        font-size: 1rem;
    }

    .profile-desc {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .profile-social {
        justify-content: center;
    }

    .profile-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section ul li a,
    .footer-contact li {
        font-size: 0.9rem;
    }

    .contact-modal-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-modal-item {
        padding: 1.5rem;
    }

    .floating-contact-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .modal-content {
        margin: 10% 15px;
        padding: 1.5rem;
        max-height: 75vh;
    }

    .modal-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .modal-content h3 {
        font-size: 1.3rem;
        margin-top: 1.2rem;
    }

    .modal-content ul li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .close-modal {
        font-size: 1.8rem;
        right: 1rem;
        top: 1rem;
    }

    .notification {
        top: 80px;
        right: 15px;
        left: 15px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Tablet Responsive (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar .container {
        padding: 1rem 20px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.88rem;
        padding: 0.4rem 0.7rem;
    }
    
    .nav-links a i {
        font-size: 0.9rem;
    }
    
    .section {
        padding: 40px 20px;
    }
    
    .section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1rem;
    }

    .theme-toggle {
        padding: 0.4rem 0.7rem;
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        font-size: 1.5rem;
    }

    .hero {
        padding: 40px 15px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }

    .section {
        padding: 30px 15px;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section h2 i {
        font-size: 1.6rem;
    }

    .about-main h3 {
        font-size: 1.3rem;
    }

    .about-main p {
        font-size: 0.95rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.2rem;
    }

    .about-feature-item {
        gap: 0.8rem;
    }

    .about-feature-item i {
        font-size: 1.2rem;
    }

    .about-feature-item h4 {
        font-size: 1rem;
    }

    .about-feature-item p {
        font-size: 0.85rem;
    }

    .about-stats-new {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .stat-card h3 {
        font-size: 1.6rem;
    }

    .stat-card p {
        font-size: 0.85rem;
    }

    .gallery-tabs {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .gallery-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .gallery-tab i {
        font-size: 0.9rem;
    }

    .slider-container-full {
        padding: 0 40px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .slider-btn.prev {
        left: 2px;
    }

    .slider-btn.next {
        right: 2px;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .view-details {
        font-size: 0.85rem;
    }

    .slider-container {
        padding: 0 40px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .gallery-item,
    .video-item {
        min-width: 250px;
    }

    .gallery-item img {
        height: 180px;
    }

    .video-thumbnail img {
        height: 180px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .video-info {
        padding: 1rem;
    }

    .video-info h4 {
        font-size: 1rem;
    }

    .video-info p {
        font-size: 0.85rem;
    }

    .short-item {
        min-width: 150px;
    }

    .short-thumbnail img {
        height: 280px;
    }

    .short-overlay i {
        font-size: 2.5rem;
    }

    .short-views {
        font-size: 0.85rem;
    }

    .short-item h4 {
        font-size: 0.9rem;
    }

    .team-card {
        padding: 1.2rem;
    }

    .team-img {
        width: 90px;
        height: 90px;
    }

    .team-card h3 {
        font-size: 1.2rem;
    }

    .team-role {
        font-size: 0.9rem;
    }

    .team-card p {
        font-size: 0.9rem;
    }

    .team-social a {
        font-size: 1.1rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        gap: 0.8rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    .contact-item strong {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .social-links {
        margin-top: 1.5rem;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 1.5rem 15px 0.8rem;
    }

    .footer-profile-card {
        padding: 1.5rem 1rem;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .profile-avatar img {
        width: 80px;
        height: 80px;
        border: 3px solid white;
    }

    .profile-info h3 {
        font-size: 1.3rem;
    }

    .profile-title {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .profile-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .profile-social {
        gap: 0.8rem;
    }

    .profile-social a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a,
    .footer-contact li {
        font-size: 0.85rem;
    }

    .footer-social {
        gap: 0.8rem;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .floating-contact-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }

    .modal-content {
        margin: 5% 10px;
        padding: 1.2rem;
        max-height: 80vh;
    }

    .modal-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        padding-right: 2rem;
    }

    .modal-content h3 {
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 0.8rem;
    }

    .modal-content p {
        font-size: 0.9rem;
    }

    .modal-content ul li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }

    .close-modal {
        font-size: 1.6rem;
        right: 0.8rem;
        top: 0.8rem;
    }

    .contact-modal-grid {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .contact-modal-item {
        padding: 1.2rem;
    }

    .contact-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .contact-modal-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .contact-modal-item p {
        font-size: 0.85rem;
    }

    .notification {
        top: 70px;
        right: 10px;
        left: 10px;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   CLIENT PROJECTS SECTION
   ============================================ */
.projects-section {
    background-color: var(--bg-primary);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background-color: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--accent);
}

.project-thumbnail {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-thumbnail img {
    transform: scale(1.1);
}

.project-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.project-category-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-client {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.project-description {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background-color: var(--bg-secondary);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.project-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    gap: 0.8rem;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(3px);
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section {
    background-color: var(--bg-secondary);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.certification-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--accent);
}

.certification-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
}

.certification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.certification-card:hover .certification-image img {
    transform: scale(1.05);
}

.certification-verified {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #10b981;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.certification-body {
    padding: 1.5rem;
}

.certification-body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.certification-issuer {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.certification-description {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.certification-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.cert-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.cert-meta-item i {
    color: var(--accent);
    width: 16px;
}

.certification-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.skill-badge {
    background-color: var(--accent);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.certification-footer {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.cert-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.cert-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.cert-btn i {
    font-size: 1rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .projects-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .projects-filter {
        gap: 0.7rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .project-thumbnail,
    .certification-image {
        height: 200px;
    }
    
    .project-content,
    .certification-body {
        padding: 1.2rem;
    }
    
    .project-content h3,
    .certification-body h3 {
        font-size: 1.1rem;
    }
    
    .project-footer {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .project-thumbnail,
    .certification-image {
        height: 180px;
    }
    
    .project-content,
    .certification-body {
        padding: 1rem;
    }
    
    .project-content h3,
    .certification-body h3 {
        font-size: 1rem;
    }
    
    .project-description,
    .certification-description {
        font-size: 0.85rem;
    }
    
    .tech-tag,
    .skill-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .certification-footer {
        flex-direction: column;
    }
    
    .cert-btn {
        width: 100%;
    }
}

/* Network Section */
.network-section {
    background-color: var(--bg-secondary);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.network-states-header {
    text-align: center;
    margin-bottom: 3rem;
}

.network-states-header h3 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.network-states-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 10px 0;
}

.state-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.state-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow);
    border-color: var(--accent);
}

.state-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.state-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.state-icon {
    font-size: 1.4rem;
    color: var(--accent);
    background: rgba(37, 99, 235, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.state-card:hover .state-icon {
    background: var(--accent);
    color: white;
}

.state-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.active-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.hq-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.expanding-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.state-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.state-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.state-district {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Pulsing dot for HQ */
.state-pulse-dot {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
}

.state-pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ef4444;
    border-radius: 50%;
    animation: state-pulse 1.5s infinite;
}

@keyframes state-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Special Primary/HQ Styling */
.state-card.state-primary {
    border-color: rgba(239, 68, 68, 0.4);
    background: linear-gradient(to bottom right, var(--card-bg), rgba(239, 68, 68, 0.03));
}

/* Special styling for growing cards */
.state-card.state-expanding {
    border-style: dashed;
    border-color: rgba(245, 158, 11, 0.5);
}
.state-card.state-expanding .state-icon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

/* Mobile 2-column grid for Active Coverage Areas */
@media (max-width: 480px) {
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .state-card {
        padding: 0.8rem;
    }
    
    .state-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .state-name {
        font-size: 0.9rem;
    }
    
    .state-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
}
