@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

:root {
    --primary-dark: #1a3838;
    --primary-light: #2d5555;
    --accent-blue: #c9a672;
    --light-blue: #d4b896;
    --white: #FFFFFF;
    --light-bg: #f9f7f4;
    --dark-overlay: rgba(26, 56, 56, 0.9);
    --text-dark: #1a3838;
    --text-light: #f5f2ed;
}

::selection {
    background: var(--accent-blue);
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

::-moz-selection {
    background: var(--accent-blue);
    color: var(--white);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    
    html, body {
        scroll-behavior: smooth;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d5555 50%, #3d6565 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 120px;
    height: 120px;
    background-image: url('../assets/images/loading.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(107, 143, 163, 0.1), rgba(163, 196, 217, 0.1));
    border-radius: 50%;
    filter: blur(40px);
    animation: float-shapes 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 25%;
    animation-delay: -15s;
}

@keyframes float-shapes {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05) rotate(270deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(26, 56, 56, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

@keyframes rotate-icon {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 6px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    border: 2px solid rgba(163, 196, 217, 0.4);
    background: rgba(163, 196, 217, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(163, 196, 217, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.nav-link:hover::before {
    width: 50px;
    height: 50px;
}

.nav-link:hover {
    background: rgba(163, 196, 217, 0.2);
    border-color: rgba(163, 196, 217, 0.6);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d5555 50%, #3d6565 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 20px 80px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Home (1).jpeg');
    background-size: cover;
    background-position: center;
    animation: carousel 15s infinite;
    opacity: 0.15;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(201, 166, 114, 0.25);
    bottom: 10%;
    right: 8%;
    z-index: 1;
    animation: pulse-circle-2 10s ease-in-out infinite;
}

@keyframes carousel {
    0%, 30% {
        background-image: url('../assets/images/Home (1).jpeg');
    }
    33%, 63% {
        background-image: url('../assets/images/Home (2).jpeg');
    }
    66%, 97% {
        background-image: url('../assets/images/Home (3).jpeg');
    }
    100% {
        background-image: url('../assets/images/Home (1).jpeg');
    }
}

@keyframes pulse-circle-1 {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1) translateY(-20px);
        opacity: 0.25;
    }
}

@keyframes pulse-circle-2 {
    0%, 100% {
        transform: scale(1) translateX(0);
        opacity: 0.25;
    }
    50% {
        transform: scale(1.15) translateX(30px);
        opacity: 0.4;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(212, 184, 150, 0.2);
    top: 20%;
    left: 5%;
    z-index: 1;
    animation: pulse-circle-3 12s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(201, 166, 114, 0.22);
    top: 5%;
    right: 15%;
    z-index: 1;
    animation: pulse-circle-4 9s ease-in-out infinite;
}

@keyframes pulse-circle-3 {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2) translate(-30px, 40px);
        opacity: 0.35;
    }
}

@keyframes pulse-circle-4 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.22;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.38;
    }
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 196, 217, 0.2) 0%, transparent 70%);
    animation: float-circle 20s infinite ease-in-out;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    right: -50px;
    animation-delay: -7s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float-circle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.6;
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 20px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.title-line {
    display: block;
    animation: slide-in-title 1.2s ease-out;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
    animation: expand-line 1.5s ease-out 0.5s forwards;
}

@keyframes slide-in-title {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expand-line {
    to {
        width: 200px;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 40px;
    opacity: 0;
    animation: pop-up 0.8s ease-out 2s forwards;
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0;
    animation: fade-in-up 1s ease-out 1.2s forwards;
}

@keyframes pop-up {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(30px);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 45%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    animation: fade-in-up 1s ease-out 1.6s forwards;
    z-index: 10;
}

.mouse {
    width: 35px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 0 20px rgba(163, 196, 217, 0.3);
}

.wheel {
    width: 6px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 0;
        top: 12px;
    }
    50% {
        opacity: 1;
        top: 28px;
    }
}

.scroll-indicator p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--primary-dark);
    border-radius: 50px;
    z-index: 0;
    opacity: 0.8;
    transform: rotate(45deg);
}

.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: var(--primary-dark);
    border-radius: 50px;
    z-index: 0;
    opacity: 0.5;
    transform: rotate(30deg);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.image-frame:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.image-frame img {
    width: 100%;
    display: block;
    transition: all 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 74, 92, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
    margin-bottom: 70px;
}

.section-title .title-line {
    display: block;
    position: relative;
}

.about-text {
    color: var(--text-dark);
    line-height: 1.9;
    opacity: 0.85;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    border: 3px solid transparent;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: var(--white);
    border-color: var(--accent-blue);
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-blue);
}

.stat-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Success Story */
.success-story {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    position: relative;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.stat-card {
    background: var(--white);
    border: 3px solid var(--accent-blue);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    transition: top 0.5s ease;
    z-index: 0;
}

.stat-card:hover::before {
    top: 0;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(107, 143, 163, 0.3);
    border-color: var(--primary-dark);
    color: var(--white);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(360deg);
    background: var(--white);
    color: var(--primary-dark);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 25px 0 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-number {
    color: var(--white);
}

.stat-label {
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-label {
    color: var(--white);
    opacity: 1;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(107, 143, 163, 0.2);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    width: 0;
    transition: width 2s ease;
    border-radius: 2px;
}

.stat-card:hover .stat-bar-fill {
    width: 100%;
}

/* Services Section */
.services {
    padding: 40px 0;
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services .section-title {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.service-card {
    background: rgba(163, 196, 217, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(163, 196, 217, 0.2);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-hover-overlay {
    display: none;
}

.service-card:hover {
    background: rgba(163, 196, 217, 0.25);
    border-color: rgba(163, 196, 217, 0.5);
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: rgba(163, 196, 217, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-15deg);
    background: rgba(163, 196, 217, 0.5);
    box-shadow: 0 0 30px rgba(163, 196, 217, 0.5);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    z-index: 1;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue), var(--accent-blue));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.service-card:hover h3::after {
    width: 80%;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Videos Section */
.videos-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    position: relative;
    overflow: hidden;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.videos-section .section-title {
    color: var(--white);
}

.videos-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 30px;
    color: var(--white);
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.video-info p {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Case Studies - Enhanced Legendary Design */
.case-studies {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(107, 143, 163, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(163, 196, 217, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.case-studies-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.case-study-card {
    background: var(--white);
    border-radius: 30px;
    padding: 0;
    border: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 74, 92, 0.15);
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--text-dark);
    animation: gradient-slide 3s ease infinite;
}

@keyframes gradient-slide {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.case-study-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 100px rgba(44, 74, 92, 0.25);
}

.case-study-header {
    background: var(--accent-blue);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 0;
    border-bottom: none;
}

.case-study-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.case-study-header h3 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px;
}

.case-study-challenge,
.case-study-solution,
.case-study-result {
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    border-left: 6px solid;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.case-study-challenge {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.03));
    border-left-color: #EF4444;
}

.case-study-solution {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.03));
    border-left-color: #3B82F6;
}

.case-study-result {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
    border-left-color:  var(--primary-dark);
    margin-bottom: 0;
}

.case-study-challenge:hover,
.case-study-solution:hover,
.case-study-result:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-result h4 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-challenge h4 i {
    color: #EF4444;
    font-size: 1.5rem;
}

.case-study-solution h4 i {
    color: #3B82F6;
    font-size: 1.5rem;
}

.case-study-result h4 i {
    color: var(--text-dark);
    font-size: 1.5rem;
}

.case-study-challenge p,
.case-study-solution p,
.case-study-result p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 100px 0 150px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: var(--primary-dark);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(107, 143, 163, 0.1);
    z-index: 0;
}

.testimonial-card.active {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.testimonial-card:not(.active):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: var(--white);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 5px solid var(--accent-blue);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.1) rotate(5deg);
}

.testimonial-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

.testimonial-card.active .testimonial-badge {
    background: var(--white);
    color: var(--primary-dark);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.testimonial-title {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.8;
    color: var(--accent-blue);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-card.active .testimonial-title {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card.active .testimonial-stars {
    color: #FCD34D;
}

.testimonial-stars i {
    animation: star-pulse 2s infinite ease-in-out;
}

.testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-stars i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.testimonial-card.active .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Team Section */
.team {
    padding: 40px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 70px;
}

.team-card {
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-15px);
}

.team-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 4px solid var(--accent-blue);
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.team-card:hover .team-image {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-dark);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 74, 92, 0.9), rgba(107, 143, 163, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .social-icon {
    transform: translateY(0);
    opacity: 1;
}

.team-card:hover .social-icon:nth-child(1) { transition-delay: 0.1s; }
.team-card:hover .social-icon:nth-child(2) { transition-delay: 0.2s; }
.team-card:hover .social-icon:nth-child(3) { transition-delay: 0.3s; }

.social-icon:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(0) scale(1.1);
}

.team-info {
    padding: 0 15px;
}

.team-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-position {
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.team-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.voice-note,
.screenshot {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.voice-note:hover,
.screenshot:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 5px 20px rgba(107, 143, 163, 0.4);
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact .section-title {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 70px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(163, 196, 217, 0.1);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(163, 196, 217, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(163, 196, 217, 0.15);
    border-color: rgba(163, 196, 217, 0.4);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(163, 196, 217, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(163, 196, 217, 0.5);
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.contact-text p {
    opacity: 0.85;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(163, 196, 217, 0.2);
    border: 2px solid rgba(163, 196, 217, 0.3);
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-btn:hover {
    background: rgba(163, 196, 217, 0.3);
    border-color: var(--light-blue);
    transform: translateX(5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid rgba(163, 196, 217, 0.3);
    border-radius: 15px;
    background: rgba(163, 196, 217, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    background: rgba(163, 196, 217, 0.15);
    box-shadow: 0 0 20px rgba(163, 196, 217, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    display: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: linear-gradient(135deg, #10B981, #059669);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message i {
    font-size: 1.2rem;
}

.error-message {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message i {
    font-size: 1.2rem;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(107, 143, 163, 0.4);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(107, 143, 163, 0.5);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 12px 35px rgba(107, 143, 163, 0.5);
}

/* Contact Form Button - Fixed Width */
.contact-form .btn-primary {
    width: 100%;
    max-width: 100%;
    max-height: 55px;
    min-width: 100%;
    white-space: nowrap;
}

/* Audio Modal */
.audio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.audio-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.audio-modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), #2d5555);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    z-index: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.audio-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.audio-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.audio-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.audio-modal-header i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.audio-modal-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.audio-modal-body {
    display: flex;
    justify-content: center;
}

.audio-modal-body audio {
    width: 100%;
    outline: none;
    border-radius: 50px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: #f9f7f4;
    color: var(--text-dark);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(163, 196, 217, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    transform: translateY(-5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-section li a {
    color: rgba(0, 0, 0, 0.7);
}

.footer-section .social-link {
    background: #1a3838;
}

.footer-section a:hover {
    color: var(--light-blue);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(163, 196, 217, 0.2);
    opacity: 0.7;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(107, 143, 163, 0.3);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 143, 163, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .case-studies-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        background: linear-gradient(135deg, var(--primary-dark) 0%, #2d5555 100%);
        flex-direction: column;
        padding: 100px 30px 50px;
        gap: 20px;
        z-index: 998;
        animation: slideIn 0.3s ease;
        overflow-y: auto;
        box-sizing: border-box;
        justify-content: center;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav.active .nav-list {
        display: flex;
    }
    
    .nav-list li {
        width: 100%;
        display: block;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 20px 25px;
        font-size: 1.2rem;
        border-radius: 20px;
        border: 2px solid rgba(163, 196, 217, 0.4);
        background: rgba(163, 196, 217, 0.2);
        box-sizing: border-box;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(163, 196, 217, 0.25);
        border-color: rgba(163, 196, 217, 0.4);
        transform: scale(1.02);
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hero {
        padding: 120px 15px 80px;
        min-height: 100vh;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .stats-wrapper,
    .testimonials-grid,
    .team-grid,
    .case-studies-wrapper,
    .videos-wrapper {
        grid-template-columns: 1fr;
    }
    
    .video-card {
        margin: 0 10px;
    }
    
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-study-header h3 {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .nav-wrapper {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 0.95rem;
    }
    
    .logo span {
        display: inline-block;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .hero {
        padding: 100px 10px 60px;
        width: 100vw;
        max-width: 100vw;
    }
    
    .hero-content {
        padding: 0 5px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
    
    .scroll-indicator {
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%) scale(0.85);
    }
    
    .mouse {
        width: 30px;
        height: 50px;
        border-width: 2.5px;
    }
    
    .wheel {
        width: 5px;
        height: 10px;
    }
    
    .scroll-indicator p {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .nav-list {
        padding: 80px 20px 40px;
        gap: 15px;
    }
    
    .nav-link {
        padding: 18px 20px;
        font-size: 1.05rem;
    }
}