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

:root {
    --primary-color: #2196F3;
    --secondary-color: #1565C0;
    --accent-color: #8BC34A;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a0a;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    color: var(--text-gray);
    line-height: 1.8;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s;
}

.navbar.scrolled .logo-img {
    height: 45px;
}

.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-icon {
    cursor: pointer;
    color: var(--white);
    transition: color 0.3s;
}

.navbar.scrolled .nav-icon {
    color: var(--text-dark);
}

.nav-icon:hover {
    color: var(--primary-color);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.navbar.scrolled .nav-cta {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.nav-cta:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.arrow-icon {
    transition: transform 0.3s;
}

.nav-cta:hover .arrow-icon {
    transform: rotate(45deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 4px 0;
    transition: 0.3s;
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.7) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.6) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.btn-view-details:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.slide-number {
    position: absolute;
    bottom: 80px;
    right: 80px;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    line-height: 1;
}

.hero-social {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 10;
}

.hero-social h5 {
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Services Quick Cards */
.services-quick {
    padding: 80px 0;
    background: var(--white);
}

.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-quick-card {
    padding: 40px;
    background: var(--bg-light);
    transition: all 0.3s;
    position: relative;
}

.service-quick-card:hover {
    background: var(--text-dark);
    color: var(--white);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-quick-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.service-quick-card:hover h3 {
    color: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.service-quick-card:hover .service-link {
    color: var(--primary-color);
}

/* Marquee Section */
.marquee-section {
    padding: 60px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    padding-right: 50px;
}

.marquee-content h6 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    margin: 0 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.marquee-content .dot {
    color: var(--accent-color);
    font-size: 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.about-header {
    text-align: center;
}

.section-tag {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    text-transform: uppercase;
    letter-spacing: 10px;
    display: block;
    margin-bottom: -3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    padding-right: 40px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2rem;
    transition: all 0.3s;
}

.btn-link:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.about-image {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(33,150,243,0.2));
    pointer-events: none;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(33,150,243,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.mv-wrapper {
    position: relative;
    z-index: 1;
}

.mv-header {
    text-align: center;
    margin-bottom: 80px;
}

.mv-content {
    display: grid;
    gap: 80px;
}

.mv-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
}

.mv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.mv-item.reverse {
    grid-template-columns: auto 1fr auto;
    direction: rtl;
}

.mv-item.reverse .mv-text {
    direction: ltr;
}

.mv-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--bg-light);
    line-height: 1;
    opacity: 0.5;
}

.mv-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.mv-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.mv-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.mv-decoration {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-shape {
    animation: rotate 20s linear infinite;
}

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

/* Statistics Section */
.stats-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-number span {
    font-size: 3rem;
}

.stat-item h4 {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.service-item {
    padding: 40px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
    display: grid;
    grid-template-columns: 2fr 3fr auto;
    align-items: center;
    gap: 40px;
}

.service-item:hover {
    background: var(--bg-light);
}

.service-item h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
}

.service-num {
    color: var(--primary-color);
    margin-right: 20px;
}

.service-item p {
    margin: 0;
}

/* Works Section */
.works-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.work-item {
    position: relative;
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
}

.work-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.work-item.large .work-image {
    height: 100%;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

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

.work-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

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

.works-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-load-more {
    display: inline-block;
    padding: 15px 40px;
    background: var(--text-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

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

.testimonial-item {
    min-width: 100%;
    padding: 0 40px;
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    background: var(--white);
    padding: 60px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 40px;
    left: 40px;
}

.testimonial-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-content h3 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--text-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    padding: 18px 40px;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    justify-self: start;
}

.contact-form button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.footer-logo:hover .footer-logo-img {
    transform: translateY(-2px);
}

.footer-tagline {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--primary-color);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .services-quick-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .mv-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    
    .mv-item.reverse {
        direction: ltr;
    }
    
    .mv-number {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .mv-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mv-decoration {
        display: none;
    }
    
    .nav-menu-wrapper {
        display: none;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .nav-icon.search-icon {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .slide-number {
        font-size: 4rem;
    }
    
    .services-quick-grid,
    .stats-grid,
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .marquee-content h6 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-tag {
        font-size: 3rem;
    }
    
    .hero-social {
        display: none;
    }
    
    .slider-nav {
        display: none;
    }
}