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

/* Reset and Base Styles */
:root {
    --primary-color: #121a50;
    /* Dark Navy from Webico */
    --hover-color: #0d1235;
    --text-color: #1a1a1a;
    --text-light: #666;
    --border-color: #e5e5e5;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif !important;
    /* Force Poppins */
    color: var(--text-color);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
@media (max-width: 576px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .navbar .container {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Compact Breadcrumb Hero for Mobile */
    .hero-section {
        min-height: 0 !important;
        /* Force reset */
        padding-top: 15px !important;
        /* Very tight padding */
        padding-bottom: 15px !important;
        height: auto !important;
    }

    .hero-title-center h1 {
        font-size: 24px !important;
        margin-bottom: 0 !important;
        line-height: 1.2 !important;
    }

    .hero-decoration {
        display: none !important;
    }
}

.d-flex {
    display: flex;
}

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

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

.gap-4 {
    gap: 1.5rem;
}

.d-none {
    display: none;
}

@media (min-width: 768px) {
    .d-md-block {
        display: block;
    }

    .d-none-md {
        display: none;
    }
}

/* Complete Header Rewrite v2 */
.top-bar {
    background-color: var(--white);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 11px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-link {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-link:hover {
    color: #e49200;
}

.divider {
    color: #ddd;
}

/* Navbar Rewrite */
.navbar {
    background-color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    height: 100px;
    display: flex;
    align-items: center;
    width: 100%;
    /* max-width: 100vw; removed to prevent scrollbar issues */
    box-sizing: border-box;
    /* overflow: hidden; Removed for desktop dropdowns */
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
}

img,
video,
iframe,
canvas,
svg {
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden;
    }

    /* Specific check for hero-section to match body width */
    .hero-section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }
}

.nav-wrapper {
    display: grid;
    /* Grid is safer for 3-column layout than flex space-between */
    grid-template-columns: 280px 1fr 200px;
    /* Fixed width sides (increased left for larger logo), flexible center */
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-logo img {
    height: 110px;
    /* Increased from 85px */
    width: auto;
    display: block;
    margin-left: 20px;
    /* Move right */
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    justify-content: center;
    /* Center within the middle column */
    align-items: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    margin-left: 150px;
}

.navbar.navbar-stick {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 0;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    /* overflow: hidden; Removed for interactions */
}

.nav-link {
    font-family: 'Poppins', sans-serif !important;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    /* User requested 17px */
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.nav-link.active-menu-item {
    color: #e49200 !important;
}

.nav-link svg {
    margin-top: 1px;
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
    font-weight: 500;
}

.dropdown-item:hover {
    color: #e49200;
    background: #fdf2f6;
    padding-left: 25px;
    /* Slide effect */
}

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

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/* Button & Icons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    border: none;
}

.btn-primary:hover {
    background-color: #e49200;
    transform: translateY(-1px);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-wrapper {
        grid-template-columns: 150px 1fr 100px;
        /* Adjust side widths */
    }

    .nav-menu {
        gap: 15px;
        /* Reduce gap on smaller screens */
    }

    .nav-link {
        font-size: 15px;
        /* Slightly smaller on laptop */
    }
}

@media (max-width: 992px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .top-bar {
        display: none;
    }
}

/* Hero Section - Child Theme Design */
.hero-section {
    padding: 80px 0 150px;
    background: linear-gradient(180deg, #fce4ec 0%, #f8e1f4 40%, #faf0f5 100%);
    overflow: hidden !important;
    position: relative;
    min-height: 600px;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

.hero-kite {
    left: 3%;
    top: 35%;
    width: 120px;
    animation: floatKite 5s ease-in-out infinite;
}

.hero-sun {
    right: 5%;
    top: 10%;
    width: 100px;
    animation: floatSun 4s ease-in-out infinite;
}

.hero-cloud {
    opacity: 0.9;
}

.hero-cloud-1 {
    right: 15%;
    top: 8%;
    width: 100px;
}

.hero-cloud-2 {
    left: 12%;
    bottom: 35%;
    width: 120px;
}

.hero-cloud-3 {
    right: 3%;
    bottom: 40%;
    width: 80px;
}

@keyframes floatKite {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatSun {

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

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

/* Hero Title */
.hero-title-center {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
    padding-top: 20px;
}

.hero-title-center h1 {
    font-size: 43px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    color: #000000 !important;
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Circular Images Container */
.hero-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center items vertically */
    gap: 30px;
    position: relative;
    z-index: 5;
    padding: 0 50px;
    min-height: 280px;
}

.hero-circle-img {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 6px solid white;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.hero-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Left circle - Large */
.hero-circle-large {
    width: 280px;
    height: 280px;
    margin-bottom: 0;
}

/* Middle circle - Smaller */
.hero-circle-medium {
    width: 200px;
    height: 200px;
    margin-bottom: 0;
}

/* Right circle - Large */
.hero-circle-large-right {
    width: 280px;
    height: 280px;
    margin-bottom: 0;
}

/* Bubble decorations behind images */
.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 3;
    pointer-events: none;
}

.bubble-1 {
    width: 350px;
    height: 350px;
    left: 8%;
    bottom: -80px;
    background: rgba(255, 255, 255, 0.35);
}

.bubble-2 {
    width: 120px;
    height: 120px;
    left: 30%;
    top: 55%;
    background: rgba(255, 255, 255, 0.3);
}

.bubble-3 {
    width: 300px;
    height: 300px;
    right: 10%;
    bottom: -60px;
    background: rgba(255, 255, 255, 0.35);
}

.bubble-4 {
    width: 80px;
    height: 80px;
    right: 25%;
    top: 45%;
    background: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0 100px;
        min-height: 500px;
    }

    .hero-title-center h1 {
        font-size: 30px !important;
    }

    .hero-images-container {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 20px;
    }

    .hero-circle-large,
    .hero-circle-large-right {
        width: 160px;
        height: 160px;
        margin-bottom: 0;
    }

    .hero-circle-medium {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .hero-kite {
        width: 80px;
        left: 2%;
    }

    .hero-sun {
        width: 70px;
        right: 2%;
    }

    .hero-cloud {
        display: none;
    }

    .hero-bubble {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0 40px !important;
        /* Significantly reduced padding */
        min-height: auto !important;
    }

    .hero-title-center {
        margin-bottom: 25px !important;
        /* Reduced margin */
        padding-top: 10px !important;
    }

    .hero-title-center h1 {
        font-size: 22px !important;
        /* Smaller text */
        line-height: 1.3;
    }

    /* Compact "Triangle" Layout for Images */
    .hero-images-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 15px !important;
        padding: 0 10px !important;
        max-width: 320px;
        /* Constrain width to keep it tight */
        margin: 0 auto;
    }

    /* The middle image (child 2) goes to top center */
    .hero-circle-medium {
        grid-column: 1 / -1;
        /* Span full width */
        justify-self: center;
        width: 140px;
        height: 140px;
        margin-bottom: 0 !important;
        border-width: 4px;
        order: -1;
        /* Ensure it's visually first if flex was used, but grid handles placement */
    }

    /* The side images go to bottom row */
    .hero-circle-large,
    .hero-circle-large-right {
        width: 110px !important;
        /* Smaller size */
        height: 110px !important;
        border-width: 3px;
    }

    .hero-decoration {
        display: none;
    }
}

/* --- CLEAN MOBILE MENU REWRITE --- */

/* 1. The Container for the Menu */
.mobile-header-active {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    /* STRICTLY HALF */
    height: 100vh;
    background: #fff;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.2s ease-in-out;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-header-active.sidebar-visible {
    transform: translateX(0);
}

/* 2. The Burger Icon - SIMPLE & SOLID */
.burger-icon {
    width: 30px !important;
    height: 24px !important;
    /* 3 lines x 4px + 2 gaps x 6px = 24px */
    display: none !important;
    /* Hidden by default (Desktop) */
    flex-direction: column !important;
    justify-content: space-between !important;
    cursor: pointer;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 15px !important;
    /* Move down slightly */
    margin-right: 15px !important;
    /* Move away from right edge */
    transform: scale(1.4);
    /* Scaled up as requested */
    transform-origin: center;
}

/* Show on Mobile/Tablet */
@media (max-width: 992px) {
    .burger-icon {
        display: flex !important;
    }
}

.burger-icon span {
    display: block !important;
    width: 100% !important;
    height: 4px !important;
    background-color: var(--primary-color) !important;
    border-radius: 4px;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    /* NO ANIMATION */
}

/* Force static appearance even when active/close class is added */
.burger-icon.burger-close span,
.burger-icon.burger-close .burger-icon-top,
.burger-icon.burger-close .burger-icon-mid,
.burger-icon.burger-close .burger-icon-bottom,
.burger-icon:hover span {
    background-color: var(--primary-color) !important;
    width: 100% !important;
    transform: none !important;
    height: 4px !important;
    display: block !important;
    opacity: 1 !important;
    margin: 0 !important;
}

/* 3. Internal Menu Layout */
.mobile-header-wrapper-inner {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    /* For absolute positioning of close button */
}

.mobile-header-top {
    display: flex;
    justify-content: center;
    /* Center the logo completely */
    align-items: center;
    border-bottom: none !important;
    /* Removed border lines */
    padding-bottom: 20px;
    padding-top: 10px;
    margin-bottom: 10px;
    /* Reduced margin since border is gone */
    position: relative;
}

/* Mobile Menu Logo */
.mobile-header-logo img {
    max-height: 85px;
    /* Match main site logo height */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Explicit Close Button Style - Absolute Top Right */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 0;
    z-index: 10001;
    /* Ensure on top */
}

.mobile-menu-close button {
    background: none;
    border: none;
    width: 40px;
    /* Larger hit area */
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    cursor: pointer;
}

.mobile-menu-close i {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    display: block;
}

.mobile-menu-close .icon-top {
    transform: rotate(45deg);
}

.mobile-menu-close .icon-bottom {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover i {
    background-color: var(--primary-color);
}


/* Footer Mobile Optimizations */
@media (max-width: 576px) {

    /* Hide Services and Blog columns specifically on mobile */
    .footer-col-services,
    .footer-col-blog {
        display: none !important;
    }

    /* Center text for Quick Access and Contact columns */
    .footer-col-quick-access,
    .footer-col-contact {
        text-align: center !important;
    }

    /* Force flex containers to center align items */
    .footer-col-quick-access .d-flex,
    .footer-col-contact .d-flex {
        align-items: center !important;
    }

    /* Center the Logo column content and remove side padding that causes offset */
    .bgft-1 .col-lg-4 {
        text-align: center !important;
        padding-right: 15px !important;
        /* Reset pe-10 equivalent */
        padding-left: 15px !important;
    }

    /* Ensure logo image is centered */
    .bgft-1 .col-lg-4 img {
        margin: 0 auto !important;
        display: inline-block !important;
        /* Ensure it respects text-align */
    }

    /* Center social icons */
    .social-icons {
        justify-content: center !important;
        margin-top: 20px;
        padding: 0 !important;
        /* Remove any flex gap/padding issues */
    }
}


/* 4. Menu Links */
.mobile-menu li {
    list-style: none;
    margin-bottom: 15px;
}

.mobile-menu li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
}

.mobile-menu li a:hover {
    color: #e49200;
}

/* Services Section - New Design */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a237e;
    margin: 0 0 20px 0;
}

.services-desc {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
}

.service-card a {
    text-decoration: none;
    display: block;
    height: 100%;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.service-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-inner img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.95;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-name {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hover Content */
.service-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.service-card:hover .service-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover .service-content {
    opacity: 0;
    transform: translateY(10px);
}

.service-hover-text {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.service-link {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

/* Responsive for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-title {
        font-size: 28px;
    }

    .service-card {
        aspect-ratio: 4/3;
    }
}

/* CTA Section - New Child-Friendly Design */
.cta-section-new {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.cta-wave-top,
.cta-wave-bottom-new {
    width: 100%;
    height: 60px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.cta-wave-top svg,
.cta-wave-bottom-new svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-inner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 50%, #00f2fe 100%);
    padding: 60px 40px;
    position: relative;
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative Elements */
.cta-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.cta-star-1 {
    top: 20%;
    left: 10%;
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
}

.cta-star-2 {
    bottom: 25%;
    right: 12%;
    font-size: 35px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.cta-bubble-1 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 15%;
    right: 20%;
}

.cta-bubble-2 {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
}

@keyframes float {

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

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

.cta-center-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.cta-new-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.cta-new-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0 0 25px 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background: #e49200;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: #e49200;
    border-color: #e49200;
    color: white;
}

/* Responsive for New CTA */
@media (max-width: 768px) {
    .cta-inner {
        padding: 50px 25px;
    }

    .cta-new-title {
        font-size: 26px;
    }

    .cta-star-1,
    .cta-star-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .cta-new-title {
        font-size: 22px;
    }

    .cta-new-text {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* CTA Split Layout - Text Left, Video Right */
.cta-section-split {
    position: relative;
    overflow: hidden;
}

.cta-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
}

.cta-split-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 50%, #00f2fe 100%);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-split-inner {
    position: relative;
    z-index: 2;
}

.cta-split-title {
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.cta-split-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0 0 25px 0;
    max-width: 380px;
}

.cta-split-btn {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-split-btn:hover {
    background: #e49200;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-split-video {
    position: relative;
    overflow: hidden;
}

.cta-split-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Responsive for Split CTA */
@media (max-width: 992px) {
    .cta-split-container {
        grid-template-columns: 1fr;
    }

    .cta-split-content {
        padding: 40px 30px;
    }

    .cta-split-video {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .cta-split-title {
        font-size: 24px;
    }

    .cta-split-text {
        font-size: 14px;
    }
}

/* CTA Section - About Style Layout */
.cta-about-style {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-about-content {
    padding-right: 20px;
}

.cta-about-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.cta-about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.cta-about-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 146, 0, 0.4);
    background: #e49200;
    color: white;
}

.cta-about-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-about-video video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    pointer-events: none;
}

/* Responsive for CTA About Style */
@media (max-width: 992px) {
    .cta-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-about-content {
        padding-right: 0;
    }

    .cta-about-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .cta-about-style {
        padding: 50px 0;
    }

    .cta-about-title {
        font-size: 24px;
    }
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    /* Changed from center to allow sticky scroll */
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* About Video Styling */
.about-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-height: 450px;
}

.about-video video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.about-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.badge-year {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.9;
}

.about-content {
    padding-left: 20px;
}

.about-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.about-feature span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.about-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.about-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 146, 0, 0.4);
    background: #e49200;
    color: white;
}

/* Responsive for About */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-image-badge {
        right: 20px;
        bottom: -15px;
    }

    .about-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 24px;
    }

    .about-image-badge {
        padding: 15px 20px;
    }

    .badge-year {
        font-size: 24px;
    }
}

/* Desktop Hero Styles (Moved from inline PHP) */
.hero-hakkimizda {
    padding-top: 75px;
    padding-bottom: 50px;
    min-height: 250px;
}

.hero-iletisim {
    padding-top: 75px;
    padding-bottom: 50px;
    min-height: 250px;
}

.hero-services {
    padding-top: 75px;
    padding-bottom: 50px;
    min-height: 250px;
}

/* Blog Badge Blue Styling */
.card .bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.card .text-linear-2 {
    background: none !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* 7. Animations - Simple & Smooth */
.accordion .card-header a:not(.collapsed) h6,
.accordion .card-header a[aria-expanded="true"] h6 {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

/* --- STYLISH CONTENT IMPROVEMENTS --- */

/* Stickiness Fixes */
.about-section,
.about-grid,
.about-image,
.section-padding,
.container,
.row {
    overflow: visible !important;
    /* Critical for sticky to work */
}

.about-image {
    min-height: 100%;
    /* Ensure it stretches */
    display: block;
}

/* Wrapper for clean typography and spacing */
.content-styled {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

/* BOXED HEADINGS */
.content-styled h2,
.content-styled h3,
.content-styled h4 {
    position: relative;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

/* Pink Accent Bar on the Left */
.content-styled h2::before,
.content-styled h3::before,
.content-styled h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-color), #4facfe);
    border-radius: 4px 0 0 4px;
}

/* Hover Effect for Headings */
.content-styled h2:hover,
.content-styled h3:hover,
.content-styled h4:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
}

/* Font Adjustments inside box */
.content-styled h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.content-styled h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #444;
    margin: 0;
}

.content-styled h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    margin: 0;
}


/* CUSTOM LISTS */
.content-styled ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.content-styled ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* Custom Checkmark/Bullet */
.content-styled ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    font-weight: 900;
}

/* STICKY IMAGE WRAPPER */
.content-image-wrapper {
    position: relative;
    /* Default state, JS overrides */
    z-index: 10;
    align-self: start;
    display: block;
    height: auto;
    transition: none !important;
    /* REMOVED DELAY - INSTANT SCROLL */
    will-change: transform;
}

/* NEW BADGE STYLES */
.badge-experience {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
    text-align: center;
    border: 4px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

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

.badge-experience .text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 5px;
}

/* Bounce Animation */
.bounce-anim {
    animation: badgeBounce 3s infinite ease-in-out;
}

@keyframes badgeBounce {

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

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .content-image-wrapper {
        position: static;
        margin-top: 30px;
    }

    .badge-experience {
        right: 10px;
        bottom: 10px;
        padding: 10px 15px;
        min-width: auto;
    }

    .badge-experience .year {
        font-size: 1.8rem;
    }
}

/* Hero Section - Split Layout Styles */
.hero-slider-container {
    padding: 20px;
    z-index: 2;
}

.hero-slider-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
    border: 5px solid #fff;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-slider-wrapper:hover {
    transform: rotate(0deg);
}

.hero-slider,
.hero-slide-item {
    height: 500px;
    /* Fixed height for consistency */
    width: 100%;
}

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

.swiper-slide:hover .hero-slide-item img {
    transform: scale(1.05);
}

/* Pagination Adjustments */
.hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
    width: 10px;
    height: 10px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .new-hero-section {
        text-align: center;
        padding-top: 130px;
        margin-top: 30px;
    }

    .hero-content-wrapper {
        padding-right: 0 !important;
        text-align: center !important;
    }

    .hero-slider-container {
        margin-top: 40px;
    }

    .hero-slider,
    .hero-slide-item {
        height: 350px;
    }

    .hero-bg-shape {
        display: none !important;
    }
}