:root {
    --electric-border-color: #7df9ff;
    --electric-light-color: #7df9ff;
    --eb-border-width: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fdb714;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #fdb714;
}

.logo {
    text-align: center;
    color: #fff;
}

.logo {
    animation: pulse 2s ease-in-out infinite;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fdb714;
    margin-bottom: -5px;
    text-shadow: 0 0 20px rgba(253, 183, 20, 0.5);
}

.logo p {
    font-size: 10px;
    letter-spacing: 2px;
    color: #fff;
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: #fdb714;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 1002;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(253, 183, 20, 0.2);
}

.sidebar-header h2 {
    color: #fdb714;
    font-size: 18px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #fdb714;
    transform: rotate(90deg);
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: rgba(253, 183, 20, 0.1);
    border-left-color: #fdb714;
    color: #fdb714;
}

.link-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(253, 183, 20, 0.2);
    text-align: center;
}

.sidebar-footer p {
    color: #999;
    font-size: 12px;
    margin-bottom: 10px;
}

.social-link-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(253, 183, 20, 0.2);
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 14px;
}

.social-link-sidebar:hover {
    background: #fdb714;
    transform: translateY(-2px);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    position: relative;
    height: 100%;
}

/* Intro Video Styles */
.intro-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    transition: opacity 1s ease-in-out;
}

.intro-video-container.active {
    opacity: 1;
}

.intro-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Modern Slide Transitions */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide.slide-out {
    opacity: 0;
    transform: scale(0.95);
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    animation: fadeInUp 1s ease 0.3s both;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.5s both;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slide-content p {
    font-size: 20px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.7s both;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
    font-size: 40px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(253, 183, 20, 0.8);
    border-color: #fdb714;
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #fdb714;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #fdb714;
    transition: width 0.5s ease;
}

.section-header:hover h2::after {
    width: 100%;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fdb714, transparent);
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(253, 183, 20, 0.5);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '⚡';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 200px;
    opacity: 0.05;
    animation: pulse 3s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 183, 20, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s;
}

.stat-item:hover::before {
    opacity: 1;
    transform: rotate(180deg);
}

.stat-item:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.05);
    box-shadow:
        0 15px 35px rgba(253, 183, 20, 0.3),
        0 0 25px rgba(253, 183, 20, 0.2);
    border-color: #fdb714;
}

.stat-item h4 {
    font-size: 42px;
    color: #fdb714;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(253, 183, 20, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover h4 {
    transform: scale(1.2);
    text-shadow:
        0 0 20px rgba(253, 183, 20, 0.8),
        0 0 40px rgba(253, 183, 20, 0.5);
    animation: electricGlow 1s ease-in-out infinite;
}

@keyframes electricGlow {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(253, 183, 20, 0.8),
            0 0 40px rgba(253, 183, 20, 0.5);
    }
    50% {
        text-shadow:
            0 0 30px rgba(253, 183, 20, 1),
            0 0 60px rgba(253, 183, 20, 0.7);
    }
}

.stat-item p {
    color: #666;
    font-size: 14px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, #fdb714, transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* SVG Filters positioning */
.eb-svg-filters {
    position: fixed;
    left: -10000px;
    top: -10000px;
    width: 10px;
    height: 10px;
    opacity: 0.001;
    pointer-events: none;
}

/* Electric Border Service Card */
.service-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    isolation: isolate;
    text-align: center;
    height: 100%;
    min-height: 280px;
}

.service-card-inner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 40px 20px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Electric Border Layers Container */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}

/* Main Electric Stroke - Only on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: var(--eb-border-width) solid var(--electric-border-color);
    filter: url(#turbulent-displace);
    pointer-events: none;
    z-index: 3;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

/* Glow Layer 1 - Only on hover */
.service-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: var(--eb-border-width) solid var(--electric-border-color);
    opacity: 0;
    filter: blur(calc(0.5px + (var(--eb-border-width) * 0.25)));
    pointer-events: none;
    box-sizing: border-box;
    z-index: 4;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-inner::before {
    opacity: 0.6;
}

/* Glow Layer 2 - Only on hover */
.service-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: var(--eb-border-width) solid var(--electric-light-color);
    opacity: 0;
    filter: blur(calc(2px + (var(--eb-border-width) * 0.5)));
    pointer-events: none;
    box-sizing: border-box;
    z-index: 5;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-inner::after {
    opacity: 0.5;
}

/* Background Glow - using a wrapper div would be better, but we'll use transform */
.service-card {
    --glow-opacity: 0.3;
}

.service-card:hover {
    --glow-opacity: 0.5;
}

.service-card:hover .service-card-inner {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

/* Add background glow with box-shadow - Only on hover */
.service-card {
    box-shadow: none;
    transition: box-shadow 0.4s ease;
}

.service-card:hover {
    box-shadow:
        0 0 30px rgba(125, 249, 255, 0.3),
        0 0 60px rgba(125, 249, 255, 0.2),
        0 0 90px rgba(125, 249, 255, 0.1);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(125, 249, 255, 0.5));
}

.service-card-inner h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 10;
}

.service-card-inner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    z-index: 10;
}

.service-card:hover .service-card-inner h3 {
    color: var(--electric-light-color);
    text-shadow: 0 0 10px rgba(125, 249, 255, 0.5);
}

/* References Section */
.references-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.references-section .section-header h2,
.references-section .divider {
    color: #fff;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.reference-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    border: 2px solid rgba(253, 183, 20, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(253, 183, 20, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    border-radius: 50%;
}

.reference-card:hover::before {
    width: 300px;
    height: 300px;
}

.reference-card:hover {
    background: rgba(253, 183, 20, 0.2);
    border-color: #fdb714;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(253, 183, 20, 0.3);
}

.reference-card h4 {
    color: #fdb714;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.reference-card:hover h4 {
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(253, 183, 20, 0.5);
}
/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 183, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid #fdb714;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mission-content p:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(253, 183, 20, 0.2);
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 183, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vision-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid #fdb714;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.vision-content p:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(253, 183, 20, 0.2);
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.contact-map h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-map {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-map:hover {
    box-shadow: 0 10px 30px rgba(253, 183, 20, 0.2);
    transform: translateY(-5px);
}

.contact-map iframe {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.contact-map:hover iframe {
    transform: scale(1.02);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item .icon {
    font-size: 24px;
    min-width: 30px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.info-item p {
    color: #666;
    margin: 0;
}

.info-item a {
    color: #fdb714;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #e5a513;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #fdb714;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: #e5a513;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 183, 20, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 20px;
}

.footer-left h3 {
    color: #fdb714;
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-left p {
    color: #999;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(253, 183, 20, 0.2);
    border-radius: 5px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #fdb714;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo p {
        font-size: 9px;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-btn {
        font-size: 24px;
        padding: 5px 12px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px;
    }
    
    .stat-item h4 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reference-card {
        padding: 20px;
    }
    
    .reference-card h4 {
        font-size: 20px;
    }
    
    .mission-content p,
    .vision-content p {
        font-size: 16px;
        padding: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-map {
        padding: 20px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-section::before,
    .mission-section::before,
    .vision-section::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content {
        width: 95%;
    }
    
    .slide-content h2 {
        font-size: 22px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slider-btn {
        font-size: 20px;
        padding: 3px 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 30px;
        height: 3px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .about-text h3 {
        font-size: 20px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-item h4 {
        font-size: 32px;
    }
    
    .service-icon {
        font-size: 40px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .reference-card {
        padding: 15px;
    }
    
    .reference-card h4 {
        font-size: 18px;
    }
    
    .mission-content p,
    .vision-content p {
        font-size: 15px;
        padding: 15px;
    }
    
    .contact-info h3,
    .contact-map h3 {
        font-size: 20px;
    }
    
    .info-item .icon {
        font-size: 20px;
    }
    
    .info-item h4 {
        font-size: 14px;
    }
    
    .info-item p {
        font-size: 13px;
    }
    
    .contact-map {
        padding: 15px;
    }
    
    .footer-left h3 {
        font-size: 18px;
    }
    
    .social-link {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .slider-btn {
        font-size: 30px;
        padding: 5px 15px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}