@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0284c7;
}

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f0f9ff;
    background-image: 
        radial-gradient(at 0% 0%, hsla(217, 95%, 85%, 1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(186, 100%, 85%, 1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(217, 95%, 85%, 1) 0, transparent 50%);
}

.geo-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85; /* Increased opacity for better visibility */
}

.geo-shape svg {
    width: 100%;
    height: 100%;
}

.shape-1 {
    top: 15%;
    left: 5%;
    width: 180px;
    height: 180px;
    color: #bae6fd;
    animation: float-rotate 25s infinite linear;
}

.shape-2 {
    bottom: 15%;
    right: 5%;
    width: 220px;
    height: 220px;
    color: #e0f2fe;
    animation: float-bob 18s infinite ease-in-out;
}

.shape-3 {
    top: 25%;
    right: 15%;
    width: 100px;
    height: 100px;
    color: #7dd3fc;
    animation: pulse-rotate 12s infinite ease-in-out;
}

.shape-4 {
    bottom: 20%;
    left: 10%;
    width: 140px;
    height: 140px;
    color: #38bdf8;
    animation: float-rotate-reverse 30s infinite linear;
}

@keyframes float-rotate {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@keyframes float-rotate-reverse {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-15deg); }
    100% { transform: translateY(0) rotate(-360deg); }
}

@keyframes float-bob {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.05); }
}

@keyframes pulse-rotate {
    0% { transform: scale(1) rotate(0deg); opacity: 0.4; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(360deg); opacity: 0.4; }
}

.slider-container {
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    z-index: 10;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide.active .slide-content-text {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.active .slide-content-img {
    animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dot.active {
    background: #0ea5e9;
    width: 32px;
    border-radius: 20px;
    border-color: #0ea5e9;
}

.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.15);
    border-color: #e0f2fe;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

.slide-bg-icon {
    position: absolute;
    z-index: -1; 
    pointer-events: none;
    opacity: 0.35;
    filter: blur(1px);
}

.anim-float { animation: float-rotate 25s infinite linear; }
.anim-float-rev { animation: float-rotate-reverse 30s infinite linear; }
.anim-bob { animation: float-bob 18s infinite ease-in-out; }
.anim-pulse { animation: pulse-rotate 15s infinite ease-in-out; }
