/* style.css – I Like Media Global Styles (Updated with Blue Theme & Logo Box Removed) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F9F9F9;
    --text-dark: #111111;
    --text-light: #333333;
    --accent: #1097F8;
    /* නව නිල් පැහැය */
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-light);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Navigation ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop default */
.back-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav-links a {
    font-weight: 400;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: var(--accent);
    /* නිල් පාටට hover */
    border-bottom-color: var(--accent);
    /* නිල් පාටට hover */
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Mobile Navigation (max-width: 768px) ===== */
@media (max-width: 768px) {
    .nav-container {
        justify-content: flex-start;
        gap: 0;
    }

    .back-btn {
        display: inline-block;
        order: 1;
        margin-right: 0;
    }

    .logo {
        order: 2;
        flex: 1;
        text-align: center;
        font-size: 1.5rem;
        margin: 0 5px;
    }

    .hamburger {
        display: block;
        order: 3;
        margin-left: 0;
    }

    /* Menu එක දකුණෙන් එන්න */
    .nav-links {
        position: fixed;
        top: 67px;
        right: -100%;
        width: 180px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
        padding: 20px 10px;
        overflow-y: auto;
        margin-left: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    /* List items with reduced padding */
    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
        transition: background-color 0.2s;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background-color: #f5f5f5;
        color: var(--text-dark);
        border-bottom-color: transparent;
    }
}

/* ===== Hero Section ===== */
.hero {
    margin-top: 80px;
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.slide-content {
    position: relative;
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.slide-content h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 1px;
}

.slider-controls {
    position: absolute;
    top: 30px;
    /* Moved to top */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    z-index: 10;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ===== Pillar Cards (Home) ===== */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 80px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.pillar-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pillar-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pillar-card .card-content {
    padding: 20px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pillar-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--text-dark);
    color: white;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 151, 248, 0.25);
}

/* Glassmorphism Effect for Hero Button */
.hero-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* ===== Page Header (Subpages) ===== */
.page-header {
    margin-top: 120px;
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.page-header h2 {
    margin-bottom: 0.5rem;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* ===== Events / Gallery (Subpages) ===== */
.events {
    padding: 60px 0;
}

.event {
    margin-bottom: 80px;
}

.event:last-child {
    margin-bottom: 0;
}

.event h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.event-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ===== Lightbox Modal (with Next/Prev) ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.modal.visible .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2100;
}

.close:hover {
    color: var(--accent);
}

/* Lightbox navigation buttons - Minimalistic Style */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 2100;
    padding: 20px;
    user-select: none;
    transition: color 0.2s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Minimalistic hover effect: light gray (නිල් පාට නෙවෙයි) */
.lightbox-prev:hover,
.lightbox-next:hover {
    color: #cccccc;
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 10px;
    }

    .close {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }
}

/* ===== Trusted By Section (UPDATED: Box removed, original colors) ===== */
.trusted-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    /* row-gap column-gap */
    margin-top: 40px;
}

/* Box එක සම්පූර්ණයෙන්ම ඉවත් කිරීම */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    /* background, border-radius, padding, height, width සියල්ල ඉවත් */
}

.logo-item:hover {
    /* background, color වෙනස් කිරීම් ඉවත් */
    transform: scale(1.05);
}

/* Logos - Original Colours වලින්, box එකක් නැතුව */
.trusted-logos .logo-item img {
    max-width: 150px;
    /* ඔබේ logo වලට ගැලපෙන පරිදි වෙනස් කරන්න */
    max-height: 60px;
    /* ඔබේ logo වලට ගැලපෙන පරිදි වෙනස් කරන්න */
    width: auto;
    height: auto;
    transition: var(--transition);
}

.trusted-logos .logo-item:hover img {
    transform: scale(1.05);
}



/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .event-gallery {
        grid-template-columns: 1fr;
    }

    .trusted-logos {
        gap: 30px;
    }

    .page-header {
        margin-top: 100px;
        padding: 30px 20px;
    }

    .event h3 {
        font-size: 1.8rem;
    }
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pillar-card:nth-child(2) {
    transition-delay: 0.1s;
}

.pillar-card:nth-child(3) {
    transition-delay: 0.2s;
}

.pillar-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* Smooth inner image in modal */
#modal-img {
    transition: opacity 0.2s ease-in-out;
}

/* Add these new styles to your existing style.css */

/* ===== Hero CTA Buttons ===== */
.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.hero-btn,
.btn-collaborate {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
}

.hero-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-btn:hover {
    background: white;
    color: var(--text-dark);
}

.btn-collaborate {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px rgba(16, 151, 248, 0.4);
    animation: pulse 2s infinite;
}

.btn-collaborate:hover {
    background: #0081e2;
    border-color: #0081e2;
    transform: translateY(-3px) scale(1.05);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 151, 248, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 151, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 151, 248, 0);
    }
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-btn,
    .btn-collaborate {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== Pillar Blocks (New Layout) ===== */
.pillar-blocks {
    margin: 80px auto;
}

.pillar-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.pillar-block:last-child {
    margin-bottom: 0;
}

.pillar-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pillar-block-image {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

.pillar-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pillar-block:hover .pillar-block-image img {
    transform: scale(1.05);
}

.pillar-block-content {
    flex: 1;
    padding: 40px 40px 40px 0;
}

.pillar-block:nth-child(even) .pillar-block-image {
    order: 2;
}

.pillar-block:nth-child(even) .pillar-block-content {
    padding: 40px 0 40px 40px;
    order: 1;
}

.pillar-block-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pillar-block-content p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .pillar-block {
        flex-direction: column;
        gap: 0;
    }

    .pillar-block-image,
    .pillar-block-content {
        flex: none;
        width: 100%;
    }

    .pillar-block-content {
        padding: 30px !important;
    }

    .pillar-block:nth-child(even) .pillar-block-image {
        order: 1;
    }

    .pillar-block:nth-child(even) .pillar-block-content {
        order: 2;
    }
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-content i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-section>.container>p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eaeaea;
    background: #fdfdfd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(16, 151, 248, 0.15);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #0d86e0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 151, 248, 0.3);
}

.contact-info {
    padding: 30px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
}

.contact-info h3 {
    color: white;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.calendar-btn {
    background: white;
    color: var(--accent);
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
}

.calendar-btn:hover {
    background: #f0f0f0;
    color: var(--accent);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===== Lead Magnet Popup ===== */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.popup.show {
    display: flex;
}

.popup-content {
    background: white;
    max-width: 400px;
    width: 90%;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-popup:hover {
    color: var(--accent);
}

.popup-content h3 {
    margin-bottom: 15px;
    color: var(--accent);
}

.popup-content p {
    margin-bottom: 25px;
    color: #666;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-content input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.popup-content .btn {
    background: var(--accent);
    border: none;
    cursor: pointer;
}

.popup-content .btn:hover {
    background: #0d86e0;
}

/* ===== Trusted Logos (ensure images look good) ===== */
.trusted-logos .logo-item img {
    max-width: 130px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trusted-logos .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ===== Testimonials Carousel ===== */
.testimonials-carousel {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
    overflow: hidden;
}

.testimonials-carousel h2 {
    margin-bottom: 50px;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 30px;
    text-align: left;
}

.testimonial-content i {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.testimonial-author p {
    font-size: 0.95rem;
    color: #777;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Prev/Next Buttons (optional) */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--accent);
    color: white;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* ===== Minimalistic & Professional Footer ===== */
.footer {
    background: #0a0a0a;
    /* Deep monochromatic background */
    color: #e0e0e0;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    gap: 50px;
    align-items: flex-start;
}

.footer-brand {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-logo {
    max-height: 250px;
    height: auto;
    width: auto;
    margin-bottom: 5px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 1.05rem;
    color: #999;
    max-width: 320px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between;
    gap: 30px;
    min-width: 400px;
}

.link-col h4 {
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.link-col ul {
    list-style: none;
    padding: 0;
}

.link-col ul li {
    margin-bottom: 8px;
}

.link-col ul li a {
    color: #999;
    font-size: 0.9rem;
    transition: var(--transition);
}

.link-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 25px;
    /* Add space from the links above */
    align-items: flex-start;
    /* Align left with other list items */
}

.social-label {
    font-size: 0.65rem;
    /* Slightly smaller for bottom area */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 15px;
    /* Slightly more compact gaps */
}

.social-icons a {
    color: #888;
    font-size: 1.4rem;
    /* Enlarged as requested */
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent);
    /* Changes to blue as requested */
    transform: translateY(-2px);
}

.footer-copyright {
    width: 100%;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    /* Center copyright links */
    align-items: center;
    color: #555;
    font-size: 0.85rem;
}

.copyright-text {
    display: flex;
    flex-direction: row;
    /* Change to row for single line */
    gap: 20px;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    transition: var(--transition);
}

.legal-links a:hover {
    color: #888;
}

@media (max-width: 900px) {
    .footer-links {
        flex-direction: column;
        min-width: auto;
    }

    .footer-copyright {
        flex-direction: column-reverse;
        /* Icons on top for mobile stack */
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .footer-social {
        align-items: center;
    }

    .copyright-text {
        align-items: center;
    }
}

/* ===== Responsive Styles (Update) ===== */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(10deg);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}