
        :root {
            --dark-blue: #052E33;
            --accent-green: #25D366;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --primary: #052E33;
            --primary-light: #0d5c6b;
            --secondary: #0a7a2e;
            --accent: #25D366;
            --accent-light: #5DF58F;
            --light: #fff;
            --dark: #1a1a1a;
            --text: #333;
        }
        
        a{text-decoration:none}

        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        /* ===== Top Bar ===== */
        .top-bar {
            background-color: var(--primary);
            color: var(--light);
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info a, 
        .contact-info span {
            color: var(--light);
            text-decoration: none;
            margin-right: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .contact-info a:hover {
            color: var(--accent);
        }

        .social-links a {
            color: var(--light);
            margin-left: 15px;
            font-size: 16px;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }
        
        /* HEADER - Fixed at top */
        .header {
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            z-index: 1020;
            transition: all 0.3s ease;
            background-color:transparent;
        }
        
       
        
        .navbar {
            padding: 15px 0;
        }
        
        .navbar-brand {
            padding: 0;
            margin-right: 0;
        }
        
        .logo {
            height: 160px;
            width: auto;
            transition: all 0.3s ease;
            border: 1px solid #04af51;
            border-radius: 8px;
        }

        .logo img {
            height: 100%;
            width: auto;
            border: 2px solid #000;
            border-radius: 8px;
        }
        
        .navbar-nav {
            align-items: center;
        }
        
        .nav-item {
            margin: 0 8px;
        }
        
        .nav-link {
            color: #f8f9fa;
            font-weight: 600;
            font-size: 15px;
            padding: 8px 15px;
            position: relative;
            text-transform: uppercase;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-green);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            color: var(--white);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        /* SLIDER SECTION */
        .slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            margin-top: 0px;
        }
        
        .slider {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide-1 {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #0a7a2e 100%);
        }
        
        .slide-2 {
            background: linear-gradient(135deg, #109C3D 0%, var(--dark-blue) 100%);
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            padding: 0 20px;
            z-index: 5;
        }
        
        .slide-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            text-transform: uppercase;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .slide-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .slide-btn {
            background: var(--white);
            color: var(--dark-blue);
            border: none;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .slide-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        
        /* Slider Controls */
        .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .slider-control:hover {
            background-color: rgba(255,255,255,0.5);
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-prev {
            left: 30px;
        }
        
        .slider-next {
            right: 30px;
        }
        
        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--white);
            transform: scale(1.2);
        }
        
        /* Content Sections */
        .content-section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 40px;
            text-align: center;
            text-transform: uppercase;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-green);
        }
        
        /* Services Section */
        #xidmetler {
            background-color: var(--light-gray);
        }
        
        .service-card {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border-bottom: 3px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-bottom-color: var(--accent-green);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--accent-green);
            margin-bottom: 20px;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* About Section */
        #haqqimizda {
            background-color: var(--white);
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            padding-left: 30px;
        }
        
  
  
  
  /* Fantastik Əlaqə Bölməsi Stili */
#elaqe {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    z-index: 1;
}

#elaqe::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(100, 211, 169, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(56, 182, 255, 0.15) 0%, transparent 25%),
        linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    z-index: -1;
}

#elaqe::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 2px;
}

/* Kontakt Kartları Üçün Animasiya */
.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}

.contact-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 211, 169, 0.1) 0%, rgba(255,255,255,0.3) 100%);
    z-index: -1;
}

.contact-info-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background: rgba(100, 211, 169, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-box:hover .contact-icon {
    background: var(--accent-green);
    color: white;
    transform: rotateY(180deg);
}

/* Form Stili */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}

.contact-form::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100,211,169,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-control {
    height: 56px;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 0 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.form-control:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(100, 211, 169, 0.2);
    background: white;
}

textarea.form-control {
    min-height: 180px;
    padding: 20px;
    resize: vertical;
}

.submit-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 18px 40px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.submit-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 211, 169, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsivlik */
@media (max-width: 992px) {
    #elaqe {
        padding: 70px 0;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    #elaqe {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info-box, .contact-form {
        padding: 25px;
    }
}
  
  
  
  

/* Modern Footer Section */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-light));
}

.footer-logo {
    height: 100px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-links a {
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links li:hover::before {
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact-item i {
    margin-right: 15px;
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact-item span {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social-links a:hover {
    background-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-box {
        padding: 25px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
}
        
        /* Animation Elements */
        .bubble {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            animation: floatBubble linear infinite;
            z-index: 1;
        }
        
        .cleaning-icon {
            position: absolute;
            font-size: 2rem;
            color: rgba(255,255,255,0.15);
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }
        
        @keyframes floatBubble {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.2;
            }
            90% {
                opacity: 0.2;
            }
            100% {
                transform: translateY(-100vh) translateX(20px);
                opacity: 0;
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(5deg);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .slide-title {
                font-size: 3rem;
            }
            
            .footer-logo {
                height: 80px;
            }
        }
        
        @media (max-width: 992px) {
            .top-contact {
                display: none;
            }
            
            .mobile-contact {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 15px;
                background: rgba(0,0,0,0.2);
                border-radius: 5px;
                margin-top: 10px;
            }
            
            .header {
                top: 40px;
            }
            
            .header.scrolled {
                top: 0;
            }
            
            .navbar-collapse {
                background: rgba(5, 46, 51, 0.95);
                padding: 20px;
                margin-top: 15px;
                border-radius: 5px;
            }
            
            .slide-title {
                font-size: 2.5rem;
            }
            
            .about-text {
                padding-left: 0;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .logo {
                height: 100px;
            }
            
            .slide-title {
                font-size: 2rem;
            }
            
            .slide-subtitle {
                font-size: 1rem;
            }
            
            .footer-logo {
                height: 70px;
            }
            
            .slider-control {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .top-bar {
                padding: 8px 0;
                font-size: 12px;
            }
            
            .logo {
                height: 80px;
            }
            
            .slide-title {
                font-size: 1.8rem;
            }
            
            .slide-btn {
                padding: 12px 30px;
                font-size: 14px;
            }
            
            .footer-logo {
                height: 60px;
            }
            
            .footer-title {
                font-size: 1.1rem;
            }
            
            .slider-control {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .slider-prev {
                left: 15px;
            }
            
            .slider-next {
                right: 15px;
            }
            
            .content-section {
                padding: 60px 0;
            }
        }
  