/* Base Styles */

@font-face {
    font-family: 'Nasalization';
    src: url('./font/Nasalization\ Rg.otf') format('truetype');
  }
:root {
    --primary-color: #0fbdee; /* Gold */
    --secondary-color: #121212;
    --dark-color: #0a0a0a;
    --text-color: #ffffff;
    --text-light: #aaaaaa;
    --bg-color: #121212;
    --bg-light: #1e1e1e;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 0;
    --font-primary: 'Nasalization', sans-serif;
    --font-secondary:'Nasalization', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    /* background-image: url('./assets/images/image2.png'); */
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;

}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), #0fbdee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: var(--font-primary);
}

/* Decorative Elements */
.decorative-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;

}

.circle, .square, .line {
    position: absolute;
    opacity: 0.03;
    transition: var(--transition);
}

.circle-1 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation: float 15s infinite alternate;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    border-radius: 50%;
    bottom: 15%;
    right: 10%;
    animation: float 20s infinite alternate-reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 40%;
    right: 20%;
    animation: float 18s infinite alternate;
}

.square-1 {
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    top: 30%;
    left: 15%;
    animation: rotate 30s linear infinite;
}

.square-2 {
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    bottom: 20%;
    left: 10%;
    animation: rotate 25s linear infinite reverse;
}

.line-1 {
    width: 2px;
    height: 300px;
    background-color: var(--primary-color);
    top: 10%;
    right: 30%;
    transform: rotate(45deg);
    animation: float 20s infinite alternate;
}

.line-2 {
    width: 2px;
    height: 200px;
    background-color: var(--primary-color);
    bottom: 15%;
    left: 25%;
    transform: rotate(-45deg);
    animation: float 15s infinite alternate-reverse;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.section-decoration.right {
    left: auto;
    right: 0;
}

.decoration-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: var(--primary-color);
    left: 50px;
    top: 0;
}

.decoration-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    left: 40px;
    top: 50%;
}

.decoration-square {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    left: 40px;
    top: 30%;
    animation: rotate 20s linear infinite;
}

.decoration-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid var(--primary-color);
    left: 35px;
    top: 70%;
    animation: float 10s infinite alternate;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
}

.shape-1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 20%;
    right: -20px;
    animation: float 8s infinite alternate;
}

.shape-2 {
    width: 30px;
    height: 30px;
    bottom: 30%;
    left: -15px;
    animation: float 12s infinite alternate-reverse;
}

.shape-3 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 60%;
    right: -10px;
    animation: float 10s infinite alternate;
}

.shape-4 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    bottom: 10%;
    right: -30px;
    animation: float 15s infinite alternate-reverse;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: -20px;
    animation: rotate 20s linear infinite;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    text-align: center;
}

.loader-text {
    display: flex;
    margin-bottom: 30px;
}

.loader-text span {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s forwards;
    font-family: var(--font-secondary);
}

.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.2s; }
.loader-text span:nth-child(3) { animation-delay: 0.3s; color: var(--primary-color); }
.loader-text span:nth-child(4) { animation-delay: 0.4s; }
.loader-text span:nth-child(5) { animation-delay: 0.5s; }
.loader-text span:nth-child(6) { animation-delay: 0.6s; }
.loader-text span:nth-child(7) { animation-delay: 0.7s; }
.loader-text span:nth-child(8) { animation-delay: 0.8s; }

.loader-progress {
    width: 300px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--primary-color), #f5d76e);
    animation: loadProgress 2s forwards;
}

@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Custom Cursor */
.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    transition: transform 0.1s, width 0.3s, height 0.3s, border 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 20;

}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
    
}

.btn:hover:before {
    width: 100%;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 20;
}

.btn.secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    border-radius: 20;

}

.btn:hover {
    transform: translateY(-5px);
}

.btn.small {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.8);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.3s;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.5s;
    font-family: var(--font-secondary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.7s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.9s;
}

.hero-buttons .btn {
    margin-right: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s forwards 1.1s;
}

.image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    top: 30px;
    left: 30px;
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background-color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    animation: scrollLine 1.5s infinite;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
    position: relative;
}

.stat h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
    font-family: var(--font-secondary);
}

.stat p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    color: var(--text-light);
}

.stat-line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.service-card:hover:before {
    height: 5px;
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    margin-bottom: 20px;
    display: block;
    font-family: var(--font-secondary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: var(--primary-color);
}

.service-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.service-link:hover::after {
    width: 100%;
}

/* Work Section */
.work {
    background-color: var(--bg-light);
}

.work-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    color: var(--text-light);
}

.filter-btn.active, .filter-btn:hover {
    color: var(--primary-color);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.work-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.work-image {
    position: relative;
    overflow: hidden;
}

.work-image img {
    transition: transform 0.5s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.9));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition);
}

.work-item:hover .work-info {
    transform: translateY(0);
}

.work-category {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.work-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.work-link {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
    transition: var(--transition);
}

.work-link:hover {
    color: var(--primary-color);
}

.work-cta {
    text-align: center;
    margin-top: 50px;
}

/* Products Section */
.products-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.products-track {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    min-width: 100%;
    padding: 0 20px;
}

.product-card {
    background-color: var(--bg-light);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.products-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.product-arrow {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.product-arrow:hover {
    color: var(--primary-color);
}

.product-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-light);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    opacity: 0;
    transform: translateY(30px);
}

.member-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.member-image img {
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateX(0);
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-secondary);
}

.member-info span {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-light);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-content {
    background-color: var(--bg-color);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-secondary);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-secondary);
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-arrow {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

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

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: var(--font-secondary);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-link {
    margin-right: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
}

.social-link:hover::after {
    width: 100%;
}

.contact-form {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    font-family: var(--font-secondary);
}

.footer-logo p {
    color: var(--text-light);
    margin-top: 15px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    font-family: var(--font-secondary);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 1.2rem;
    font-weight: 700;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #f5d76e;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Reveal Animations */
.reveal-left.revealed {
    animation: fadeInRight 0.8s forwards;
}

.reveal-right.revealed {
    animation: fadeInUp 0.8s forwards;
}

.reveal-up.revealed {
    animation: fadeInUp 0.8s forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .about-image, .about-text, .contact-info, .contact-form {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-color);
        padding: 80px 20px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .work-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat {
        flex: 1 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stat {
        flex: 1 0 100%;
    }
}