/* Fixed Font Face Declarations */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('assest/fonts/BravenRegular.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('assest/fonts/KIN668.TTF') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('assest/fonts/BravenRegular.ttf') format('truetype');
}
@font-face {
    font-family: 'Fredoka One';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.gstatic.com/s/fredokaone/v14/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG9_FnYxNbPzS5HE.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXDTnogkk7.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('assest/fonts/BravenRegular.ttf') format('truetype');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w5aXo.woff2') format('woff2');
}

:root {
    --primary: #770875fc;  /* Light Purple */
    --secondary: #a964b9; /* Medium Purple */
    --accent: #FFD700;    /* Gold */
    --dark: #1A1A2E;      /* Dark Blue */
    --light: #F5F5FF;     /* Very Light Purple */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --card-bg: #FFFFFF;
    --text: #1A1A2E;
    --text-light: #6C6C8A;
    --header-bg: rgba(245, 245, 255, 0.95);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.2);
}

.dark-mode {
    --primary: #920fa6;
    --secondary: #ac5acd;
    --light: #1A1A2E;
    --dark: #F5F5FF;
    --card-bg: #252540;
    --text: #F5F5FF;
    --text-light: #A0A0C0;
    --header-bg: rgba(26, 26, 46, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    transition: background 0.5s ease;
}

/* Enhanced Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    width: 250px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 10px 30px rgba(119, 8, 117, 0.3);
    animation: logoReveal 1.5s ease-out forwards, logoFloat 3s ease-in-out infinite 1.5s;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
}

/* Add a decorative ring around the logo */
.preloader-logo::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: logoRing 2s linear infinite;
    z-index: -1;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(106, 90, 205, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    opacity: 0;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
}

/* Add a loading progress bar */
.preloader-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(106, 90, 205, 0.1);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 1.5s;
}

.preloader-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    animation: progress 2.5s ease-in-out forwards 1.5s;
}

/* Add a loading text */
.preloader-text {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 1.8s, pulse 2s ease-in-out infinite 2.3s;
}

/* Add animated background elements */
.preloader-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.preloader-bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(106, 90, 205, 0.05);
    animation: float 8s ease-in-out infinite;
}

.preloader-bg-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.preloader-bg-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.preloader-bg-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 30%;
    animation-delay: 2s;
}

/* Theme-aware preloader elements */
.preloader-theme-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary);
    animation: fadeIn 1s ease-out 2s forwards;
    opacity: 0;
}

.dark-mode .preloader {
    background: var(--dark);
}

.dark-mode .preloader-theme-icon {
    color: var(--accent);
}

/* Enhanced Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.theme-toggle i {
    font-size: 1.4rem;
    color: white;
    transition: var(--transition);
    transform-origin: center center;
}

.theme-toggle.animating i {
    animation: rotateIcon 0.6s ease-in-out;
}

/* Add a subtle pulsing animation to draw attention */
.theme-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
    transform: scale(1);
    animation: pulse 2s infinite;
    z-index: -1;
}

.theme-toggle:hover::before {
    animation: none;
}

/* Dark mode specific styles */
.dark-mode .theme-toggle {
    background: var(--accent);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.dark-mode .theme-toggle::before {
    background: var(--accent);
}

/* Header */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 20px;
    background: var(--header-bg);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    height: 70px; /* Fixed height */
}

/* Enhanced Logo Styles for Headers */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 75px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(119, 8, 117, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Add a subtle hover effect to the logo */
.logo-container:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(119, 8, 117, 0.3);
}

/* Add a ring animation on hover */
.logo-container:hover .logo-img::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    animation: logoRingPulse 1.5s ease-in-out infinite;
    z-index: -1;
}

.logo {
    font-family: 'Poppins', cursive;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo span {
    color: var(--primary);
    padding-left: 1.5px;
    padding-right: 1.5px;
}
.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}
.mobile-menu-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark);
    z-index: 1000;
    transition: var(--transition);
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav-links {
    list-style: none;
}
.mobile-nav-links li {
    margin-bottom: 15px;
}
.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}
.mobile-nav-links a i {
    margin-right: 10px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    color: var(--accent);
}
.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    transform: translateX(5px);
}
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.mobile-nav-close:hover {
    color: var(--accent);
    transform: scale(1.1);
}
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 15px 60px;
    
    /* Background Styles */
    background-image: url("assest/hero1.jpg");
    background-size: cover;
    background-position: center; /* Changed from 'center' to shift left */
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    /* Content Styling */
    z-index: 1;
}
/* Gradient Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 2, 7, 0.586) 0%, rgba(51, 2, 58, 0.25) 100%);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.0rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
}
.hero h2 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
    font-weight: 600;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}
.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 260px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: 0;
}
.btn:hover::before {
    left: 100%;
}
.btn-primary {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}
.btn-primary:hover {
    background: #e0c000;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--accent);
}
.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}
.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    min-width: 100px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: var(--transition);
}
.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}
.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Fredoka One', cursive;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Company Logos Section - Infinite Scrolling */
.company-logos-section {
    padding: 60px 15px;
    background: var(--light);
    overflow: hidden;
}
.company-logos-header {
    text-align: center;
    margin-bottom: 50px;
}
.company-logos-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.company-logos-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.company-logos-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}
.company-logos-track {
    display: flex;
    animation: scroll 50s linear infinite;
    width: fit-content;
}
.company-logos-grid {
    display: flex;
    gap: 30px;
}
.company-logo-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100px;
    width: 180px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.company-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.company-logo-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.company-logo-item:hover::before {
    opacity: 0.05;
}
.company-logo-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.company-logo-item:hover .company-logo-placeholder {
    transform: scale(1.05);
}
#redwire-placecholder{
    margin-right: 20px;
}
.logo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.company-logo-item:hover .logo-caption {
    opacity: 1;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Gallery Section - Rebuilt */
.gallery {
    padding: 60px 15px;
    background: var(--light);
}
.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}
.gallery-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.gallery-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}
/* Gallery Counter */
.gallery-counter {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}
/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.filter-btn {
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid rgba(106, 90, 205, 0.3);
    border-radius: 30px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 4/5;
    background: var(--card-bg);
    cursor: pointer;
    display: none; /* Initially hidden */
}
.gallery-item.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}
.gallery-item.newly-loaded {
    animation: fadeInScale 0.7s ease;
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transition: var(--transition);
}
.gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}
/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.lightbox-img {
    width: 100%;
    display: block;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}
.lightbox-close:hover {
    background: var(--primary);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.lightbox-btn {
    background: rgba(0,0,0,0.7);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}
.lightbox-btn:hover {
    background: var(--primary);
}
/* Lightbox Caption */
.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}
.lightbox-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.lightbox-caption p {
    font-size: 0.9rem;
    opacity: 0.8;
}
/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}
/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 30px;
}
.load-more-btn {
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}
.load-more-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.load-more-btn:active {
    transform: translateY(1px);
}
.load-more-btn.hidden {
    display: none;
}
.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}
.load-more-btn.loading .btn-text {
    display: none;
}
.load-more-btn .btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.load-more-btn.loading .btn-spinner {
    display: block;
}

/* Sections */
section {
    padding: 60px 15px;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--text);
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light);
}
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}
.about-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.about-img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.about-img img {
    width: 100%;
    display: block;
    transition: var(--transition);
}
.about-img:hover img {
    transform: scale(1.05);
}
.about-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}
.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.about-highlights {
    margin: 1.5rem 0;
}
.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    background: rgba(106, 90, 205, 0.05);
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
}
.highlight-item:hover {
    background: rgba(106, 90, 205, 0.1);
    transform: translateX(5px);
}
.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(106, 90, 205, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition);
}
.highlight-item:hover .highlight-icon {
    background: var(--primary);
    color: white;
}
.highlight-text h4 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 1.1rem;
}
.highlight-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    background: var(--light);
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before {
    opacity: 0.05;
}
.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
}
.service-card h3 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 0.8rem;
    color: var(--text);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Instagram Reels Section */
.reels {
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f0ff 100%);
    padding: 60px 15px;
}
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.reel-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 9/16;
    background: #000;
}
.reel-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}
.reel-item:hover .reel-overlay {
    opacity: 1;
}
.reel-overlay h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.reel-overlay p {
    font-size: 0.8rem;
    opacity: 0.8;
}
.instagram-cta {
    text-align: center;
    margin-top: 25px;
}
.instagram-cta a {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.instagram-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(193, 53, 132, 0.3);
}
.instagram-cta a i {
    margin-right: 8px;
    font-size: 1.2rem;
}
/* Reel thumbnail styles */
.reel-thumbnail-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.reel-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(247, 97, 97, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
}
.reel-item:hover .reel-thumbnail {
    transform: scale(1.05);
}
.reel-item:hover .reel-play-btn {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Logo Section (Brand Identity) - Fixed for mobile */
.logo-section {
    padding: 80px 15px;
    background: linear-gradient(135deg, var(--light) 0%, #f0f0ff 100%);
}
.logo-showcase {
    max-width: 800px;
    margin: 0 auto;
}
.logo-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}
.logo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.logo-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    border: 5px solid var(--primary);
    box-shadow: 0 10px 25px rgba(119, 8, 117, 0.25);
    transition: all 0.4s ease;
}
.logo-card:hover .logo-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(119, 8, 117, 0.35);
}
/* Add a glow effect on hover */
.logo-card:hover .logo-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(119, 8, 117, 0.3) 0%, rgba(119, 8, 117, 0) 70%);
    z-index: -1;
    animation: logoGlow 2s ease-in-out infinite;
}
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 10px;
}
.logo-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}
.brand-identity {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    width: 100%;
}
.brand-item {
    background: rgba(106, 90, 205, 0.05);
    border-radius: 12px;
    padding: 15px;
    transition: var(--transition);
}
.brand-item:hover {
    background: rgba(106, 90, 205, 0.1);
    transform: translateY(-5px);
}
.brand-item h4 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1rem;
}
.brand-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}
/* Portfolio Download Button */
.portfolio-download {
    margin-top: 30px;
    text-align: center;
}
.portfolio-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}
.portfolio-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}
.portfolio-download-btn i {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--dark) 0%, #0d0d1a 100%);
    color: white;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.contact-info h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: white;
}
.contact-methods {
    margin-top: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}
.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(106, 90, 205, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    margin-right: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-item:hover .contact-icon {
    background: var(--accent);
    color: var(--dark);
}
.contact-details h3 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 4px;
    font-size: 1.1rem;
}
.contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}
.contact-details a:hover {
    color: var(--accent);
}
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
}
.contact-form:hover {
    background: rgba(255, 255, 255, 0.08);
}
.contact-form h2 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #0a0a14;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 15px 25px;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
/* Enhanced Footer Logo */
.footer-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.footer-logo-img {
    width: 60px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 8px rgba(119, 8, 117, 0.2);
    transition: all 0.3s ease;
}
.footer-logo-container:hover .footer-logo-img {
    transform: scale(1.05) rotate(5deg);
}
.footer-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: white;
    display: flex;
    align-items: center;
}
.footer-logo span {
    color: var(--primary);
}
.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}
.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-links a:hover::before {
    width: 100%;
}
.footer-col h3 {
    font-family: 'Fredoka One', cursive;
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.design-credit {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.95rem;
    color: var(--accent);
}
.design-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.design-credit a:hover {
    color: var(--primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-sm);
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Preloader Animations */
@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    70% {
        opacity: 1;
        transform: scale(1.05) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes logoRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes logoRingPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Theme Toggle Animations */
@keyframes rotateIcon {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(0.5);
        opacity: 0;
    }
    51% {
        transform: rotate(180deg) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

@keyframes glowEffect {
    0% {
        box-shadow: 0 0 5px var(--primary);
    }
    50% {
        box-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary);
    }
    100% {
        box-shadow: var(--shadow-sm);
    }
}

@keyframes glowEffectDark {
    0% {
        box-shadow: 0 0 5px var(--accent);
    }
    50% {
        box-shadow: 0 0 20px var(--accent), 0 0 30px var(--accent);
    }
    100% {
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }
}

/* Design Improvements */
.section-header {
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
}
.section-header p {
    font-size: 1.1rem;
    max-width: 800px;
}
.service-card {
    padding: 30px;
}
.service-icon {
    font-size: 2.8rem;
}
.service-card h3 {
    font-size: 1.5rem;
}
.service-card p {
    font-size: 1rem;
    line-height: 1.7;
}
.highlight-item {
    padding: 15px;
}
.highlight-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}
.highlight-text h4 {
    font-size: 1.2rem;
}
.highlight-text p {
    font-size: 1rem;
}
.contact-form {
    padding: 30px;
}
.contact-form h2 {
    font-size: 2rem;
}
.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
}
.form-control {
    padding: 15px;
    font-size: 1rem;
}
.btn {
    padding: 16px 35px;
    font-size: 1rem;
}
.gallery-item {
    border-radius: 15px;
}
.gallery-overlay {
    padding: 25px;
}
.gallery-overlay h3 {
    font-size: 1.2rem;
}
.gallery-overlay p {
    font-size: 0.95rem;
}
.logo-card {
    padding: 50px;
}
.logo-info h3 {
    font-size: 2.2rem;
}
.logo-info p {
    font-size: 1.2rem;
}
.footer-logo {
    font-size: 2rem;
}
.footer-col p {
    font-size: 1rem;
}
.footer-links a {
    font-size: 1rem;
}
.footer-col h3 {
    font-size: 1.5rem;
}
.design-credit {
    font-size: 1rem;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    /* Navbar adjustments */
    .mobile-header {
        padding: 10px 15px;
        height: 60px;
    }
    
    .logo-img {
        width: 50px;
        height: 40px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 80px 15px 40px;
        min-height: 90vh;
        background-position: 80% center;
        background-attachment: fixed;
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }
    
    .hero-btns {
        margin-top: 1rem;
        gap: 10px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        max-width: 220px;
    }
    
    .hero-stats {
        gap: 10px;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        min-width: 90px;
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Gallery adjustments */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 1/1;
    }
    
    .gallery-overlay h3 {
        font-size: 0.9rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    /* Company logos adjustments */
    .company-logo-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
    
    /* Reels adjustments */
    .reels-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    /* Footer adjustments */
    .footer-logo-img {
        width: 45px;
        height: 35px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    /* Brand identity adjustments */
    .logo-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .logo-card {
        padding: 30px 20px;
    }
    
    .brand-identity {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Contact section adjustments */
    .contact-form {
        padding: 20px;
    }
    
    .form-control {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
    .hero {
        padding: 70px 10px 30px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 200px;
    }
    
    .hero-stats {
        gap: 8px;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 10px 6px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reels-grid {
        grid-template-columns: 1fr;
    }
    
    .company-logo-item {
        width: 120px;
        height: 70px;
    }
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .logo {
        font-size: 1.8rem;
    }
    .hero {
        padding: 90px 20px 60px;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
    .hero-btns {
        flex-direction: row;
        gap: 15px;
    }
    .btn {
        width: auto;
    }
    .stat-item {
        min-width: 140px;
    }
    section {
        padding: 80px 20px;
    }
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .brand-identity {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 992px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    .hero h2 {
        font-size: 2.2rem;
    }
    .stat-item {
        min-width: 160px;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}