/* style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #11a9dd;
    --primary-hover: #0498c2;
    --dark-color: #1a1a1a;
    --light-color: #f8f8f8;
    --text-color: #555;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #065095;
}

h1, h2, h3, h4, h5, .display-font {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
}	

header {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 3;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3em;
    color: #00bfff;
    animation: slideDown 1s ease-out forwards;
}

.hero-content p {
    margin-top: 15px;
    color: #cce6ff;
    animation: fadeIn 2s ease-in forwards;
}

.btn {
    margin-top: 30px;
    padding: 15px 35px;
    font-size: 1em;
    color: #00bfff;
    border: 2px solid #00bfff;
    background: transparent;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00bfff;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: #0a192f;
}

.btn:hover::before {
    left: 0;
}

 /* Dropdown Animasyonları */
        .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-top: 0;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            margin-top: 0;
        }
        
        .dropdown-menu li {
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .dropdown:hover .dropdown-menu li {
            transform: translateY(0);
            opacity: 1;
        }
        
        .dropdown-menu li:nth-child(1) {
            transition-delay: 0.1s;
        }
        
        .dropdown-menu li:nth-child(2) {
            transition-delay: 0.2s;
        }
        
        .dropdown-menu li:nth-child(3) {
            transition-delay: 0.3s;
        }
        
        /* Diğer stiller */
        .navbar {
             padding: 20px 0;
    background-color: white;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
        }
        
        .nav-link {
            font-weight: 500;
            color: #333;
            padding: 10px 15px;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 10px 0;
        }
        
        .dropdown-item {
            padding: 8px 20px;
            transition: all 0.2s;
        }
        
        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #0d6efd;
            padding-left: 25px;
        }

.event-card img {
    height: 250px;
    object-fit: cover;
}

.services-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.services-section .service-box {
    text-align: center;
    padding: 20px;
}

.services-section .service-box i {
    font-size: 48px;
    color: #3866a4;
    margin-bottom: 15px;
}

footer {
    background-color: #0498c2;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.language-dropdown {
    margin-left: 15px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-color);
}
.about-section2 {
    padding: 100px 0;
    background-color:white;
}

.about-img {
    position: relative;
    overflow: hidden;
    height: 500px;
}

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

.about-img:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 0 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: white;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
}

.btn-outline-primary {
    border-color: white;
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Brand Carousel Section */
.brands {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.brand-carousel {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.brand-carousel h3 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 24px;
    color: #555;
}

.brand-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(200px * 12);
}

.brand-slide {
    height: 100px;
    margin: 0 30px;
    display: flex;
    align-items: center;
}

.brand-slide img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.gallery-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

 /* Pro Top Box Container */
        .pro-top-box {
            position: relative;
            width: 100%;
            height: 500px;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('../images/teknoloji.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        /* Başlık Stili */
        .pro-top-box h2 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Buton Container */
        .pro-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 900px;
            margin-top: 20px;
        }
        
        /* Buton Stilleri */
        .pro-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 25px;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 200px;
            text-align: center;
            backdrop-filter: blur(5px);
        }
        
        .pro-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .pro-btn.active {
            background-color: #0066cc;
            border-color: #0066cc;
        }
		
/* ProSlider Stilleri */
    .proSlider {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 100%; /* Kare oran (1:1) */
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .proSlider .slider-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .proSlider .slider-track {
        display: flex;
        height: 100%;
        transition: transform 0.5s ease;
    }
    
    .proSlider .slide {
        min-width: 100%;
        height: 100%;
    }
    
    .proSlider .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .proSlider .slider-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 15px;
    }
    
    .proSlider .slider-prev,
    .proSlider .slider-next {
        background: rgba(255, 255, 255, 0.7);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .proSlider .slider-prev:hover,
    .proSlider .slider-next:hover {
        background: rgba(255, 255, 255, 0.9);
    }
    
    .proSlider .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    
    .proSlider .slider-dots .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .proSlider .slider-dots .dot.active {
        background: #fff;
        transform: scale(1.2);
    }
.contact-section {
  background-color: #ffffff;
  padding: 80px 0;
}



.section-subtitle {
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Location Card Stilleri */
.location-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-wrapper {
  height: 300px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info {
  padding: 25px;
}

.location-info h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.location-info h3 i {
  margin-right: 10px;
  color: #3498db;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #34495e;
}

.contact-list li i {
  margin-right: 10px;
  color: #3498db;
  width: 20px;
  text-align: center;
}
/* 3 lü bölüm Section Stilleri */

.about3-section {
    background-color: #f8f9fa;
}
.about4-section {
    background-color:#ffffff;
}


.about-left-card,
.about-right-card,
.about-main-content {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-left-card:hover,
.about-right-card:hover,
.about-main-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.about-bottom-card {
    border: 1px solid #e9ecef;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.badge {
    font-size: 0.85rem;
    padding: 0.5em 0.8em;
}
.reference-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .reference-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
    .reference-item img {
        object-fit: cover;
        height: 200px;
        width: 100%;
    }
    .divider {
        opacity: 0.7;
    }


        
        /* Galeri Stilleri */
        .gallery-section {
            max-width: 1400px;
            margin: 0 auto;
			line-height: 1.6;
            background-color: #ffffff;
            padding: 20px;
        }
        
        .gallery-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 2.2rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            grid-gap: 20px;
            grid-auto-rows: minmax(200px, auto);
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            background-color: #f0f0f0;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease, opacity 0.6s ease;
            opacity: 0.95;
        }
        
        /* Farklı boyutlandırmalar */
        .gallery-item.portrait {
            grid-row: span 2;
        }
        
        .gallery-item.landscape {
            grid-column: span 1;
        }
        
        .gallery-item.wide {
            grid-column: span 2;
        }
        
        /* Hover Efektleri */
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
            opacity: 1;
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
.floating-contact {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .contact-button {
            position: relative;
            background-color: #0056b3;
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 86, 179, 0.3);
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }

        .contact-button:hover {
            background-color: #ff6b00;
            transform: scale(1.1);
            box-shadow: 0 4px 25px rgba(255, 107, 0, 0.4);
        }

        .pulse-ring {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: rgba(0, 86, 179, 0.4);
            animation: pulse 2s infinite;
            z-index: -1;
        }

        .pulse-ring.delay {
            animation-delay: 1s;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 1;
            }
            70% {
                transform: scale(1.3);
                opacity: 0;
            }
            100% {
                opacity: 0;
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-15px);
            }
            60% {
                transform: translateY(-7px);
            }
        }

        .contact-form-container {
            display: none;
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 300px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            padding: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .contact-form-container.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .contact-form-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .contact-form-header h3 {
            margin: 0;
            font-size: 18px;
            color: #333;
        }

        .close-form {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #666;
            transition: transform 0.3s;
        }

        .close-form:hover {
            transform: rotate(90deg);
            color: #ff6b00;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2);
        }

        .form-group textarea {
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #0056b3;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            background-color: #ff6b00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }
       
		
        /* Açılış Animasyonu */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gallery-item {
            animation: fadeInUp 0.8s ease-out forwards;
            animation-delay: calc(var(--i) * 0.1s);
            opacity: 0;
        }
		
		
		 /* Responsive Ayarlar */
        @media (max-width: 1024px) {
            .gallery-grid {
                grid-gap: 15px;
            }
            
            .gallery-item.wide {
                grid-column: span 1;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                grid-gap: 12px;
            }
            
            .gallery-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item.portrait {
                grid-row: span 1;
            }
        }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); }
}

@keyframes slideDown {
    0% { transform: translateY(-40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
/* Responsive Ayarlar */
@media (max-width: 992px) {
    .about-main-content {
        margin-top: 30px;
    }
}
@media(max-width: 768px) {
    .about {
        flex-direction: column;
        padding: 40px 20px;
    }

    header {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
    .pro-top-box {
        height: auto;
        padding: 60px 20px;
            }
            
.pro-top-box h2 {
font-size: 32px;
margin-bottom: 20px;
}
.pro-buttons {
flex-direction: column;
gap: 15px;
}
.pro-btn {
 width: 100%;
}
			 .contact-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .location-card {
    margin-bottom: 30px;
  }
  
  .location-info {
    padding: 20px;
  }
 .section-title {
        font-size: 1.8rem;
    }
    
    .about-left-card,
    .about-right-card {
        margin-bottom: 20px;
    }
 
} 
 @media (max-width: 576px) {
            .contact-form-container {
                width: 280px;
                right: -10px;
            }
        }