/* Global Styles */
:root {
    /* Vibrant Colors */
    --primary-color: #e91e63;
    /* Pink */
    --secondary-color: #9c27b0;
    /* Purple */
    --accent-color: #ffeb3b;
    /* Yellow */
    --text-dark: #2c3e50;
    --text-light: #f1f2f6;
    --bg-light: #fffde7;
    /* Light Yellow tint */
    --bg-dark: #2f3542;
    --success-color: #00e676;
    /* Bright Green */

    /* Fonts */
    --font-heading: 'Baloo 2', 'Quicksand', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    background-image:
        radial-gradient(#e1bee7 1px, transparent 1px),
        radial-gradient(#b2dfdb 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Pulse Green Animation */
@keyframes pulse-green-hero {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp {
    background-image: linear-gradient(to right, #25D366 0%, #128C7E 51%, #25D366 100%) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    margin-right: 15px !important;
    border: 2px solid #fff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    transition: 0.5s !important;
    animation: pulse-green-hero 2s infinite !important;
}

.btn-whatsapp:hover {
    background-position: right center !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6) !important;
}

.btn-outline {
    background-image: linear-gradient(to right, #FF512F 0%, #DD2476 51%, #FF512F 100%) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(221, 36, 118, 0.3) !important;
    transition: 0.5s !important;
    animation: pulse-pink 2s infinite !important;
}

.btn-outline:hover {
    background-position: right center !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(221, 36, 118, 0.6) !important;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(233, 30, 99, 0.1);
    padding: 15px 0;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff5722, #ffc107, #4caf50, #2196f3, #9c27b0) 1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 16px;
    position: relative;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #e91e63, #9c27b0, #2196f3);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    /* Büyütüldü */
    font-weight: 700;
    padding: 12px 25px;
    /* Genişletildi */
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
        transform: scale(1);
    }
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #fce4ec 50%, #e8eaf6 100%);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 60px 30px;
    box-shadow: -10px 0 40px rgba(233, 30, 99, 0.15);
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, #ff5722, #ffc107, #4caf50, #2196f3, #9c27b0) 1;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-list li {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    padding-bottom: 15px;
}

.mobile-nav-list a {
    font-size: 20px;
    font-weight: 700;
    display: block;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding-left: 10px;
    border-left: 3px solid transparent;
}

.mobile-nav-list a:hover {
    color: var(--primary-color);
    padding-left: 20px;
    border-left-color: var(--primary-color);
}

/* Hero Slider Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-top: 0;
}

/* Slider Container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s infinite alternate;
    filter: saturate(1.3) contrast(1.1);
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Colorful Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(156, 39, 176, 0.2) 70%,
            rgba(233, 30, 99, 0.25) 100%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

/* Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Rainbow Bar at bottom of hero */
.hero-rainbow-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff5722, #ffc107, #4caf50, #2196f3, #9c27b0, #ff5722);
    background-size: 200% 100%;
    animation: rainbowSlide 4s linear infinite;
    z-index: 5;
}

@keyframes rainbowSlide {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding-top: 60px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    /* Stronger text shadow for readability */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;

}

.hero-title .gradient-text {
    /* Brighter, High Contrast Gradient */
    background: linear-gradient(90deg, #ff4081, #00e5ff, #ffeb3b, #ff4081);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Standard clear fill */
    display: inline-block;
    animation: gradientFlow 5s ease infinite;

    /* Standard, clean font - "Düz ve Okunaklı" */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
    font-size: 1.1em;
    letter-spacing: 2px;
    text-transform: uppercase;

    /* Clean white outline */
    -webkit-text-stroke: 1px #fff;

    /* Glow/Shadow Effect */
    filter: drop-shadow(0 0 8px rgba(255, 64, 129, 0.6)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.6);
    /* Darker background for subtitle */
    padding: 15px 35px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    /* Ensure white text */
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Glassmorphism Outline Button */
.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    border-color: #fff;
}

/* Pulse Animation for Whatsapp Button */
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    margin-right: 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulseBtn 2s infinite;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}



/* Services Section */
.section {
    padding: 80px 0;
}

/* Colorful Section Backgrounds */
.section.services {
    background: linear-gradient(135deg, #e0f7fa 0%, #f3e5f5 50%, #fff8e1 100%);
    position: relative;
}

.section.about {
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e8eaf6 100%);
}

.section.blog {
    background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 50%, #fce4ec 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff5722, #ffc107, #4caf50, #2196f3, #9c27b0);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    padding: 30px;
    padding-top: 38px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

/* Colorful Card Borders based on n-th child */
.service-card:nth-child(1) {
    border-bottom-color: #ff5252;
}

.service-card:nth-child(2) {
    border-bottom-color: #448aff;
}

.service-card:nth-child(3) {
    border-bottom-color: #ffeb3b;
}

.service-card:nth-child(4) {
    border-bottom-color: #69f0ae;
}

.service-card:nth-child(5) {
    border-bottom-color: #e040fb;
}

.service-card:nth-child(6) {
    border-bottom-color: #ff9800;
}

.service-card:nth-child(7) {
    border-bottom-color: #00bcd4;
}

.service-card:nth-child(8) {
    border-bottom-color: #f44336;
}

.service-card:nth-child(9) {
    border-bottom-color: #9c27b0;
}

.service-card:nth-child(10) {
    border-bottom-color: #3f51b5;
}

.service-card:nth-child(11) {
    border-bottom-color: #8bc34a;
}

.service-card:nth-child(12) {
    border-bottom-color: #795548;
}

.service-card:nth-child(13) {
    border-bottom-color: #d81b60;
    /* Pink Deep */
}

.service-card:nth-child(14) {
    border-bottom-color: #8e24aa;
    /* Purple */
}

.service-card:nth-child(15) {
    border-bottom-color: #e53935;
    /* Red */
}

.service-card:nth-child(16) {
    border-bottom-color: #fb8c00;
    /* Orange */
}

.service-card:nth-child(17) {
    border-bottom-color: #039be5;
    /* Light Blue */
}

.service-card:nth-child(18) {
    border-bottom-color: #00897b;
    /* Teal */
}

.service-card:nth-child(19) {
    border-bottom-color: #fdd835;
    /* Yellow */
}

.service-card:nth-child(20) {
    border-bottom-color: #c0ca33;
    /* Lime */
}

.service-card:nth-child(21) {
    border-bottom-color: #6d4c41;
    /* Brown */
}

.service-card:nth-child(22) {
    border-bottom-color: #5d4037;
    /* Dark Brown */
}

.service-card:nth-child(23) {
    border-bottom-color: #546e7a;
    /* Blue Grey */
}

.service-card:nth-child(24) {
    border-bottom-color: #43a047;
    /* Green */
}

.service-card:nth-child(25) {
    border-bottom-color: #1e88e5;
    /* Blue */
}

.service-card:nth-child(26) {
    border-bottom-color: #3949ab;
    /* Indigo */
}

.service-card:nth-child(27) {
    border-bottom-color: #00acc1;
    /* Cyan */
}

.service-card:nth-child(28) {
    border-bottom-color: #ff5722;
    /* Deep Orange */
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.15), 0 10px 20px rgba(156, 39, 176, 0.1);
}

/* Rainbow top border for service cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff5722, #ffc107, #4caf50, #2196f3, #9c27b0);
    z-index: 2;
}

/* Subtle glow on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.4) 0%, rgba(227, 242, 253, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Per-card colorful icon backgrounds */
.service-card:nth-child(3n+1) .service-icon {
    background: #fce4ec;
    color: #e91e63;
}

.service-card:nth-child(3n+2) .service-icon {
    background: #e3f2fd;
    color: #2196f3;
}

.service-card:nth-child(3n+3) .service-icon {
    background: #e8f5e9;
    color: #4caf50;
}

.service-card:nth-child(4n+1) .service-icon {
    background: #fff3e0;
    color: #ff9800;
}

.service-card:nth-child(5n+1) .service-icon {
    background: #f3e5f5;
    color: #9c27b0;
}

.service-card:nth-child(7n+1) .service-icon {
    background: #e0f7fa;
    color: #00bcd4;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: auto;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.02);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e8eaf6 100%);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    margin: 10px 0 0;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.about-list i {
    color: var(--accent-color);
}

.about-image {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: #fff;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.05);
}

/* CTA Banner */
/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 3px solid var(--primary-color);
}

/* Rainbow top border for blog cards */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff5722, #ffc107, #4caf50, #2196f3, #9c27b0);
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

/* Subtle glow on hover for blog cards */
.blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.4) 0%, rgba(227, 242, 253, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.12), 0 10px 20px rgba(156, 39, 176, 0.08);
}

/* Colorful bottom borders for blog cards */
.blog-card:nth-child(3n+1) {
    border-bottom-color: #e91e63;
}

.blog-card:nth-child(3n+2) {
    border-bottom-color: #2196f3;
}

.blog-card:nth-child(3n+3) {
    border-bottom-color: #ff9800;
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Colorful About List */
.about-list li:nth-child(1) i {
    color: #e91e63;
}

.about-list li:nth-child(2) i {
    color: #2196f3;
}

.about-list li:nth-child(3) i {
    color: #4caf50;
}

.about-list li:nth-child(4) i {
    color: #ff9800;
}


.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-whatsapp-lg {
    background: #fff;
    color: #25d366;
    font-size: 1.2rem;
    margin-top: 30px;
}

.btn-whatsapp-lg:hover {
    background: #f0f0f0;
}

/* Footer */
.footer {
    background: #2f3542;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, #ff5722, #ffc107, #4caf50, #2196f3, #9c27b0) 1;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-col p {
    color: #a4b0be;
    margin-bottom: 15px;
}

.footer-col i {
    width: 25px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Ensure text/icon alignment */
    line-height: 0;
    /* Fix vertical alignment issues */
    transition: var(--transition);
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a i {
    display: flex;
    /* Ensure icon itself behaves */
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

/* Footer Socials Order: Insta, FB, YT */
.social-links a:nth-child(1):hover {
    background: #e1306c;
    /* Instagram Color */
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
}

.social-links a:nth-child(2):hover {
    background: #1877f2;
    /* Facebook Color */
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

.social-links a:nth-child(3):hover {
    background: #ff0000;
    /* YouTube Color */
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

/* Header Socials Order: Insta, FB, YT */
.header-socials {
    display: flex;
    gap: 10px;
    margin-right: 15px;
    align-items: center;
}

.header-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

/* Always show brand colors */
.header-socials a:nth-child(1) {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

.header-socials a:nth-child(2) {
    background: rgba(24, 119, 242, 0.12);
    color: #1877f2;
}

.header-socials a:nth-child(3) {
    background: rgba(255, 0, 0, 0.12);
    color: #ff0000;
}

.header-socials a:hover {
    transform: translateY(-3px) scale(1.1);
}

.header-socials a:nth-child(1):hover {
    background: #e1306c;
    color: #fff;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.header-socials a:nth-child(2):hover {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.header-socials a:nth-child(3):hover {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}


/* Hamburger Logic */
/* Mobile Responsive */
@media (max-width: 768px) {

    .nav,
    .header-btn,
    .header-socials {
        /* Hide header socials on mobile, they are in mobile menu */
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* ... rest of mobile styles ... */

    .hero-title {
        font-size: 2.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-img-placeholder {
        height: 300px;
        margin-top: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-right: 0;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .logo img {
        max-height: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 20px;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .footer-col h3 {
        font-size: 1.5rem;
    }
}

/* Service Card Links */
a.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

a.service-card:hover {
    transform: translateY(-10px);
}

/* CTA Inner Block - Vibrant Update */
.cta-inner-block {
    margin-top: 60px;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

@media (max-width: 480px) {
    .cta-inner-block {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Vibrant Gradient Background/Border Effect */
.cta-inner-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    /* Thicker accent line */
    background: linear-gradient(90deg, #ff0055, #ffdd00, #2299ff, #cc00ff);
    z-index: 2;
}

/* Subtle Animated Background Gradient */
.cta-inner-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(227, 242, 253, 0.6) 100%);
    z-index: 0;
}

.cta-inner-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.15);
}

.cta-inner-block>* {
    position: relative;
    z-index: 1;
    /* Ensure text is above background */
}

.cta-inner-block h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-inner-block p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Updated Button Style */
.cta-inner-block .btn-whatsapp-lg {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border: none;
    font-size: 1.2rem;
    padding: 18px 45px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-inner-block .btn-whatsapp-lg i {
    font-size: 1.5rem;
}

.cta-inner-block .btn-whatsapp-lg:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(45deg, #128c7e, #25d366);
}

/* Decorative Icons (Optional) */
.cta-decoration {
    position: absolute;
    font-size: 10rem;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    color: var(--primary-color);
}

.cta-icon-left {
    bottom: -30px;
    left: -20px;
    transform: rotate(20deg);
}

.cta-icon-right {
    top: -20px;
    right: -20px;
    transform: rotate(-15deg);
}

/* Scroll to Top Button */
/* Pulse Animation for Scroll Top */
@keyframes pulse-pink {
    0% {
        box-shadow: 0 0 0 0 rgba(221, 36, 118, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(221, 36, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(221, 36, 118, 0);
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #FF512F, #DD2476);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(221, 36, 118, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse-pink 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Breadcrumbs */
.breadcrumb-container {
    padding: 10px 0;
    margin-top: 20px;
    background: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0 5px;
}

/* Global Hero Height Reduction */
.service-detail-hero,
.page-hero {
    height: auto !important;
    min-height: 320px !important;
    padding-top: 120px !important;
    padding-bottom: 50px !important;
    background-origin: padding-box;
    position: relative !important;
}

/* Ensure container content is above any pseudo-element overlays */
.service-detail-hero .container,
.page-hero .container {
    position: relative;
    z-index: 2;
}

/* Mega Menu Dropdown */
.nav-list li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 1000;
    border-top: 5px solid var(--primary-color);
    border-image: linear-gradient(90deg, #ff5722, #ffc107, #4caf50, #2196f3, #9c27b0) 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
}

/* Show Dropdown on Hover */
.nav-list li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

/* Triangle Indicator */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-color);
}

.dropdown-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dropdown-column h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
    font-size: 1.1rem;
}

.dropdown-link {
    display: block;
    padding: 8px 10px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    color: #d81b60;
    transform: translateX(5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dropdown-link i {
    width: 25px;
    color: var(--secondary-color);
    text-align: center;
}

/* Adjust nav link arrow */
.nav-link i {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-list li:hover .nav-link i {
    transform: rotate(180deg);
}. b t n - c o n t a c t - r e s p o n s i v e   {  
         d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   1 0 p x ;  
         w i d t h :   a u t o ;  
         m i n - w i d t h :   2 0 0 p x ;  
         m a x - w i d t h :   1 0 0 % ;  
         w h i t e - s p a c e :   n o w r a p ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   {  
         . b t n - c o n t a c t - r e s p o n s i v e   {  
                 w i d t h :   1 0 0 % ;  
                 / *   F u l l   w i d t h   i n   s m a l l   c a r d s   * /  
                 f o n t - s i z e :   0 . 9 5 r e m   ! i m p o r t a n t ;  
                 p a d d i n g :   1 2 p x   1 5 p x   ! i m p o r t a n t ;  
                 w h i t e - s p a c e :   n o r m a l ;  
                 / *   A l l o w   w r a p   i f   r e a l l y   n e e d e d   * /  
                 t e x t - a l i g n :   c e n t e r ;  
         }  
 }  
 / *   I n f o   G r i d   L a y o u t   F i x   * /  
 . i n f o - g r i d   {  
         d i s p l a y :   g r i d ;  
         g a p :   2 0 p x ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 5 0 p x ,   1 f r ) ) ;  
         m a r g i n - t o p :   3 0 p x ;  
         f l e x :   1 ;  
         a l i g n - c o n t e n t :   s p a c e - b e t w e e n ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . i n f o - g r i d   {  
                 / *   F o r c e   s i n g l e   c o l u m n   o n   m o b i l e   t o   p r e v e n t   o v e r f l o w   * /  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r   ! i m p o r t a n t ;  
  
                 / *   E n s u r e   c a r d s   d o n ' t   h a v e   w e i r d   f i x e d   w i d t h s   * /  
                 w i d t h :   1 0 0 %   ! i m p o r t a n t ;  
         }  
  
         . c o n t a c t - c o n t a i n e r   {  
                 / *   P r e v e n t   f l e x   l a y o u t   i s s u e s   * /  
                 f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ;  
                 f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ;  
         }  
  
         . c o n t a c t - i n f o ,  
         . c o n t a c t - m a p   {  
                 w i d t h :   1 0 0 %   ! i m p o r t a n t ;  
                 m i n - w i d t h :   0   ! i m p o r t a n t ;  
                 / *   A l l o w   s h r i n k i n g   * /  
                 f l e x :   n o n e   ! i m p o r t a n t ;  
         }  
 }  
 