/* Modern Theme - Core Styles */
:root {
    /* Colors */
    --primary-color: #00BCD4;
    /* Cyan/Turquoise adapted for Apaydin */
    --primary-light: #B2EBF2;
    --primary-dark: #0097A7;

    --secondary-color: #0D47A1;
    /* Dark Blue as secondary */
    --secondary-dark: #002171;

    --accent-color: #FFC107;
    /* Amber for highlights */

    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;

    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --text-white: #ffffff;

    --border-color: #e0e0e0;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Shadows relative to Y axis */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: var(--font-main) !important;
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Override any potential pink (#E91E63) from old themes */
[style*="#E91E63"],
.text-pink,
.bg-pink {
    color: var(--primary-color) !important;
}

.bg-pink {
    background-color: var(--primary-color) !important;
}

/* Force standard link hover if not overridden */
a:hover {
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-4 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-white) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e49200;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #e49200;
}

.btn-outline {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background: white;
    color: #e49200;
}

.btn-outline-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background: #e49200;
    color: white;
    border-color: #e49200;
}

/* Header Styles */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition-normal);
    background-color: #ffffff;
    /* Force White */
    box-shadow: var(--shadow-sm);
}

.modern-header.scrolled,
.modern-header.header-white {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.modern-header .navbar-brand img,
.modern-logo {
    height: 90px;
    max-height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
    margin-left: 0;
}

/* Header Divider */
.header-divider {
    width: 1px;
    height: 24px;
    background-color: #e0e0e0;
    margin: 0 25px;
}

/* Phone Icon Box */
.phone-icon-box {
    width: 36px;
    height: 36px;
    background-color: #e8f5e9;
    /* Light Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    /* Dark Green */
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

/* Header CTA Button - Specific Green -> Blue */
.btn-header-cta {
    background-color: #00BCD4;
    /* Blue */
    color: white;
    border-radius: 50px;
    /* Pill shape */
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    /* Normal case */
}

.btn-header-cta:hover {
    background-color: #0097A7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 151, 167, 0.2);
}

@media (max-width: 991px) {

    .modern-header .navbar-brand img,
    .modern-logo {
        height: 60px;
        max-height: 60px;
        margin-left: 0;
    }
}

.modern-nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 15px;
    position: relative;
    font-size: 16px;
}

.modern-nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #e49200;
    transition: var(--transition-fast);
}

.modern-nav-link:hover:after,
.modern-nav-link.active:after {
    width: 100%;
}

.modern-nav-link:hover {
    color: #e49200;
}

.header-cta-btn {
    padding: 10px 24px;
    font-size: 15px;
}

/* Sections */
.section-padding {
    padding: var(--spacing-lg) 0;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.new-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f0f4f8;
    overflow: hidden;
    padding-top: 80px;
}

.new-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #E3F2FD 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #90CAF9;
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #64B5F6;
    bottom: -50px;
    left: -100px;
}

.new-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #333 0%, #0D6EFD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-subhead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Service Cards */
.modern-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modern-service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: var(--transition-normal);
    z-index: -2;
}

.modern-service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: -1;
    transition: var(--transition-normal);
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.modern-service-card:hover .modern-service-card-bg {
    opacity: 0.3;
    transform: scale(1.1);
}

.modern-service-card:hover:before {
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.1) 100%);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.modern-service-card:hover .service-icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.modern-service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modern-service-text {
    color: var(--text-medium);
    margin-bottom: 0;
    font-weight: 500;
}

/* Features / About Split */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.split-content {
    flex: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item h4 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer */
.modern-footer {
    background-color: var(--bg-dark);
    color: #e0e0e0;
    padding: 80px 0 30px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    max-width: 180px;
    margin-bottom: 30px;
}

.footer-desc {
    color: #a0a0a0;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #e49200;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background: #e49200;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 60px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .modern-header {
        background-color: white;
        padding: 15px 0;
        box-shadow: var(--shadow-sm);
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column-reverse;
    }

    .modern-nav-menu {
        display: none;
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.float-btn.whatsapp {
    background-color: #25D366;
}

.float-btn.phone {
    background-color: var(--primary-color);
}

.float-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-actions {
        left: auto;
        right: 20px;
        bottom: 80px;
    }
}

/* Modern Dropdown Styles */
.modern-dropdown {
    position: relative;
    display: inline-flex;
    height: 100%;
    align-items: center;
}

.modern-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-dropdown:hover .modern-dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.3s ease forwards;
}

.modern-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.modern-dropdown-item:last-child {
    border-bottom: none;
}

.modern-dropdown-item:hover {
    background-color: rgba(228, 146, 0, 0.05);
    color: #e49200;
    padding-left: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Modern Hero & Slider Styles (Redesign)
   ========================================= */

.modern-hero-section {
    background-color: #fafbfc;
    padding-top: 100px;
    /* Reduced to pull content up if needed */
    padding-bottom: 80px;
}

/* Background Shapes */
.hero-bg-shape-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatShape 10s ease-in-out infinite alternate;
}

.hero-bg-shape-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.05) 0%, rgba(13, 71, 161, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatShape 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 40px);
    }
}

/* Hero Content Typography */
.modern-hero-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(0, 188, 212, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
}

.modern-hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.modern-hero-subhead {
    font-size: 1.15rem;
    color: var(--text-medium);
    font-weight: 400;
    max-width: 90%;
}

/* Custom Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--secondary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.4);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 28px;
    border-radius: var(--radius-full);
}

.btn-outline-custom:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

/* Slider Container */
.modern-slider-container {
    padding: 20px;
}

.slider-frame {
    border-radius: 30px;
    /* Large rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    border: 8px solid #fff;
    /* White border frame effect */
}

.modern-slide-item {
    height: 500px;
    position: relative;
    background: #eee;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* Navigation Buttons */
.modern-slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 60px;
    left: -30px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 5;
    text-align: center;
    min-width: 120px;
    animation: floatBadge 6s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-color);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .modern-hero-headline {
        font-size: 2.5rem;
    }

    .modern-slide-item {
        height: 350px;
    }

    .floating-badge {
        left: 0;
        bottom: -20px;
    }

    .hero-bg-shape-1 {
        width: 300px;
        height: 300px;
    }
}

/* =========================================
   Green Energy Style Split Layout (Refined)
   ========================================= */

.hero-split-section {
    position: relative;
    background-color: var(--primary-color) !important;
}

/* Left Panel (Solid Color) */
.hero-split-left {
    background-color: var(--primary-color) !important;
    /* Force Brand Color */
    min-height: 600px;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-split-left {
        height: 100vh;
        max-height: 900px;
        min-height: 700px;
    }
}

/* Typography in Left Panel */
.hero-tag-line {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 20px;
}

.tag-line-accent {
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin-top: 10px;
    border-radius: 2px;
}

.hero-split-headline {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.1;
    max-width: 100%;
}

/* Buttons */
.btn-hero-white {
    background: #ffffff;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-hero-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    background: #f8f9fa;
}

.link-hero-white {
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
    font-size: 1.1rem;
}

.link-hero-white:hover {
    color: var(--accent-color);
}

/* Right Panel (Full Image) */
.hero-split-right {
    height: 600px;
    position: relative;
    overflow: hidden;
    /* Ensure images don't bleed out */
}

@media (min-width: 992px) {
    .hero-split-right {
        height: 100vh;
        max-height: 900px;
    }
}

.hero-split-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Slightly darker overlay for text contrast if needed */
    pointer-events: none;
}

/* Overlay Card (Bottom Right) */
.hero-overlay-card {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 380px;
    z-index: 20;
    /* High z-index */
    background: #ffffff;
    border-bottom: 5px solid var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: block !important;
    /* Force visibility */
}

/* Pagination Custom */
.hero-custom-pagination {
    opacity: 1;
}

/* Progress Line Pagination */
.pagination-progress-container {
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.pagination-progress-bar {
    background-color: #ffffff;
    width: 0%;
}

.swiper-pagination-custom {
    display: none;
    /* Hide default dots if we are using the line */
}

/* Background Shapes (Circles) */
.split-left-bg-shape {
    position: absolute;
    width: 80vh;
    height: 80vh;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

@media (max-width: 991px) {
    .hero-split-headline {
        font-size: 2.5rem;
    }

    .hero-split-right {
        height: 500px;
    }

    .hero-overlay-card {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        width: 90%;
        margin: -60px auto 30px;
        /* Overlap nicely */
    }
}

/* =========================================
   Green Energy - About/Services Section
   ========================================= */

/* Typography */
.about-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #00BCD4;
    /* Blue-Primary */
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-tagline::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: #00BCD4;
}

.about-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #212529;
    letter-spacing: -1px;
}

.about-desc {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Impact Card */
.impact-card {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.impact-card-top {
    background-color: #E0F7FA;
    /* Light Cyan */
    padding: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.impact-card-top h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.4;
    margin-bottom: 0;
}

.impact-card-bottom {
    background-color: #00BCD4;
    /* Blue */
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

.impact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.impact-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.impact-stat-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Feature Grid (4 col) */
.feature-grid-item {
    text-align: center;
    padding: 20px;
    height: 100%;
}

.feature-grid-icon {
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-grid-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #212529;
}

.feature-grid-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Vertical Dividers for Desktop */
@media (min-width: 992px) {}
}

/* =========================================
   Green Energy - About / Video Split Section
   ========================================= */

.about-split-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-split-media {
    position: relative;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-play-pulse {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #388E3C;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-play-pulse:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: #2E7D32;
}

@keyframes pulse-white {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.about-split-content-wrapper {
    background-color: #EEF3F0;
    /* Light Green/Grey */
    padding: 5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon-circle {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.phone-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.phone-icon-round {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00BCD4;
}

.stats-icon-green {
    font-size: 3rem;
    color: #00BCD4;
    margin-bottom: 1.5rem;
}

.taller-headline {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #212529;
    margin-bottom: 1.5rem;
}

.btn-dark-pill {
    background-color: #212529;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Button Hover Green -> Blue */
.btn-dark-pill:hover {
    background-color: #00BCD4;
    color: white;
    transform: translateY(-2px);
}

/* Stats Center Image */
.stats-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    width: 100%;
}

.stats-floating-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    /* Overlap right edge slightly if possible, or keep inside */
    width: 160px;
    height: 160px;
    background-color: #00BCD4;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.4);
    z-index: 2;
}

/* White rings effect */
.stats-floating-badge::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 50%;
    z-index: -1;
}

.badge-percent {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    line-height: 1.2;
    margin-top: 5px;
    opacity: 0.9;
}

/* Right Stats List */
.stat-list-item {
    margin-bottom: 3rem;
}

.stat-big-number {
    font-size: 4rem;
    font-weight: 800;
    color: #212529;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label-title {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .stats-image-container {
        height: 400px;
        margin-bottom: 3rem;
    }

    .stats-floating-badge {
        right: 10px;
        bottom: 10px;
        width: 120px;
        height: 120px;
    }

    .badge-percent {
        font-size: 2rem;
    }

    .stat-list-item {
        text-align: center;
    }
}

/* =========================================
   Blue Energy - Recent Projects Section
   ========================================= */

.projects-section-padding {
    padding-bottom: 5rem;
}

.projects-container-rounded {
    background-color: #E0F7FA;
    /* Light Cyan */
    border-radius: 20px;
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
    /* Use margin if not full width */
    margin: 0 auto;
    z-index: 2;
    /* Sit on top of watermark */
}

/* Giant Watermark */
.watermark-text {
    position: absolute;
    top: -80px;
    /* Position above the container top */
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw;
    /* Even larger */
    font-weight: 800;
    color: rgba(0, 188, 212, 0.05);
    /* Very faint blue */
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    line-height: 0.8;
    width: 100%;
}

.projects-content-wrapper {
    position: relative;
    z-index: 1;
    /* Above watermark */
}

/* Header Grid */
.projects-header-row {
    margin-bottom: 3rem;
}

.sub-title-green {
    color: #00BCD4;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
}

.projects-desc-center {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Nav Buttons */
.project-nav-wrapper {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.project-nav-btn {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.project-nav-btn:hover {
    background-color: #212529;
    color: #ffffff;
}

/* Swiper Cards */
.project-img-card {
    border-radius: 5px;
    overflow: hidden;
    height: 400px;
    /* Fixed height for consistency */
    position: relative;
}

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

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

.project-zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-img-card:hover .project-zoom-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Quote */
.projects-footer-quote {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #212529;
    font-weight: 500;
}

.badge-free-quote {
    background-color: #D32F2F;
    /* Reddish */
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
}

.link-underline-dark {
    text-decoration: underline;
    color: #212529;
    font-weight: 700;
}

@media (max-width: 991px) {
    .projects-container-rounded {
        padding: 4rem 1.5rem;
        border-radius: 0;
    }

    .watermark-text {
        font-size: 18vw;
        top: 2%;
    }

    .project-nav-wrapper {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

/* =========================================
   NEW HERO REFERENCE DESIGN (Green/Blue Theme)
   ========================================= */

.hero-ref-section {
    position: relative;
    background-color: var(--primary-color);
    overflow: hidden;
}

/* Left Panel */
.hero-ref-left {
    position: relative;
    background-color: var(--primary-color);
    color: #ffffff;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-ref-left {
        height: 100vh;
        max-height: 900px;
    }
}

/* Radar Pattern Background */
.bg-radar-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, transparent 20%, rgba(255, 255, 255, 0.05) 21%, transparent 22%),
        radial-gradient(circle, transparent 35%, rgba(255, 255, 255, 0.05) 36%, transparent 37%),
        radial-gradient(circle, transparent 50%, rgba(255, 255, 255, 0.05) 51%, transparent 52%),
        radial-gradient(circle, transparent 65%, rgba(255, 255, 255, 0.05) 66%, transparent 67%);
    z-index: -1;
    pointer-events: none;
}

/* Typography Ref */
.hero-ref-tagline {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ref-headline {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.hero-ref-headline span.highlight {
    position: relative;
    display: inline-block;
    color: #fff;
}

.hero-ref-headline span.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-ref-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

/* Buttons Ref */
.btn-ref-white {
    background-color: #ffffff;
    color: #212529;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-ref-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    color: #000;
}

.btn-ref-outline {
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-ref-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Navigation Circles Top Right */
.hero-ref-nav {
    position: absolute;
    top: 60px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-circle-btn:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* Pagination Ref */
.hero-ref-pagination {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
}

.ref-current {
    color: #fff;
    margin-right: 15px;
}

.ref-progress {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.ref-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 0.1s linear;
}

/* Right Slider Side */
.hero-ref-right {
    position: relative;
    height: 100%;
    min-height: 600px;
    /* Ensure slider fills */
    display: flex;
}

@media (min-width: 992px) {
    .hero-ref-right {
        height: 100vh;
        max-height: 900px;
    }
}

.ref-slider-container {
    width: 100%;
    height: 100%;
}

.ref-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ref-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Overlay Card Reference */
.ref-overlay-pos {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
}

@media (min-width: 992px) {
    .ref-overlay-pos {
        left: -80px;
        /* Pull it slightly into the left green zone */
        bottom: 80px;
        border-radius: 20px;
    }
}

.ref-card-inner {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ref-card-video {
    width: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.ref-card-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.ref-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #000;
    cursor: pointer;
    transition: transform 0.3s;
}

.ref-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.ref-card-content {
    padding: 30px;
    width: 340px;
}

.ref-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.ref-email-form {
    position: relative;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 5px;
    display: flex;
    align-items: center;
}

.ref-email-input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    color: #666;
}

.ref-submit-btn {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s;
}

.ref-submit-btn:hover {
    background: var(--secondary-dark);
}

@media (max-width: 991px) {
    .hero-ref-headline {
        font-size: 2.5rem;
    }

    .hero-ref-left {
        padding: 60px 30px;
        min-height: auto;
    }

    .hero-ref-right {
        height: 400px;
        min-height: auto;
    }

    .ref-overlay-pos {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -50px 20px 0;
        max-width: none;
        width: auto;
    }

    .ref-card-inner {
        flex-direction: column;
    }

    .ref-card-video {
        width: 100%;
        height: 200px;
    }

    .ref-card-content {
        width: 100%;
    }

    .hero-ref-nav {
        top: 20px;
        right: 20px;
    }

    .hero-ref-pagination {
        bottom: 20px;
        left: 30px;
    }
}

/* =========================================
   Solution Partners Section
   ========================================= */
.solution-partners-section {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 80px 0;
}

.partner-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.partner-text-content {
    flex: 1;
}

.partner-tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(0, 188, 212, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

.partner-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.partner-headline span {
    color: var(--primary-color);
    position: relative;
}

.partner-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.partner-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.partner-img-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.partner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 5;
    animation: floatImage 4s ease-in-out infinite;
}

/* Yanarlı Dönerli Animation (Glowing Rotate) */
.partner-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent, var(--accent-color), transparent);
    animation: rotateGlow 4s linear infinite;
    z-index: 1;
    opacity: 0.6;
    filter: blur(30px);
}

.partner-glow-effect::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border-radius: 50%;
    background: #f8f9fa;
    /* Match section bg */
    z-index: 2;
}

@keyframes rotateGlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .partner-content-wrapper {
        flex-direction: column;
        /* Text first, Image second */
        text-align: center;
        gap: 30px;
    }

    .partner-tagline {
        margin-top: 0;
        margin-bottom: 20px;
        display: inline-block;
    }

    .partner-text-content {
        padding: 0 15px;
    }

    .partner-headline {
        font-size: 2rem;
    }

    .partner-img-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .partner-glow-effect {
        width: 140%;
        height: 140%;
        opacity: 0.5;
    }

    /* Ensure the image doesn't float too far away on mobile */
    @keyframes floatImage {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }
}