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

:root {
    --accent-color: #A0D2EB;
    --secondary-color: #ffffff;
    --bg-dark: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #999999;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Custom Animated Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color), rgba(160, 210, 235, 0.6));
    border-radius: 10px;
    border: 2px solid rgba(10, 10, 10, 0.8);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7fc4e3, var(--accent-color));
    box-shadow: 0 0 20px rgba(160, 210, 235, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: var(--accent-color);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(10, 10, 10, 0.8);
}

/* Vanta Waves Background */
#vanta-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

/* Highlighted Contact Button */
.nav-link-highlight {
    background: linear-gradient(135deg, var(--accent-color), rgba(160, 210, 235, 0.8));
    padding: 10px 24px;
    border-radius: 25px;
    color: #000000 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(160, 210, 235, 0.3);
    transition: all 0.3s ease;
}

.nav-link-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(160, 210, 235, 0.5);
    background: linear-gradient(135deg, rgba(160, 210, 235, 1), var(--accent-color));
}

/* Remove underline from Contact button */
.nav-link-highlight::after,
.nav-link-highlight.active::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--text-primary);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    letter-spacing: -1px;
    text-transform: capitalize;
}

.highlight {
    color: var(--accent-color);
    display: block;
    margin-top: 10px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 50px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(45deg, 
        var(--accent-color), 
        #ffffff, 
        var(--accent-color), 
        #ffffff,
        var(--accent-color));
    background-size: 300% 300%;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    z-index: -1;
}

.btn-primary {
    background: var(--accent-color);
    color: #000000;
    border: none;
    box-shadow: 0 8px 32px rgba(160, 210, 235, 0.3);
}

.btn-primary::after {
    background: rgba(160, 210, 235, 0.3);
}

.btn-primary:hover {
    background: #7fc4e3;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(160, 210, 235, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: none;
}

.btn-secondary::after {
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(160, 210, 235, 0.4);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    position: relative;
    max-width: 400px;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(160, 210, 235, 0.3), transparent);
    transform: translateY(-50%);
    filter: blur(2px);
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(160, 210, 235, 0.2), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(160, 210, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 18px;
    box-shadow: 0 8px 32px rgba(160, 210, 235, 0.2);
    animation: dividerPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.divider-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 210, 235, 0.3), transparent);
    animation: dividerRipple 3s ease-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(160, 210, 235, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 48px rgba(160, 210, 235, 0.4);
    }
}

@keyframes dividerRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Social Icons */
.social-icons {
    position: absolute;
    left: 40px;
    bottom: 40px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    border: 2px solid rgba(160, 210, 235, 0.15);
    background: transparent;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 25%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: rotate 20s linear infinite;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 20%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: float 7s ease-in-out infinite;
}

.shape-5 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 15%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: pulse 4s ease-in-out infinite;
}

.line-accent {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    height: 2px;
}

.line-1 {
    width: 300px;
    top: 20%;
    right: 10%;
    transform: rotate(-45deg);
    animation: slideIn 3s ease-in-out infinite;
}

.line-2 {
    width: 250px;
    bottom: 30%;
    right: 20%;
    transform: rotate(45deg);
    animation: slideIn 4s ease-in-out infinite reverse;
}

.line-3 {
    width: 200px;
    top: 50%;
    left: 5%;
    transform: rotate(-30deg);
    animation: slideIn 5s ease-in-out infinite;
}

.dot-pattern {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.dot-pattern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--accent-color) 2px, transparent 2px);
    background-size: 20px 20px;
}

.pattern-1 {
    width: 100px;
    height: 100px;
    top: 25%;
    left: 5%;
}

.pattern-2 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 10%;
}

.circle-accent {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: pulse 3s ease-in-out infinite;
}

.accent-1 {
    top: 30%;
    left: 25%;
    animation-delay: 0s;
}

.accent-2 {
    top: 15%;
    right: 30%;
    animation-delay: 0.5s;
}

.accent-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 1s;
}

.accent-4 {
    bottom: 40%;
    right: 20%;
    animation-delay: 1.5s;
}

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes slideIn {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0) rotate(-45deg);
    }
    50% {
        opacity: 0.8;
        transform: translateX(20px) rotate(-45deg);
    }
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Services Carousel Section */
.services-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

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

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

.services-header h2 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.services-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.services-swiper {
    position: relative;
    padding: 60px 0 120px;
    overflow: visible !important;
}

.swiper-slide {
    width: 400px;
    height: auto;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0.4;
}

.swiper-slide-active .service-item {
    opacity: 1;
    border-color: var(--accent-color);
    box-shadow: 0 50px 120px rgba(160, 210, 235, 0.5);
    background: linear-gradient(135deg, rgba(160, 210, 235, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: scale(1.05);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swiper-slide-active .service-item::before {
    opacity: 1;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(160, 210, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.swiper-slide-active .service-item::after {
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(160, 210, 235, 0.25) 0%, transparent 70%);
}

/* Removed hover effect on service items */

.service-number {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), rgba(160, 210, 235, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 0 50px rgba(160, 210, 235, 0.5);
}

.swiper-slide-active .service-number {
    opacity: 0.6;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(160, 210, 235, 0.5);
    }
    50% {
        text-shadow: 0 0 60px rgba(160, 210, 235, 0.8);
    }
}

.service-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-item p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-weight: 300;
    flex-grow: 1;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-item:hover .service-cta i {
    transform: translateX(5px);
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--accent-color);
    color: #000000;
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
    font-weight: 900;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 50px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(160, 210, 235, 0.6);
}

/* View All Button */
.view-all-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-all-btn:hover {
    background: var(--accent-color);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(160, 210, 235, 0.4);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.view-all-container .swiper-button-prev,
.view-all-container .swiper-button-next {
    position: static;
    margin: 0;
}

/* Glassmorphic Card Base */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 32px rgba(160, 210, 235, 0.2);
}

/* Simple Border Effect */
.card-border-animation {
    display: none;
}

.service-card {
    border-radius: 20px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(160, 210, 235, 0.3);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), rgba(160, 210, 235, 0.7));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #000000;
    box-shadow: 0 8px 20px rgba(160, 210, 235, 0.3);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(160, 210, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.about-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.about-image-container {
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.about-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(160, 210, 235, 0.3) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image-container:hover::before {
    opacity: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: grayscale(20%);
}

.about-image-container:hover .about-image {
    transform: scale(1.1) rotate(2deg);
    filter: grayscale(0%);
}

.about-text {
    text-align: left;
    position: relative;
}

.about-text .section-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 25px 60px rgba(160, 210, 235, 0.4);
    background: linear-gradient(135deg, rgba(160, 210, 235, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), rgba(160, 210, 235, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(160, 210, 235, 0.6);
    animation: counterGlow 3s ease-in-out infinite;
}

@keyframes counterGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 0 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.5;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), rgba(160, 210, 235, 0.6));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000000;
    box-shadow: 0 8px 25px rgba(160, 210, 235, 0.3);
}

.footer-logo .logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 300;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000000;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 30px rgba(160, 210, 235, 0.4);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-bottom: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(160, 210, 235, 0.2);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), rgba(160, 210, 235, 0.7));
    border: none;
    border-radius: 12px;
    color: #000000;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(160, 210, 235, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(160, 210, 235, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0a0a0a00;
    position: relative;
    z-index: 10;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(160, 210, 235, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Responsive Design */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .services-container,
    .footer-container {
        padding: 0 30px;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-container {
        height: 450px;
        order: -1;
    }
    
    .about-text .section-title {
        font-size: 42px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 16px 35px;
    }
    
    /* Decorative Elements - Reduce on mobile */
    .geometric-shape,
    .line-accent,
    .dot-pattern {
        display: none;
    }
    
    .circle-accent {
        width: 10px;
        height: 10px;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 15px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-header h2 {
        font-size: 36px;
    }
    
    .services-header p {
        font-size: 15px;
    }
    
    .services-swiper {
        padding: 40px 0 100px;
    }
    
    .swiper-slide {
        width: 320px !important;
    }
    
    .service-item {
        height: 500px;
        padding: 40px 25px;
    }
    
    .service-number {
        font-size: 80px;
        margin-bottom: 20px;
    }
    
    .service-item h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .service-item p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .service-cta {
        font-size: 14px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px;
    }
    
    .view-all-container {
        flex-direction: row;
        gap: 15px;
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .view-all-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        position: static;
        margin: 0;
    }
    
    /* About Section */
    .about {
        padding: 80px 0;
    }
    
    .about-image-container {
        height: 350px;
    }
    
    .about-text .section-title {
        font-size: 36px;
        text-align: center;
    }
    
    .about-description {
        font-size: 16px;
        text-align: center;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 44px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Social Icons */
    .social-icons {
        left: 20px;
        bottom: 20px;
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }
    
    .services-container,
    .footer-container {
        padding: 0 20px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    /* Services */
    .services-section {
        padding: 50px 0;
    }
    
    .services-container {
        padding: 0 10px;
    }
    
    .services-header h2 {
        font-size: 28px;
    }
    
    .services-header p {
        font-size: 14px;
    }
    
    .services-swiper {
        padding: 30px 0 80px;
    }
    
    .swiper-slide {
        width: 280px !important;
    }
    
    .service-item {
        height: 460px;
        padding: 35px 20px;
        border-radius: 25px;
    }
    
    .service-number {
        font-size: 65px;
        margin-bottom: 15px;
    }
    
    .service-item h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .service-item p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .service-cta {
        font-size: 13px;
        gap: 8px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 38px;
        height: 38px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 14px;
    }
    
    .view-all-container {
        flex-direction: row;
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .view-all-btn {
        padding: 12px 25px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    /* About */
    .about-text .section-title {
        font-size: 30px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .about-image-container {
        height: 280px;
    }
    
    .about-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Footer */
    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .footer-logo .logo-text {
        font-size: 22px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-list li a {
        font-size: 14px;
    }
    
    .newsletter-input {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .newsletter-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .copyright,
    .footer-bottom-links a {
        font-size: 12px;
    }
    
    /* Social Icons */
    .social-icons {
        left: 15px;
        bottom: 15px;
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    /* Services - Extra Small */
    .services-section {
        padding: 40px 0;
    }
    
    .services-container {
        padding: 0 8px;
    }
    
    .services-header h2 {
        font-size: 24px;
    }
    
    .services-header p {
        font-size: 13px;
    }
    
    .services-swiper {
        padding: 25px 0 70px;
    }
    
    .swiper-slide {
        width: 260px !important;
    }
    
    .service-item {
        height: 440px;
        padding: 30px 18px;
        border-radius: 20px;
    }
    
    .service-number {
        font-size: 55px;
        margin-bottom: 12px;
    }
    
    .service-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .service-item p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .service-cta {
        font-size: 12px;
        gap: 6px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 12px;
    }
    
    .view-all-container {
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .view-all-btn {
        padding: 10px 20px;
        font-size: 11px;
        white-space: nowrap;
    }
    
    .view-all-btn span {
        display: inline;
    }
    
    .about-text .section-title {
        font-size: 26px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    /* Services Page Responsive */
    .services-page .service-detail,
    .services-page .service-detail.reverse {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 60px !important;
    }
    
    .services-page .service-detail .service-image,
    .services-page .service-detail.reverse .service-image {
        order: 1 !important;
        height: 300px !important;
    }
    
    .services-page .service-detail .service-content,
    .services-page .service-detail.reverse .service-content {
        order: 2 !important;
    }
    
    .services-page .service-detail h2 {
        font-size: 28px !important;
    }
    
    .services-page .service-detail p {
        font-size: 16px !important;
    }
    
    .services-page .page-header h1 {
        font-size: 36px !important;
    }
    
    .services-page .page-header p {
        font-size: 16px !important;
    }
    
    .services-page .section-header h2 {
        font-size: 32px !important;
    }
    
    .services-page .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .services-page .service-item {
        min-height: 280px !important;
    }
}

/* Desktop - Force 4 cards in one line */
@media (min-width: 769px) {
    .services-page .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
