/* General Style Resets and Base Settings */
body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #001F3F, #003087);
    color: #E0F7FA;
    line-height: 1.7;
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: padding-top 0.3s ease; /* Yumuşak geçiş için */
}

/* Energy Theme Color Palette */
.primary-dark-blue { color: #001F3F; } /* Koyu enerji mavisi */
.primary-dark-blue-bg { background-color: #001F3F; }
.secondary-electric-blue { color: #00BFFF; } /* Elektrik mavisi */
.secondary-electric-blue-bg { background-color: #00BFFF; }
.tertiary-lime-green { color: #32CD32; } /* Canlı lime yeşili */
.tertiary-lime-green-bg { background-color: #32CD32; }
.light-cyan-text { color: #B2EBF2; } /* Açık camgöbeği metin */
.dark-navy-bg { background-color: #003087; } /* Koyu lacivert arka plan */
.medium-blue-bg { background-color: #005BBB; } /* Orta mavi arka plan */
.white-text { color: #FFFFFF; } /* Beyaz metin */

/* Heading Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #00BFFF; /* Açık mavi-beyaz başlıklar */
}

/* General Button Styles */
.btn-energy {
    @apply inline-flex items-center justify-center px-10 py-4 font-semibold rounded-md shadow-lg transition duration-300 ease-in-out transform hover:scale-105;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    box-shadow: 0 6px 15px rgba(0, 191, 255, 0.4); /* Elektrik mavisi gölge */
    font-size: 1.1rem;
}
.btn-primary-energy {
    @apply bg-secondary-electric-blue text-primary-dark-blue hover:bg-tertiary-lime-green hover:text-white-text;
}
.btn-outline-energy {
    @apply border-2 border-secondary-electric-blue text-secondary-electric-blue bg-transparent hover:bg-secondary-electric-blue hover:text-primary-dark-blue;
}
.btn-dark-outline-energy {
    @apply border-2 border-white-text text-white-text bg-transparent hover:bg-white-text hover:text-primary-dark-blue;
}
.btn-contact-energy {
    @apply bg-tertiary-lime-green text-white-text hover:bg-secondary-electric-blue hover:text-primary-dark-blue;
}

/* Header Styles */
#main-header {
    background-color: #1A1A1A; /* Dark gray background */
    box-shadow: 0 4px 35px rgba(0,0,0,0.6);
    padding: 1rem 0;
    position: fixed; /* Fixed header for better UX */
    top: 0;
    width: 100%;
    z-index: 1000;
}
#main-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(0, 31, 63, 0.95); /* Daha opak koyu mavi */
    backdrop-filter: blur(10px);
}
.header-link-effect {
    color: #E0F7FA; /* Açık mavi-beyaz linkler */
    font-weight: 500;
    padding: 0.75rem 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}
.intro-content {
    font-size: 1.2rem;
    color: #B0B0B0;
    line-height: 1.8;
    padding: 0 20px; /* Adds 20px padding on left and right */
}
.header-link-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #32CD32; /* Lime yeşili hover efekti */
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s ease-out;
}
.header-link-effect:hover::before {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
}
.header-link-effect:hover {
    color: #32CD32; /* Lime yeşili hover */
}
.vertical-divider {
   /* background-color: rgba(224, 247, 250, 0.3); Açık mavi-beyaz divider */
   background-color: #ffff; 
    width: 2px;
    height: 30px;
}
#header-logo {
    filter: brightness(0) invert(1); /* Varsayılan olarak tamamen beyaz */
    transition: filter 0.3s ease;
}


/* Mobile Menu Styles */
#mobile-menu {
    background: #003087; /* Koyu lacivert arka plan */
    border-top: 1px solid rgba(224, 247, 250, 0.2);
    width: 100%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    position: absolute; /* Menü sabit değil, header'ın altına yerleşir */
    top: 100%; /* Header'ın hemen altında başlar */
    left: 0;
    z-index: 999; /* Header'ın altında, diğer içeriklerin üstünde */
}
.mobile-menu-link {
    @apply text-white-text hover:text-tertiary-lime-green transition duration-300 font-medium py-3 px-6 rounded-md;
    border-left: 4px solid transparent;
    font-size: 1rem;
}
.mobile-menu-link:hover {
    border-left-color: #32CD32;
}
.mobile-submenu-container {
    border-left: 2px solid rgba(224, 247, 250, 0.3);
    padding-left: 1.5rem;
    display: none;
}
.mobile-submenu-container.open {
    display: block;
}
.mobile-menu-chevron {
    transition: transform 0.3s ease;
}
.mobile-menu-chevron.rotate {
    transform: rotate(180deg);
}

/* Ensure mobile menu button and language switcher colors stay consistent */
.header-scrolled #mobile-menu-button .fa-bars {
    color: #E0F7FA !important;
}
.header-scrolled .group .text-white,
.header-scrolled .group .fa-globe,
.header-scrolled .group .fa-chevron-down {
    color: #E0F7FA !important;
}
.header-scrolled #mobile-menu .mobile-menu-link {
    color: #E0F7FA !important;
}

/* Slider Section (Hero Banner) */
.slider-container {
    height: 90vh;
    min-height: 400px;
    margin-bottom: 7rem;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px; /* Header yüksekliği kadar boşluk */
}
.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 31, 63, 0.7); /* Koyu mavi gölge */
}
.slider-item.active {
    opacity: 1;
}
.slider-overlay {
    background: linear-gradient(to right, rgba(0, 31, 63, 0.95), rgba(0, 91, 187, 0.75)); /* Koyu maviden orta maviye */
}
.slider-content {
    max-width: 1300px;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.slider-content h1 {
    font-size: 7.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6), 0 0 25px rgba(0, 191, 255, 0.4);
    animation: text-reveal 1.5s ease-out forwards;
}
@keyframes text-reveal {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
.slider-content p {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4.5rem;
    color: #E0F7FA;
    background: linear-gradient(to right, #E0F7FA, #00BFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-fade-in 1.8s ease-out forwards;
    animation-delay: 0.5s;
}
@keyframes text-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.slider-nav-arrow {
    background: rgba(0, 31, 63, 0.7); /* Koyu mavi arka plan */
    padding: 24px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    color: #E0F7FA;
    font-size: 2.2rem;
}
.slider-nav-arrow:hover {
    background: rgba(0, 31, 63, 0.95);
    transform: translateY(-50%) scale(1.1);
}

/* CTA Buttons */
.btn-neon {
    background-color: #00BFFF;
    color: #001F3F;
    border: 2px solid #00BFFF;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.7), 0 0 20px rgba(0, 191, 255, 0.5), 0 0 30px rgba(0, 191, 255, 0.3);
    transition: all 0.4s ease-in-out;
}
.btn-neon:hover {
    background-color: #32CD32;
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.9), 0 0 30px rgba(50, 205, 50, 0.7), 0 0 45px rgba(50, 205, 50, 0.5);
    transform: scale(1.05);
}
.btn-glassmorphism {
    background-color: rgba(224, 247, 250, 0.15); /* Açık mavi cam efekti */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 247, 250, 0.3);
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.3);
    transition: all 0.4s ease-in-out;
}
.btn-glassmorphism:hover {
    background-color: rgba(224, 247, 250, 0.25);
    border-color: rgba(224, 247, 250, 0.5);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.4);
}

/* RTL (Sağdan Sola) Özel Stiller */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}
html[dir="rtl"] .header-nav {
    margin-left: 0 !important;
    margin-right: auto !important;
}
html[dir="rtl"] .header-social-icons > * {
    margin-left: 0;
    margin-right: 0.75rem;
}
html[dir="rtl"] .vertical-divider {
    margin-left: 1rem;
    margin-right: 1rem;
}
html[dir="rtl"] .space-x-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 1;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
html[dir="rtl"] .ml-1 { margin-left: 0; margin-right: 0.25rem; }
html[dir="rtl"] .mr-4 { margin-right: 0; margin-left: 1rem; }
html[dir="rtl"] .mr-2 { margin-right: 0; margin-left: 0.5rem; }
html[dir="rtl"] .pr-2 { padding-right: 0; padding-left: 0.5rem; }
html[dir="rtl"] .fa-chevron-right {
    transform: scaleX(-1);
}
html[dir="rtl"] .fa-chevron-down {
    transform: scaleX(-1);
}
html[dir="rtl"] .first-level-dropdown {
    left: auto;
    right: 0;
}
html[dir="rtl"] .nested-level-dropdown {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 0.5rem;
}
html[dir="rtl"] .slider-nav-arrow.left {
    left: auto;
    right: 20px;
}
html[dir="rtl"] .slider-nav-arrow.right {
    right: auto;
    left: 20px;
}
html[dir="rtl"] .carousel-arrow.left {
    left: auto;
    right: 10px;
}
html[dir="rtl"] .carousel-arrow.right {
    right: auto;
    left: 10px;
}
html[dir="rtl"] .services-carousel {
    direction: rtl;
}
html[dir="rtl"] .service-card {
    margin-right: 10px;
    margin-left: 10px;
}

/* Yeni Ek: Slider Altı Tanıtım Bölümü */
.intro-section {
    background: linear-gradient(to bottom, #003087, #005BBB); /* Lacivertten orta maviye */
    padding: 4rem 0;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3); /* Enerji mavisi gölge */
    margin-top: -5rem;
    position: relative;
    z-index: 5;
}
.intro-section h2 {
 
    color: #00BFFF;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    background: linear-gradient(to right, #00BFFF, #32CD32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-reveal 1.5s ease-out forwards;
}

.intro-section p {
 
  font-size: 16px;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
color: #E0F7FA;
}




/* Energy Services Section */
.energy-services-section {
    background: linear-gradient(to bottom, #001F3F, #003087); /* Koyu maviden laciverte */
    padding: 11rem 0;
}
.energy-services-section h2 {
    font-size: 6.5rem;
    font-weight: 700;
    color: #E0F7FA;
    margin-bottom: 9rem;
    position: relative;
    display: inline-block;
    padding-bottom: 2.5rem;
    background: linear-gradient(to right, #00BFFF, #32CD32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.energy-services-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 180px;
    height: 12px;
    background-color: #00BFFF;
    border-radius: 6px;
}
.services-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
.energy-services-carousel {
    display: flex;
    gap: 3.5rem;
    transition: transform 0.5s ease;
    flex-wrap: nowrap;
    width: max-content;
}
.energy-service-card {
     display: flex !important; /* Görünürlüğü garantile */
    background: rgba(0, 91, 187, 0.8); /* Orta mavi cam efekti */
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    box-shadow: 0 18px 50px rgba(0, 191, 255, 0.3);
    border-top: 12px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: calc((1280px - 7rem) / 3);
    max-width: 100%;
}
.energy-service-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 40px 80px rgba(0, 191, 255, 0.5);
    border-color: #32CD32;
}
.energy-service-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
}
.energy-service-card-content {
    padding: 3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.energy-service-card-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #E0F7FA;
    margin-bottom: 1.8rem;
}
.energy-service-card-content p {
    font-size: 1.15rem;
    color: #B2EBF2;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 2rem;
}
.energy-service-card-link {
    @apply text-tertiary-lime-green font-semibold hover:text-secondary-electric-blue;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.service-icon {
    font-size: 4rem;
    color: #00BFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    transition: transform 0.3s ease;
}
.energy-service-card:hover .service-icon {
    transform: scale(1.1);
}
.carousel-arrow {
    background: rgba(0, 31, 63, 0.7);
    color: #E0F7FA;
    padding: 20px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 1.8rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.carousel-arrow.left {
    left: 10px;
}
.carousel-arrow.right {
    right: 10px;
}
.carousel-arrow:hover {
    background: rgba(0, 31, 63, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Project Gallery */
.project-gallery-section {
    background: linear-gradient(to bottom, #001F3F, #003087);
    padding: 10rem 0;
}
.project-gallery-section h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #E0F7FA;
    margin-bottom: 8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 2.5rem;
    background: linear-gradient(to right, #00BFFF, #32CD32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.project-gallery-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 180px;
    height: 12px;
    background-color: #00BFFF;
    border-radius: 6px;
}
.masonry-grid {
    column-count: 3;
    column-gap: 2rem;
}
.masonry-item {
    margin-bottom: 2rem;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}
.masonry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 191, 255, 0.5);
}
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
}
.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(50, 205, 50, 0.6), rgba(0, 191, 255, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 1rem;
}
.masonry-item:hover .holographic-overlay {
    opacity: 1;
}
.holographic-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}
.holographic-overlay p {
    font-size: 1rem;
    color: #E0F7FA;
}
.featured-project-card {
    grid-column: span 2;
    background: #003087;
    border: 2px solid #00BFFF;
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.featured-project-card h3 {
    font-size: 3rem;
    color: #00BFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.7);
}
.featured-project-card p {
    font-size: 1.2rem;
    color: #B2EBF2;
    max-width: 800px;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(to right, #001F3F, #003087, #005BBB); /* Enerji mavisi gradient */
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://placehold.co/1920x500/000000/000000?text=');
    opacity: 0.2;
    z-index: 0;
}
.cta-section-content {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    font-size: 7rem;
    font-weight: 700;
    text-shadow: 3px 3px 15px rgba(0, 31, 63, 0.9);
    color: white;
    line-height: 1.1;
}
.btn-cta-energy {
    background-color: #00BFFF;
    color: #001F3F;
    border: none;
    padding: 2rem 6rem;
    font-size: 1.6rem;
    border-radius: 9999px;
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
}
.btn-cta-energy:hover {
    background-color: #32CD32;
    color: #FFFFFF;
    transform: translateY(-12px) scale(1.06);
    box-shadow: 0 35px 70px rgba(50, 205, 50, 0.7);
}

/* Contact Form */
.contact-section {
    background: linear-gradient(to bottom, #003087, #001F3F);
    padding: 7rem 0;
}
.contact-section h2 {
    font-size: 5rem;
    font-weight: 700;
    color: #E0F7FA;
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}
.contact-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background-color: #00BFFF;
    border-radius: 4px;
}
.contact-form-container {
    background: rgba(0, 91, 187, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4);
    border: 1px solid rgba(224, 247, 250, 0.2);
}
.contact-info-card {
    background: rgba(0, 91, 187, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    padding: 2.8rem;
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.2);
    border-left: 8px solid #32CD32;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 191, 255, 0.3);
}
.contact-info-card i {
    color: #00BFFF;
    font-size: 2.5rem;
    margin-right: 1.2rem;
}
.contact-info-card span {
    color: #E0F7FA;
    font-size: 1.2rem;
}
.contact-form-input, .contact-form-textarea {
    border: 2px solid #005BBB;
    background: rgba(0, 91, 187, 0.4);
    color: #E0F7FA;
    @apply rounded-lg py-3.5 px-5 w-full;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    box-shadow: inset 0 2px 5px rgba(0, 31, 63, 0.4);
}
.contact-form-input::placeholder, .contact-form-textarea::placeholder {
    color: #B2EBF2;
}
.contact-form-input:focus, .contact-form-textarea:focus {
    border-color: #00BFFF;
    box-shadow: 0 0 0 5px rgba(0, 191, 255, 0.4);
    outline: none;
    background: rgba(0, 91, 187, 0.7);
}
.btn-submit-form {
    @apply bg-secondary-electric-blue text-primary-dark-blue px-12 py-4 rounded-md font-bold hover:bg-tertiary-lime-green hover:text-white-text transition duration-300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: linear-gradient(to top, #001F3F, #003087);
    color: #B2EBF2;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.footer-logo-container .footer-logo {
    filter: brightness(0) invert(1); /* Varsayılan olarak tamamen beyaz */
    transition: filter 0.3s ease;

}


.footer-menu-grid {
    gap: 1.2rem 3rem;

}

.footer-menu-grid li {
    padding-bottom: 10px;
}
.footer-link-effect {
    font-weight: 400;
    color: #B2EBF2;
    position: relative;
    overflow: hidden;
   
   


    
}
.footer-link-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #00BFFF;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;

}
.footer-link-effect:hover::before {
    transform: scaleX(1);
    transform-origin: bottom right;
}
footer .text-copyright {
    color: #B2EBF2;
}
.footer-social-widget {
    background: #003087;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
    border: 1px solid #005BBB;
}
.footer-social-widget h4 {
    color: #00BFFF;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.footer-social-widget img {
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

/* Styles for CKEditor Content */
.energy-about-content p {
    margin-bottom: 1.2em;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #B2EBF2;
}
.energy-about-content h2 {
    font-size: 2.8rem;
    border-bottom: 4px solid #00BFFF;
    padding-bottom: 0.8em;
    margin-top: 2.5em;
    margin-bottom: 1.2em;
    color: #E0F7FA;
}
.energy-about-content h3 {
    font-size: 2.2rem;
    color: #32CD32;
    margin-top: 2em;
    margin-bottom: 1em;
}
.energy-about-content h4 {
    font-size: 1.9rem;
    color: #E0F7FA;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
}
.energy-about-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2.5rem auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.35);
    border: 3px solid #005BBB;
}
.energy-about-content ul,
.energy-about-content ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5em;
    list-style-position: outside;
    color: #B2EBF2;
}
.energy-about-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}
.energy-about-content ol li {
    list-style-type: decimal;
    margin-bottom: 0.5em;
}
.energy-about-content a {
    color: #32CD32;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.energy-about-content a:hover {
    color: #00BFFF;
    text-decoration: none;
}
.energy-about-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.2);
    border-radius: 0.75rem;
    overflow: hidden;
}
.energy-about-content th,
.energy-about-content td {
    padding: 1.2rem 1.8rem;
    border: 1px solid #005BBB;
    text-align: left;
    font-size: 1rem;
    color: #E0F7FA;
}
.energy-about-content th {
    background: #003087;
    font-weight: 600;
    color: #E0F7FA;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.energy-about-content tr:nth-child(even) {
    background: #001F3F;
}
.energy-about-content tr:hover {
    background: #005BBB;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--animation-delay, 0s);
}
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}
.animate-scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--animation-delay, 0s);
}
.animate-scale-in.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Language Switcher Dropdown Styles */
header .group .absolute a {
    color: #000000 !important; /* Siyah metin rengi */
}
header .group .absolute a:hover {
    color: #00BFFF !important; /* Elektrik mavisi (temaya uygun) */
    background-color: #E0F7FA !important; /* Açık mavi-beyaz arka plan */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .slider-container { height: 80vh; }
    .slider-content h1 { font-size: 5rem; }
    .slider-content p { font-size: 2rem; }
    .intro-section { padding: 3rem 0; }
    .intro-section h2 { font-size: 3rem; }
    .energy-about-section { padding: 6rem; margin-top: -150px; }
    .energy-about-section h2 { font-size: 4rem; }
    .energy-services-section { padding: 8rem 0; }
    .energy-services-section h2 { font-size: 5rem; }
    .energy-service-card {
        width: calc((100% - 3.5rem) / 2);
        max-width: none;
    }
    .carousel-arrow.left { left: 5px; }
    .carousel-arrow.right { right: 5px; }
    .cta-section h2 { font-size: 5rem; }
    .btn-cta-energy { padding: 1.5rem 4rem; font-size: 1.4rem; }
    .contact-section h2 { font-size: 4rem; }
    .masonry-grid { column-count: 2; }
}

@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        min-height: 350px;
        margin-top: 60px; /* Header yüksekliği kadar boşluk */
    }
}
    .slider-content h1 { font-size: 3.5rem; }
    .slider-content p { font-size: 1.5rem; }
    .slider-nav-arrow { padding: 16px; font-size: 1.8rem; }
    .intro-section { padding: 2rem 0; margin-top: -3rem; }
    .intro-section h2 { font-size: 2.5rem; }
    .energy-about-section { padding: 4rem; margin-top: -100px; }
    .energy-about-section h2 { font-size: 3rem; }
    .energy-services-section { padding: 6rem 0; }
    .energy-services-section h2 { font-size: 2.5rem; }
    .services-carousel-wrapper {
        overflow: visible;
        padding: 0 1rem;
    }
    .energy-services-carousel {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }
    .energy-service-card {
        width: 100%;
        max-width: none;
        margin-bottom: 1rem;
    }

    
    .carousel-arrow {
        display: none;
    }
    .cta-section h2 { font-size: 3.5rem; }
    .btn-cta-energy { padding: 1.2rem 3rem; font-size: 1.2rem; }
    .contact-section { padding: 5rem 0; }
    .contact-section h2 { font-size: 3rem; }
    .contact-form-container { padding: 2rem; }
    .contact-info-card { padding: 2rem; }
    .contact-info-card i { font-size: 2rem; }
    .contact-info-card span { font-size: 1rem; }
    .masonry-grid { column-count: 1; }
    .footer-menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .slider-container { height: 50vh; min-height: 300px; }
    .slider-content h1 { font-size: 2.5rem; }
    .slider-content p { font-size: 1.2rem; }
    .slider-nav-arrow { padding: 12px; font-size: 1.5rem; }
    .intro-section { padding: 1.5rem 0; margin-top: -2rem; }
    .intro-section h2 { font-size: 2rem; }
    .energy-about-section { padding: 2rem; margin-top: -80px; }
    .energy-about-section h2 { font-size: 2.5rem; }
    .energy-services-section { padding: 4rem 0; }
    .energy-services-section h2 { font-size: 2.8rem; }
    .energy-service-card { width: 100%; }
    .cta-section h2 { font-size: 2.8rem; }
    .btn-cta-energy { padding: 1rem 2rem; font-size: 1rem; }
    .contact-section h2 { font-size: 2.5rem; }
    .contact-form-input, .contact-form-textarea { font-size: 0.9rem; }
    .btn-submit-form { font-size: 1rem; }
}