        :root {
            --primary: #0056b3;
            --primary-dark: #004494;
            --primary-light: #e6f0ff;
            --secondary: #00d4ff;
            --dark: #111927;
            --light: #ffffff;
            --gray: #f8f9fa;
            --text: #333;
            --text-light: #666;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        /* Glassmorphism Effect */
        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        /* Modern Navbar */
        .navbar {
            padding: 15px 0;
            transition: var(--transition);
            background-color: transparent;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .navbar-brand {
            display: flex;
            flex-direction: column;
        }
        
        /* Logo boyut stillemesi */
        .navbar-brand img {
            height: 50px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            transition: var(--transition);
        }
        
        /* Logo değişimi artık JavaScript ile yapılıyor */
        
        .navbar.scrolled .navbar-brand img {
            height: 40px;
        }
        
        .navbar-brand h1 {
            font-size: 24px;
            font-weight: 700;
            color: var(--light);
            margin: 0;
            background: linear-gradient(45deg, var(--light), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .navbar-brand p {
            font-size: 12px;
            color: var(--light);
        }
        
        .navbar-nav .nav-link {
            color: var(--light) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--light);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 80%;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--light) !important;
        }
        
        /* Hamburger menü ikonu için */
        .navbar-toggler {
            border-color: var(--light);
        }
        
        .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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }
        
        .navbar.scrolled .navbar-nav .nav-link {
            color: var(--text) !important;
        }
        
        .navbar.scrolled .navbar-nav .nav-link::after {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
        }
        
        .navbar.scrolled .navbar-nav .nav-link:hover,
        .navbar.scrolled .navbar-nav .nav-link.active {
            color: var(--primary) !important;
        }
        
        .navbar.scrolled .navbar-toggler {
            border-color: var(--text);
        }
        
        .navbar.scrolled .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(17, 25, 39, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }
        
        .dropdown-menu {
            border: none;
            border-radius: 15px;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            display: block;
            transition: var(--transition);
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            padding: 10px 25px;
            color: var(--text);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .dropdown-item:hover {
            background-color: transparent;
            color: var(--primary);
            padding-left: 30px;
        }
        
        .dropdown-item::before {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            left: 25px;
            top: 50%;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .dropdown-item:hover::before {
            width: 10px;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 750px; /* Sabit yükseklik tanımı */
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #322278ef, rgba(0, 212, 255, 0.8)), url('/images/sinerji-ndt.webp') no-repeat center center/cover;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3QgaWQ9InBhdHRlcm4tYmFja2dyb3VuZCIgd2lkdGg9IjQwMCUiIGhlaWdodD0iNDAwJSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwKSI+PC9yZWN0PiA8Y2lyY2xlIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIGN4PSIyMCIgY3k9IjIwIiByPSIxIj48L2NpcmNsZT48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiPjwvcmVjdD48L3N2Zz4=');
            opacity: 0.5;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        /* Hero Slider Styles */
        .hero-text-slider,
        .hero-image-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .hero-slide-text,
        .hero-slide-container {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            transition: opacity 1s ease;
            pointer-events: none;
        }
        
        .hero-slide-text.active,
        .hero-slide-container.active {
            opacity: 1;
            position: relative;
            pointer-events: auto;
        }
        
        .hero-inner-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .hero-inner-slide {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            transition: opacity 1.2s ease-in-out;
            pointer-events: none;
        }
        
        .hero-inner-slide.active {
            opacity: 1;
            position: relative;
            pointer-events: auto;
        }
        
        .hero-slider-dots {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }
        
        .hero-inner-dots {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }
        
        .hero-dot, .hero-inner-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        }
        
        .hero-inner-dot {
            width: 8px;
            height: 8px;
            background-color: rgba(0, 86, 179, 0.5);
        }
        
        .hero-dot.active {
            background-color: white;
            transform: scale(1.2);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }
        
        .hero-inner-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
            box-shadow: 0 0 8px rgba(0, 86, 179, 0.5);
        }
        
        .hero-image-slider {
            position: relative;
            padding-bottom: 40px; /* Noktalar için yer oluştur */
        }
        
        .hero-slide-container, .hero-inner-slider {
            margin-bottom: 10px;
        }
        
        .hero-image-slider img {
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn:hover::before {
            width: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
        }
        
        .btn-primary:hover {
            box-shadow: 0 15px 25px rgba(0, 86, 179, 0.4);
            background: linear-gradient(45deg, var(--primary), var(--secondary));
        }
        
        .btn-light {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary);
            border: none;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-light:hover {
            background: var(--light);
            color: var(--primary);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
        }
        
        .btn-outline-light {
            color: var(--light);
            border: 2px solid rgba(255, 255, 255, 0.5);
            background: transparent;
        }
        
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--light);
            color: var(--light);
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        /* Angled Section Divider */
        .section-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .section-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }

        .section-divider .shape-fill {
            fill: #f8f9fa;
        }
        
        /* Services Section */
        .services {
            background-color: var(--gray);
            position: relative;
            overflow: hidden;
        }
        
        .services::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0, 86, 179, 0.1), rgba(0, 212, 255, 0.1));
            top: -150px;
            right: -150px;
            z-index: 0;
        }
        
        .services::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 86, 179, 0.1));
            bottom: -150px;
            left: -150px;
            z-index: 0;
        }
        
        .section-header {
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::before {
            content: '';
            position: absolute;
            width: 50%;
            height: 6px;
            border-radius: 3px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            bottom: -15px;
            left: 0;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
        }
        
        .service-card {
            background-color: var(--light);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            overflow: hidden;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            opacity: 0.05;
            transition: var(--transition);
            z-index: -1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, rgba(0, 86, 179, 0.1), rgba(0, 212, 255, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transform: rotateY(180deg);
        }
        
        .service-icon i {
            font-size: 36px;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon i {
            color: var(--light);
            transform: rotateY(180deg);
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .service-card:hover h3 {
            color: var(--primary);
        }
        
        .service-card p {
            color: var(--text-light);
            margin-bottom: 25px;
        }
        
        .read-more {
            color: var(--primary);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .read-more:hover {
            color: var(--secondary);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* About Section */
        .about {
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0, 86, 179, 0.05), rgba(0, 212, 255, 0.05));
            top: -250px;
            left: -250px;
            z-index: 0;
        }
        
        .about-image {
            position: relative;
            z-index: 1;
        }
        
        .about-img-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
        
        .about-img-wrapper img {
            transition: var(--transition);
        }
        
        .about-img-wrapper:hover img {
            transform: scale(1.05);
        }
        
        .about-experience {
            position: absolute;
            bottom: 30px;
            right: 0px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--light);
            padding: 20px 30px;
        }
        
        .about-experience h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .about-experience p {
            font-size: 1rem;
            margin-bottom: 0;
        }
        
        .about-text {
            position: relative;
            z-index: 1;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .about-text h2::before {
            content: '';
            position: absolute;
            width: 50%;
            height: 6px;
            border-radius: 3px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            bottom: -15px;
            left: 0;
        }
        
        .about-text p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .about-features {
            margin-top: 30px;
            margin-bottom: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, rgba(0, 86, 179, 0.1), rgba(0, 212, 255, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            font-size: 20px;
            color: var(--primary);
        }
        
        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .feature-text p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--gray);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0, 86, 179, 0.05), rgba(0, 212, 255, 0.05));
            bottom: -200px;
            right: -200px;
            z-index: 0;
        }
        
        /* Enhanced Testimonial Slider */
        .testimonial-slider {
            padding-bottom: 60px;
            overflow: visible;
        }
        
        .testimonial-card {
            background-color: var(--light);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            margin: 20px 15px 40px;
            border: 1px solid rgba(0, 0, 0, 0.03);
            height: calc(100% - 60px);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 3rem;
            color: rgba(0, 86, 179, 0.1);
            z-index: -1;
        }
        
        .testimonial-text {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--primary-light);
            transition: var(--transition);
        }
        
        .testimonial-card:hover .author-image {
            border-color: var(--secondary);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        .swiper-pagination {
            bottom: 0;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--primary);
            opacity: 0.5;
            transition: var(--transition);
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            width: 30px;
            border-radius: 6px;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            width: 50px !important;
            height: 50px !important;
            border-radius: 50%;
            color: var(--light);
            transition: var(--transition);
        }
        
       
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3QgaWQ9InBhdHRlcm4tYmFja2dyb3VuZCIgd2lkdGg9IjQwMCUiIGhlaWdodD0iNDAwJSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwKSI+PC9yZWN0PiA8Y2lyY2xlIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIGN4PSIyMCIgY3k9IjIwIiByPSIxIj48L2NpcmNsZT48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiPjwvcmVjdD48L3N2Zz4=');
            opacity: 0.5;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 80px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0, 86, 179, 0.05), rgba(0, 212, 255, 0.05));
            top: -150px;
            right: -150px;
            z-index: 0;
        }
        
        .footer-content {
            position: relative;
            z-index: 1;
        }
        
        .footer-logo {
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .footer-logo h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 20px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        
        /* Footer logo stillemesi */
        .footer-logo img {
            height: 60px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            margin-bottom: 15px;
        }
        
        .footer-logo p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        
        .footer-contact h4,
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .footer-contact h4::before,
        .footer-links h4::before {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            border-radius: 2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            bottom: -10px;
            left: 0;
        }
        
        .footer-contact ul li,
        .footer-links ul li {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-contact ul li i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .footer-contact ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-contact ul li a:hover {
            color: var(--light);
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links ul li a::before {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--secondary);
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: var(--transition);
        }
        
        .footer-links ul li a:hover {
            color: var(--light);
            padding-left: 20px;
        }
        
        .footer-links ul li a:hover::before {
            background: var(--primary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transform: translateY(-5px);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.4);
        }
        
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: var(--primary);
            border-bottom-color: var(--secondary);
            animation: spin 1.5s linear infinite;
        }
        
        .loader:before, .loader:after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 3px solid transparent;
        }
        
        .loader:before {
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border-top-color: var(--secondary);
            border-bottom-color: var(--primary);
            animation: spin 2s linear infinite;
        }
        
        .loader:after {
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border-top-color: var(--primary);
            border-bottom-color: var(--secondary);
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-header h2,
            .about-text h2,
            .cta h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .hero {
                height: 550px;
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .about-experience {
                position: relative;
                bottom: auto;
                right: auto;
                display: inline-block;
                margin-top: 30px;
            }
            
            .navbar {
                background-color: transparent;
                box-shadow: none;
            }
            
            .navbar.scrolled {
                background-color: rgba(255, 255, 255, 0.95);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--light) !important;
            }
            
            .navbar.scrolled .navbar-nav .nav-link {
                color: var(--text) !important;
            }
            
            .navbar.scrolled .navbar-nav .nav-link:hover,
            .navbar.scrolled .navbar-nav .nav-link.active {
                color: var(--primary) !important;
            }
            
            .navbar-toggler {
                border-color: var(--light);
            }
            
            .navbar.scrolled .navbar-toggler {
                border-color: var(--text);
            }
            
            .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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
            }
            
            .navbar.scrolled .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(17, 25, 39, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
            }
            
            .navbar-collapse {
                background-color: rgba(0, 86, 179, 0.9);
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                margin-top: 15px;
            }
            
            .navbar.scrolled .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.95);
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
            }
            
            .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                box-shadow: none;
                padding: 0 0 0 15px;
                margin-top: 10px;
                margin-bottom: 10px;
                background-color: rgba(255, 255, 255, 0.2);
                border-radius: 8px;
            }
            
            .navbar.scrolled .dropdown-menu {
                background-color: rgba(240, 240, 240, 0.9);
            }
            
            .dropdown-item {
                padding: 8px 15px;
                color: var(--light) !important;
            }
            
            .navbar.scrolled .dropdown-item {
                color: var(--text) !important;
            }
            
            .dropdown-item:hover {
                padding-left: 20px;
                background-color: rgba(255, 255, 255, 0.1);
                color: var(--light) !important;
            }
            
            .navbar.scrolled .dropdown-item:hover {
                background-color: rgba(0, 86, 179, 0.1);
                color: var(--primary) !important;
            }
            
            .swiper-button-next,
            .swiper-button-prev {
                display: none;
            }
        }
        
        @media (max-width: 767.98px) {
            .section-padding {
                padding: 50px 0;
            }
            
            .hero {
                height: 500px;
                padding: 60px 0 50px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-header h2,
            .about-text h2,
            .cta h2 {
                font-size: 1.8rem;
            }
            
            .about-img-wrapper {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero {
                height: 450px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-header h2,
            .about-text h2,
            .cta h2 {
                font-size: 1.6rem;
            }
            
            .btn {
                padding: 10px 25px;
            }
        }
        
        /* Responsive düzenlemeler */
        @media (max-width: 768px) {
            .navbar-brand img {
                height: 40px;
                max-width: 150px;
            }
            
            .navbar.scrolled .navbar-brand img {
                height: 35px;
            }
            
            .footer-logo img {
                height: 50px;
                max-width: 160px;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand img {
                height: 35px;
                max-width: 130px;
            }
            
            .navbar.scrolled .navbar-brand img {
                height: 30px;
            }
            
            .footer-logo img {
                height: 45px;
                max-width: 140px;
            }
        }

        .page-header {
            position: relative;
            padding: 150px 0 100px;
            background: linear-gradient(135deg, #322278ef, rgba(0, 212, 255, 0.8)), url('/images/sinerji-ndt.webp') no-repeat center center/cover;
            color: var(--light);
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3QgaWQ9InBhdHRlcm4tYmFja2dyb3VuZCIgd2lkdGg9IjQwMCUiIGhlaWdodD0iNDAwJSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwKSI+PC9yZWN0PiA8Y2lyY2xlIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIGN4PSIyMCIgY3k9IjIwIiByPSIxIj48L2NpcmNsZT48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiPjwvcmVjdD48L3N2Zz4=');
            opacity: 0.5;
        }
        
        .page-header-content {
            position: relative;
            z-index: 1;
        }
        
        .page-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: #fff;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.6);
        }        

        /* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), rgba(0, 212, 255, 0.05));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 86, 179, 0.1);
  }
  
  .cta-box h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  
  .cta-box p {
    color: var(--text-light);
    margin-bottom: 0;
  }

  /* Table */
.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .table-primary {
    background-color: var(--primary);
    color: var(--light);
  }
  
  .table th,
  .table td {
    padding: 15px;
    vertical-align: middle;
  }

  /* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
  }
  
  .feature-list li {
    display: flex;
    margin-bottom: 20px;
    background-color: var(--light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }
  
  .feature-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .feature-icon i {
    font-size: 20px;
    color: var(--primary);
  }
  
  .feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
  }
  
  .feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0 !important;
    color: var(--text-light);
  }

  /* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
  }
  
  .sidebar-widget {
    background-color: var(--light);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .sidebar-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
  }
  
  .sidebar-widget h3::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
    border-radius: 3px;
  }

  /* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-info li {
    display: flex;
    margin-bottom: 20px;
  }
  
  .contact-info li i {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    flex-shrink: 0;
  }
  
  .contact-info li div h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
  }
  
  .contact-info li div p {
    margin-bottom: 0;
    color: var(--text-light);
  }
  
  /* Download Button */
  .download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
    padding: 15px 20px;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
  }
  
  .download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.4);
    color: var(--light);
  }
  
  .download-btn i {
    font-size: 20px;
  }
  
  .download-btn span {
    flex-grow: 1;
    text-align: center;
    font-weight: 500;
  }
/* Application Cards */
.application-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
  }
  
  .application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .application-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .application-icon i {
    font-size: 24px;
    color: var(--primary);
  }
  
  .application-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
  }
  
  .application-card p {
    color: var(--text-light);
    margin-bottom: 0;
  }
  
    /* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
  }
  
  .sidebar-widget {
    background-color: var(--light);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .sidebar-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
  }
  
  .sidebar-widget h3::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
    border-radius: 3px;
  }

  /* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .service-list li {
    margin-bottom: 10px;
    border-radius: 10px;
    transition: var(--transition);
  }
  
  .service-list li a {
    display: block;
    padding: 15px;
    color: var(--text);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .service-list li a i {
    margin-right: 10px;
    color: var(--primary);
  }
  
  .service-list li:hover a {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: translateX(5px);
  }
  
  .service-list li.active a {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
  }
  
  .service-list li.active a i {
    color: var(--light);
  } 

  .section-divider .shape-fill {
    fill: #ffffff;
  }
  
  /* Content Section */
  .content-section {
    position: relative;
  }
  
  .content-wrapper {
    background-color: var(--light);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 30px;
  }
  
  .content-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .content-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
  }
  
  .content-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    color: var(--primary-dark);
  }
  
  .content-text p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.8;
  }
  
  /* Gallery */
  .gallery-container {
    margin-bottom: 30px;
  }
  
  .gallery-item {
    margin-bottom: 20px;
    transition: var(--transition);
  }
  
  .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  
  .gallery-item:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  .reference-item {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

.reference-item img {
    max-height: 70px;
    max-width: 100%;
    
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(100%);
    
}

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info {
            margin-bottom: 50px;
        }
        
        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .contact-info h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            bottom: -10px;
            left: 0;
        }
        
        .contact-info p {
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: var(--light);
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
        }
        
        .contact-icon i {
            font-size: 20px;
        }
        
        .contact-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--primary-dark);
        }
        
        .contact-text p, .contact-text a {
            color: var(--text-light);
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        .contact-text a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .social-links a:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--light);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
        }
        
        /* Contact Form */
        .contact-form {
            background-color: var(--light);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0, 86, 179, 0.05), rgba(0, 212, 255, 0.05));
            top: -150px;
            right: -150px;
            z-index: -1;
        }
        
        .contact-form::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.05), rgba(0, 86, 179, 0.05));
            bottom: -150px;
            left: -150px;
            z-index: -1;
        }
        
        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .contact-form h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            bottom: -10px;
            left: 0;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-control {
            height: 55px;
            padding: 0.375rem 1.2rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: var(--text);
            background-color: var(--gray);
            border: 2px solid transparent;
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            color: var(--text);
            background-color: var(--light);
            border-color: var(--primary-light);
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.1);
        }
        
        textarea.form-control {
            height: auto;
            min-height: 150px;
            resize: vertical;
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn:hover::before {
            width: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
        }
        
        .btn-primary:hover {
            box-shadow: 0 15px 25px rgba(0, 86, 179, 0.4);
            background: linear-gradient(45deg, var(--primary), var(--secondary));
        }
        
        /* Map Section */
        .map-section {
            padding: 0 0 80px;
        }
        
        .map-container {
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .content-text ul li {
            line-height: 160%;
        }