.site-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    font-family: var(--font-main);
    background-color: #222;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Optional overlay for better text contrast */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hero-overlay-dark);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Aligns text left on desktop */
}

.hero-text-area {
    color: var(--text-light);
    text-align: left;
    max-width: 600px;
    position: relative;
    z-index: 3;
    margin-left: 50px;
}

.hero-text-area h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-text-area h1 {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-blue);
    /* Header එකේ define කරපු color එක */
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.hero-text-area .tagline {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Translucent Ghost Letter 'U' (on the left) */
.ghost-letter {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 35rem;
    /* Massive size */
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    /* Ghostly effect */
    user-select: none;
    z-index: 1;
    transition: left 0.5s ease;
}

/* --- Bottom Navigation Dots Panel --- */
.hero-dots-panel {
    position: absolute;
    bottom: 40px;
    /* Distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    /* Centered perfectly */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    /* Spacing between dots */
}

.nav-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-circle:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.nav-circle.active {
    background-color: #cbfb45;
    /* Bright lime green active indicator */
    width: 36px;
    /* Pill shape for active dot */
    border-radius: 8px;
    /* Smooth rounded pill */
}

/* --- Floating Contact Buttons --- */
.hero-floating-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    color: var(--text-dark);
    /* Header එකේ define කරපු color එක */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.float-whatsapp {
    background-color: #25D366;
    /* Official WhatsApp green */
}

.float-phone {
    background-color: var(--primary-yellow);
    /* Header එකේ define කරපු color එක */
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ==================== MOBILE RESPONSIVE ==================== */

/* Tablet & Mobile (Standard Breakpoint) */
@media (max-width: 991px) {
    .hero-text-area {
        max-width: 500px;
    }

    .hero-text-area h1 {
        font-size: 4rem;
    }

    .ghost-letter {
        font-size: 25rem;
    }


}

/* Small Mobile (Standard Breakpoint - crucial for responsiveness) */
@media (max-width: 768px) {
    .site-hero {
        height: 60vh;
        /* Changed from min-height */
        min-height: 400px;
        /* Adjust for smaller screens */
    }

    .hero-content-wrapper {
        justify-content: center;
        /* Center content on mobile */
        text-align: center;
        padding-top: 40px;
        /* Move text up to avoid navigation */
    }

    .hero-text-area {
        text-align: center;
        width: 90%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        /* override desktop margin-left */
    }

    .hero-text-area h2 {
        font-size: 2rem;
    }

    .hero-text-area h1 {
        font-size: 3rem;
        display: block;
        margin-bottom: 15px;
    }

    .hero-text-area .tagline {
        font-size: 0.9rem;
    }

    .ghost-letter {
        display: none;
        /* Can be too large on mobile, or just make it very small */
    }

    /* Empty space left here after cleaning old mobile nav overrides */

    .hero-floating-buttons {
        flex-direction: row;
        /* Horizontal floating buttons on mobile */
        gap: 10px;
    }

    .float-btn {
        width: 35px;
        /* Smaller buttons for mobile */
        height: 35px;
        font-size: 16px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-text-area h1 {
        font-size: 2.5rem;
    }


}


/* ==================== MAIN SERVICES IMAGE GRID STYLES ==================== */
.image-services-section {
    width: 100%;
    background-color: #ffffff;
    margin: 20px 0;
}


.is-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.is-section-title h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -1px;
}

.is-section-title h2 .text-green {
    color: #3cc015;
}

.is-section-title p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    margin: 15px auto 0;
    max-width: 650px;
    font-family: var(--font-main);
    opacity: 0.8;
}

/* Mobile Responsive for Topic */
@media (max-width: 768px) {
    .is-section-title h2 {
        font-size: 38px;
    }

    .is-section-title {
        margin-bottom: 25px;
    }
}

.is-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    width: 100%;
}

.is-card {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
}


.is-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.is-card:hover .is-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.9) 100%);
}


.is-content {
    position: absolute;
    bottom: 60px;
    left: 20px;
    z-index: 2;
}

.is-title-wrapper {
    position: relative;
    padding: 15px 20px;
    display: inline-block;
}


.is-green-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, #3cc015, #88d433);
    z-index: -1;
    transform: scaleX(0.45);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.is-card:hover .is-green-bg {
    transform: scaleX(1);
}


.is-title {
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


.is-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    /* Transparent Black */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    transition: background 0.4s ease;
}

.is-card:hover .is-footer {
    background: rgba(0, 0, 0, 0.7);
}

.is-footer span {
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

.is-footer i {
    color: #ffffff;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}


.is-card:hover .is-footer i {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 991px) {
    .is-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .is-card {
        height: 350px;
    }

    .is-title {
        font-size: 36px;
    }
}








/* ==================== INDUSTRIES / SERVICES SECTION STYLES ==================== */
.services-section {
    background-color: #ffffff;
    /* ඔයා ඉල්ලපු විදියට සුදු background එක */
    padding: 40px 0;
    font-family: var(--font-main);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    color: #202020;
    /* Explicitly restored original blue since global var was changed to white by user */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Times New Roman', Times, serif;
}

.section-header p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

/* CSS Grid for the layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Card Styling */
.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    /* සුදු background එකේ කැපිලා පේන්න shadow එකක් */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    /* Optional: Very light border */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.05);
    /* Hover කරද්දි පින්තූරය zoom වෙනවා */
}

.card-content {
    padding: 25px;
}

.card-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-title i {
    color: var(--primary-yellow);
    font-size: 24px;
    margin-right: 12px;
}

.card-title h3 {
    color: #1e73be;
    /* Explicitly restored original blue */
    font-size: 20px;
    font-weight: 700;
}

.card-content p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
    min-height: 65px;
    /* Keeps cards uniform even if text length varies slightly */
}

/* Bullet Points */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.service-features li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary-yellow);
    font-size: 14px;
    margin-right: 10px;
    margin-top: 3px;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        /* Stacks all cards on mobile */
        max-width: 450px;
        margin: 0 auto;
    }
}


/* ==================== ABOUT US SECTION STYLES ==================== */
.about-us-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: var(--font-main);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* --- Left Image Column --- */
.about-image-col {
    flex: 1;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* පොඩි shadow එකක් */
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Right Content Column --- */
.about-content-col {
    flex: 1;
    /* අනිත් 50% width එක */
}

.section-badge {
    display: inline-block;
    background-color: #0d4624;
    /* Hardcoded Dark Green */
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-heading {
    font-size: 42px;
    font-weight: 800;
    color: #222222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-highlight {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.5;
    margin-bottom: 25px;
}

.about-desc {
    color: #666666;
    /* Hardcoded Gray Text */
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Bullet Points */
.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-features li {
    font-size: 15px;
    color: #666666;
    /* Hardcoded Gray Text */
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.about-features li i {
    color: #5eb639;
    /* Hardcoded Light Green */
    font-size: 16px;
    margin-right: 12px;
    margin-top: 4px;
}

/* Action Area (Button & Call) */
.about-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}

.btn-yellow {
    display: inline-block;
    background-color: var(--primary-yellow);
    /* Header එකේ තියෙන variable එක */
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-yellow:hover {
    background-color: #e5b400;
    /* Hover color */
    transform: translateY(-2px);
}

.call-expert {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-icon {
    width: 45px;
    height: 45px;
    background-color: #0d4624;
    /* Hardcoded Dark Green */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.call-info {
    display: flex;
    flex-direction: column;
}

.call-info strong {
    color: #222222;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.call-info span {
    color: #666666;
    /* Hardcoded Gray Text */
    font-size: 13px;
}

/* Optional Background Graphics (Dots & Circle) */
.about-bg-graphics {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(#1e73be 2px, transparent 2px);
    background-size: 20px 20px;
    /* Dot pattern */
    opacity: 0.2;
    z-index: 1;
}

.about-bg-graphics::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
}

/* ==================== MOBILE RESPONSIVE ==================== */
/* Tablet View */
@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        /* එක යට එක වැටෙන්න හදයි */
        gap: 40px;
    }

    .about-image-col,
    .about-content-col {
        width: 100%;
    }

    .about-heading {
        font-size: 34px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .about-us-section {
        padding: 50px 0;
    }

    .about-heading {
        font-size: 28px;
    }

    .about-actions {
        flex-direction: column;
        /* Button එකයි Call එකයි එක යට එකට වැටෙනවා */
        align-items: flex-start;
        gap: 20px;
    }

    .about-bg-graphics {
        display: none;
        /* Mobile එකේදී background graphics අයින් කරනවා clear පෙනුමට */
    }
}


/* ==================== CONTACT US SECTION STYLES ==================== */
.contact-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    font-family: var(--font-main);
    overflow: hidden;
    /* For dots going off-screen */
}

.contact-container {
    display: flex;
    justify-content: flex-end;
    /* Push form to the right half of the container */
    position: static !important;
    /* Forces container to NOT trap absolute children */
}

/* --- Left Image Column (Absolute to take exactly 50% of viewport) --- */
.contact-image-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    /* Exact left half of the screen */
    height: 100%;
    z-index: 1;
}

.contact-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Fully flat to sit flush against the center line */
}

/* --- Right Form Column --- */
.contact-form-col {
    width: 50%;
    /* 50% of the container. Container bounds it on the right */
    padding-left: 50px;
    /* Space off from the exact center */
    position: relative;
    z-index: auto;
    /* Allow children to layer against the image */
}

/* Background graphics from image design */
@keyframes rotateContactDots {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-decor-dots {
    position: absolute;
    top: -40px;
    /* Sits slightly clipped at the top */
    right: -90px;
    /* Exactly half of 180px, makes it a perfect half-circle at the right edge */
    width: 180px;
    height: 180px;
    background-image: radial-gradient(#d3dbf5 3px, transparent 3px);
    /* Light blue dots */
    background-size: 20px 20px;
    z-index: 0;
    border-radius: 50%;
    /* Make the cluster of dots circular */
    animation: rotateContactDots 30s linear infinite;
    /* Rotate continuously */
}

.contact-decor-circle {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#d3dbf5 3px, transparent 3px);
    /* Match dots for bottom left */
    background-size: 20px 20px;
    z-index: 0;
    border: none;
    border-radius: 50%;
    /* Make it circular */
    animation: rotateContactDots 35s linear infinite reverse;
    /* Rotate continuously in reverse */
}

.contact-content-wrapper {
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    background-color: #124e0aff;
    /* Dark Blue from mockup */
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.contact-heading {
    font-size: 40px;
    font-weight: 800;
    color: #2a313b;
    margin-bottom: 45px;
    line-height: 1.2;
    position: relative;
}

/* The blue gradient underline for the heading, as seen in the mockup */
.contact-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #154273, #8cb5e0 70%, transparent);
}

/* Form Styles */
.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: #FAFAFB;
    /* ultra light grey/white background */
    border: none;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    padding: 16px 20px;
    font-size: 14px;
    font-family: var(--font-main);
    color: #2a313b;
    outline: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.015);
    /* very faint shadow */
}

/* Placeholder Text Color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aeb4be;
    font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* slightly raises when active */
}

.contact-form textarea {
    resize: vertical;
}

/* Send Button */
.btn-send {
    background-color: #157322;
    /* Dark Blue matching badge */
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 50px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 15px;
}

.btn-send:hover {
    background-color: #0b2440;
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {

    .contact-decor-dots,
    .contact-decor-circle {
        animation: none;
    }
}

/* ==================== MOBILE RESPONSIVE ==================== */

/* Tablet View */
@media (max-width: 991px) {
    .contact-section {
        padding: 0 0 60px 0;
        /* Top padding 0 for flush image */
        display: flex;
        flex-direction: column;
    }

    .contact-container {
        /* No flex pushing needed anymore */
        justify-content: flex-start;
        width: 100%;
    }

    .contact-image-col {
        position: relative;
        /* Return to normal document flow */
        width: 100vw;
        /* Full width edge-to-edge */
        height: 400px;
        margin-bottom: 50px;
        /* Gap before the form container */
    }

    .contact-form-col {
        width: 100%;
        padding-left: 0;
        /* Remove desktop offset */
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-heading {
        font-size: 32px;
    }

    .contact-decor-circle,
    .contact-decor-dots {
        display: none;
    }
}

/* ==================== FEATURES TABS SECTION STYLES ==================== */
.features-tabs-section {
    padding: 0 0 50px 0;
    /* Reduced bottom gap based on user request */
    background-color: #ebedef;
    /* Precise light grey from mockup */
    font-family: var(--font-main);
    margin-top: 50px;
    /* Creates white gap from previous section */
    border-top: 1px solid transparent;
    /* Prevent margin collapse so gap applies safely */
}

/* Tabs Buttons Area */
.ft-tabs-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 0;
    transform: translateY(-50%);
    /* Pulls buttons exactly 50% out of the grey box */
    margin-bottom: 25px;
    /* Remaining gap below buttons before content */
}

.ft-tab-btn {
    background-color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    font-size: 15px;
    font-weight: 700;
    color: #171d28;
    /* Deep dark grey text */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Faint ambient shadow */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.ft-tab-btn i {
    color: #0d8cf0;
    /* Bright vivid blue checkmark */
    font-size: 16px;
}

/* Hover & Active States for Tabs */
.ft-tab-btn:hover,
.ft-tab-btn.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Tabs Content Area */
.ft-tab-content {
    display: none;
    animation: fadeEffect 0.5s ease-in-out;
}

.ft-tab-content.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ft-content-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ft-text-col,
.ft-image-col {
    flex: 1;
}

/* Text Formatting */
.ft-text-col h2 {
    font-size: 34px;
    font-weight: 800;
    color: #171d28;
    margin-bottom: 20px;
}

/* පොඩි නිල් පාට ඉර (Underline) */
.ft-heading-line {
    width: 60px;
    height: 3px;
    background-color: #0d8cf0;
    /* Bright vivid blue */
    margin-bottom: 35px;
}

.ft-text-col p {
    color: #7b7f8c;
    /* Muted grey matching mockup */
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Bullet Points */
.ft-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.ft-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    color: #171d28;
}

.ft-list li i {
    color: #0d8cf0;
    font-size: 16px;
}

/* Image Formatting */
.ft-image-col img {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* Fully flat corners exact to mockup */
    display: block;
    box-shadow: none;
    /* No shadow */
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 991px) {
    .ft-content-row {
        flex-direction: column;
        /* Tablet වලදී එක යට එක වැටෙන්න */
        gap: 40px;
    }

    .ft-text-col h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .features-tabs-section {
        padding: 50px 0;
    }

    .ft-tabs-header {
        gap: 10px;
        flex-direction: column;
        /* Mobile වලදී buttons ටිකත් එක යට එකට වැටෙන්න */
    }

    .ft-tab-btn {
        width: 100%;
        justify-content: center;
        /* Text එක මැදට ගන්න */
    }
}