@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Cedarville+Cursive&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Oxanium:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* 1. Global Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

img {
    max-width: 100%;
}

/* DO NOT TOUCH html, body */
html,
body {
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;

    /* Gradient background: light green + soft pastel */
    background: linear-gradient(135deg,
            #e6f5ea,
            /* very light green */
            #ffffff);
    /* white */
}




/* Only hide horizontal overflow */
.page-wrapper {
    overflow-x: hidden;
}

.site-content {
    overflow-x: hidden;
    /* SAFE */
}

.container {
    max-width: 1200px;
    padding: 0 12px;
    margin: auto;
}

a {
    text-decoration: none;
}



li {
    list-style: none;
}


/* Top Header */
.top-header {
    background: #29355B;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 0;
    text-align: center;
}

/* ================= NAVBAR ================= */

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    /* padding: 18px 0; */
    width: 100%;
    position: relative;
    z-index: 999;
    transition: 0.3s ease;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.navbar-brand img {
    height: 52px;
}

/* CENTER MENU LINKS */
.center-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.center-nav .nav-item {
    position: relative;
}

.center-nav .nav-link {
    color: #1f2933 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0 !important;
    text-decoration: none;
    position: relative;
}

.center-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #176CB1;
    transition: 0.3s ease;
}

.center-nav .nav-link:hover {
    color: #176CB1 !important;
}

.center-nav .nav-link:hover::after {
    width: 100%;
}

/* DROPDOWN */
.custom-dropdown {
    position: relative;
}

.dropdown-pane {
    position: absolute;
    top: 140%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
}

.custom-dropdown:hover .dropdown-pane {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-pane a {
    display: block;
    padding: 10px;
    color: #222;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
}

.dropdown-pane a:hover {
    background: #f1f6ff;
    color: #176CB1;
}

/* GET A QUOTE BUTTON */
.btn-quote {
    background: #176CB1;
    color: #fff;
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-quote:hover {
    background: #0f4e8c;
}

/* MENU BUTTON */
.menu-btn {
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #176CB1;
    cursor: pointer;
}

.menu-btn:focus {
    outline: none;
}

/* OFFCANVAS */
.stylish-offcanvas {
    background-color: rgb(233, 255, 246);
    color: #000000;
}

.stylish-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.418);
}


/* MOBILE MENU LINKS */
.mobile-nav-list {
    margin-top: 20px;
    list-style: none;
}

.mobile-nav-list .nav-link {
    color: #000000 !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    transition: 0.3s ease;
}

.mobile-nav-list .nav-link:hover {
    color: #58a6ff !important;
}

/* MOBILE DROPDOWN */
/* Remove default dropdown arrow from mobile */
.mobile-dropdown>.nav-link::after {
    content: none !important;
}

/* Toggle icon */
.mobile-dropdown .toggle-icon {
    float: right;
    font-weight: bold;
    margin-left: 10px;
    transition: transform 0.3s ease;
    /* smooth rotation */
}

/* Rotate toggle icon when dropdown is open */
.mobile-dropdown.open .toggle-icon {
    transform: rotate(90deg);
}

/* Dropdown pane */
.mobile-dropdown-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    list-style: none;
    /* padding-left: 10px; */
}

/* Expanded state */
.mobile-dropdown.open .mobile-dropdown-pane {
    max-height: 500px;
    /* enough height for content */
    padding-top: 8px;
}

/* Dropdown links */
.mobile-dropdown-pane li .nav-link {
    font-size: 14px;
    color: #24355D !important;
    font-weight: 500;
    position: relative;
    /* for underline effect */
    transition: color 0.3s ease, padding-left 0.3s ease, background 0.3s ease;
    padding: 8px 12px;
    /* add some padding for background */
    border-radius: 6px;
    /* rounded corners for background */
    background-color: #d1ddf5;
    /* light subtle background */
    margin-bottom: 4px;
    /* space between links */
}

/* Hover effect */
.mobile-dropdown-pane li .nav-link:hover {
    color: #58a6ff !important;
    background-color: #D1F0E0;
    /* slightly darker on hover */
    padding-left: 14px;
    /* subtle shift on hover */
}

/* Underline animation remains */
.mobile-dropdown-pane li .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #58a6ff;
    transition: width 0.3s ease;
}

.mobile-dropdown-pane li .nav-link:hover::after {
    width: 100%;
}

/* MOBILE SERVICE ROW */
.mobile-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Make toggle icon clickable */
.mobile-dropdown .toggle-icon {
    cursor: pointer;
}


/* OFFCANVAS CONSULT BUTTON */
.offcanvas-consult-btn {
    margin-top: 20px;
    text-align: center;
}

.offcanvas-consult-btn .btn-quote {
    display: inline-block;
    width: 100%;
}



/* DIVIDER */
.offcanvas-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.411);
    margin: auto;
}

/* OFFCANVAS CONTACT */
.offcanvas-contact {
    padding: 15px;
    border-radius: 8px;
    background-color: #f0f9f4;
    /* light subtle background */
}

.offcanvas-contact h6 {
    font-size: 15px;
    margin-bottom: 12px;
    color: #58a6ff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.offcanvas-contact p {
    color: #000;
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
    /* space between icon and text */
}

/* Social buttons container */
.offcanvas-socials {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

/* Individual social icons */
.offcanvas-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #58a6ff;
    /* primary accent color */
    transition: 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.offcanvas-socials a:hover {
    background: #176CB1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 108, 177, 0.4);
}

/* Optional: smooth icon scaling on hover */
.offcanvas-socials i {
    transition: transform 0.3s ease;
}

.offcanvas-socials a:hover i {
    transform: scale(1.2);
}

/* SOCIAL BUTTONS */
.offcanvas-socials {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.offcanvas-socials a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgb(38 38 38 / 10%);
    transition: 0.3s ease;
}

.offcanvas-socials a:hover {
    background: #176CB1;
}

.offcanvas-logo-link {
    text-decoration: none;
    display: inline-block;
}

.offcanvas-logo {
    height: 40px;
    width: auto;
}


/* RESPONSIVE */
@media (min-width: 992px) {
    .menu-btn {
        display: none;
    }

    .collapse.navbar-collapse {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .center-nav {
        display: none;
    }

    .btn-quote {
        display: none;
    }
}


/* Navbar-End */


/* HERO SECTION */
.hero-section {
    width: 100%;
    min-height: 70vh;
    background: linear-gradient(135deg, #29355B, #4B5C7E, #41A661);
    display: flex;
    align-items: center;
    padding: 80px 8%;
    position: relative;
    overflow: hidden;
}

/* Sparkle Canvas */
#sparkleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Content Above Sparkles */
.hero-container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

/* CONTENT */
.hero-content h1 {
    font-size: 34px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #F2C94C;
}

.hero-content p {
    color: #d9d9d9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-inline {
    padding: 14px 32px;
    background: #F2C94C;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-inline:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    padding: 14px 32px;
    border: 2px solid #00e0ff;
    color: #00e0ff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #00e0ff;
    color: #000;
}

/* IMAGE */
.hero-image img {
    width: 100%;
    border-radius: 20px;
    max-width: 500px;
    display: block;
    margin: auto;
    animation: floatImage 4s ease-in-out infinite;
}

/* Floating */
@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-section {
        min-height: 50vh;
    }


    .hero-content h1 {
        font-size: 20px;
        text-align: left;
    }

    .hero-content p {
        text-align: left;
        font-size: 14px;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .btn-inline {
        padding: 10px;
    }


    .btn-outline {
        padding: 10px;
    }
}




/* ============================
   BREADCRUMB SECTION
============================ */

.breadcrumb-section {
    position: relative;
    width: 100%;
    padding: 90px 8%;
    background: linear-gradient(120deg, #58a6ff, #24355D, #58a6ff);
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
    overflow: hidden;
    text-align: center;
}

/* Moving gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Dark overlay */
.breadcrumb-overlay {

    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Content wrapper */
.breadcrumb-container {
    position: relative;
    z-index: 2;
}

/* Page Title */
.breadcrumb-container h1 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: "Arima", "Poppins", sans-serif;
    font-weight: 700;
}


/* ============================
   BREADCRUMB LIST
============================ */

.breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    margin: 0 auto;
    width: fit-content;
    border-radius: 40px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Breadcrumb item pill */
.breadcrumb-item {
    padding: 6px;
    border-radius: 20px;
    font-size: 16px;
    color: #ffffff;
}

/* Home link */
.breadcrumb-item a {
    color: #58a6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect */
.breadcrumb-item a:hover {
    color: #ffffff;
}

/* Active page */
.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

/* Separator */
.breadcrumb-separator {
    color: #ffffff;
    font-size: 18px;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {

    .breadcrumb-section {
        padding: 70px 6%;
    }

    .breadcrumb-container h1 {
        font-size: 20px;
    }

    .breadcrumb-item {
        font-size: 13px;
        padding: 5px 14px;
    }

    .breadcrumb-separator {
        font-size: 16px;
    }
}




/* ABOUT SECTION */
.about-section {
    width: 100%;
    padding: 60px 8%;
    /* background: #f5f5f5; */
    text-align: center;
}

.about-wrapper {
    background-color: #ffffffd7;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 30px;

    /* Soft Shadow */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 18px;
}


.about-intro h4 {
    font-size: 14px;
    color: #41A362;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-intro h2 {
    font-size: 34px;
    font-weight: 700;
    color: #212f50;
    margin-bottom: 30px;
}

/* CONTENT GRID */
.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 50px; */
    align-items: center;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

.about-image img {
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    /* slightly zooms in */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    /* deeper shadow */
}


.about-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

.about-content .btn-about {
    margin-top: 20px !important;
    padding: 12px 28px;
    background: #3B496D;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-content .btn-about:hover {
    background: #2AA26B;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        width: 100%;
    }

    .about-content {
        margin-top: 30px;
    }

    .about-content p {
        font-size: 10px;
        text-align: left;
    }

    .about-intro h4 {
        font-size: 10px;
    }

    .about-intro h2 {
        font-size: 28px;
    }
}



/* =============================
   WHO WE ARE SECTION
============================= */

.who-we-are-section {
    padding: 60px 8%;
    /* background-color: #ffffff; */
}

/* Layout */
.who-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;

    background: #ffffffa9;
    padding: 30px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.who-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}


/* Left Content */
.who-content h4 {
    display: inline-block;
    color: #58a6ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-size: 14px;

    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(88, 166, 255, 0.466);
    border: 1px solid rgba(88, 166, 255, 0.4);

    font-weight: 600;
}


.who-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #24355D;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

.who-content p {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* List */
.who-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.who-list li {
    font-size: 14px;
    color: #24355D;
    margin-bottom: 10px;
}

/* Right Image */
.who-image img {
    width: 90%;
    height: 300px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.who-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 900px) {

    .who-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .who-image img {
        width: 100%;

    }

    .who-content h2 {
        font-size: 28px;
    }

    .who-list li {
        justify-content: left;
    }

    .who-content p {
        text-align: left;
        font-size: 12px;
    }

}



/* =============================
   WHY CHOOSE SECTION
============================= */
.why-choose-section {
    width: 100%;
    padding: 80px 8%;
    /* background-color: #fdfdfd; */
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;

    background: #ffffffc5;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    transition: all 0.4s ease;
}

/* Hover Effect */
.why-container:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}


/* LEFT IMAGE */
.why-image {
    text-align: center;

}

.why-image img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-image img:hover {
    background-color: #204790;
    /* or gradient/image */
    padding: 5px;
    border-radius: 50%;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* RIGHT CONTENT */
.why-content h4 {
    display: inline-block;
    /* shrink to text */
    padding: 6px 18px;
    /* tight spacing */
    background: linear-gradient(135deg, #58a6ff, #3b82f6);
    color: #ffffff;

    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;

    border-radius: 50px;
    margin: 0 auto 15px auto;
    /* center horizontally */
    width: fit-content;

    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.35);
    transition: all 0.3s ease;
}

/* Center the line itself */
.why-content {
    text-align: center;
}

/* Hover */
.why-content h4:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.45);
}



.why-content h2 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    /* font-family: "Montserrat", sans-serif; */
    color: #24355D;
}

.why-content p {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #000000;
}

/* LIST TWO PER ROW */
.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
}

.why-list li {
    background-color: #f5f7fa;
    padding: 15px 20px 15px 40px;
    border-radius: 10px;
    font-size: 14px;
    text-align: left;
    color: #000000;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-list li::before {
    content: "➣";
    position: absolute;
    left: 20px;
    top: 35%;
    transform: translateY(-50%);
    color: #24355D;
    font-weight: bold;
}

.why-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .why-list li {
        padding-left: 40px;
    }

    .why-image img {
        width: 100%;
        height: 200px;
        margin: auto;
        margin-bottom: 30px;
    }

    .why-content h2 {
        font-size: 20px;

    }

    .why-list li::before {
        top: 35%;
    }


    .why-content p {
        font-size: 12px;
    }
}




.vms-section {
    padding: 80px 5%;
    /* background: #f7f9fc; */
}

.vms-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vms-card {
    background: #ffffff;
    padding: 50px 30px 40px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.vms-card:hover {
    transform: translateY(-8px);
}

/* Letter Circle */
.vms-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Colors */
.v-icon {
    background: #ff9800;
}

.m-icon {
    background: #e91e63;
}

.s-icon {
    background: #1abc9c;
}

/* Hover Effect */
.v-icon:hover,
.m-icon:hover,
.s-icon:hover {
    transform: translateY(-5px) scale(1.08);
    filter: brightness(1.1);
}

/* Smooth transition */
.v-icon,
.m-icon,
.s-icon {
    transition: all 0.35s ease;
}

.vms-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.vms-card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

/* Bottom Colored Line */
.vms-line {
    width: 70px;
    height: 5px;
    border-radius: 5px;
    display: block;
    margin: 0px auto 10px;
}

.v-line {
    background: #ff9800;
}

.m-line {
    background: #e91e63;
}

.s-line {
    background: #1abc9c;
}





.future-perfect-section {
    padding: 90px 5%;
    /* background: linear-gradient(135deg, #1e1e2f, #2c2c54); */
    text-align: center;
}

.future-perfect-container {
    max-width: 900px;
    margin: auto;
    background: rgb(255, 255, 255);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.171);
    padding: 60px 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.future-perfect-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(116, 116, 116, 0.45);
}

/* Text Styling */
.future-perfect-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #24355D;
}

.future-perfect-container p {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
}

.future-perfect-container strong {
    color: #3BA564;
}

.deal-text {
    display: inline-block;
    margin-top: 10px;
    font-size: 40px;
    font-weight: 700;
    color: brown;
    letter-spacing: 1px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Deal hover animation */
.future-perfect-container:hover .deal-text {
    transform: scale(1.1);
    color: brown;
}

/* Responsive */
@media (max-width: 768px) {
    .future-perfect-container {
        padding: 45px 25px;
    }

    .future-perfect-container h2 {
        font-size: 2.1rem;
    }

    .deal-text {
        font-size: 1.4rem;
    }
}






/* Section styling */
.services-section {
    padding: 80px 5%;
    /* background-color: #f8f9fa; */
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* What I Offer button-style heading */
.offer-header h4 {
    font-size: 14px;
    color: #41A362;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services heading */
.services-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212f50;
}

/* Services description */
.services-description {
    font-size: 14px;
    color: #000000;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards layout */
.services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.center-row {
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 23%;
    transition: all 0.3s ease;
    padding: 20px;
}

.center-row .service-card {
    width: 25%;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212f50;
}

.service-card p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 15px;
}

.btn-know {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #ff9800;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-know:hover {
    background-color: #e68a00;
}

/* Button below all cards */
.all-services-btn {
    margin-top: 40px;
    text-align: center;
}

.all-services-btn .btn-know {
    background-color: #29355B;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.all-services-btn .btn-know:hover {
    background-color: #1e2847;
    transform: translateY(-3px);
}

/* Floating hover effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* =========================
   Responsive Breakpoints
========================= */

/* Tablets */
@media (max-width: 992px) {
    .service-card {
        width: 48%;
        /* 2 cards per row */
    }

    .center-row .service-card {
        width: 48%;
        /* maintain 2 per row, center automatically */
    }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 5%;
    }

    .services-title {
        font-size: 28px;
    }

    .service-card {
        width: 100%;
        /* single card per row */
    }

    .center-row .service-card {
        width: 100%;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .services-title {
        font-size: 24px;
    }

    .services-description {
        font-size: 13px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }

    .btn-know {
        font-size: 14px;
        padding: 8px 16px;
    }

    .all-services-btn .btn-know {
        font-size: 1rem;
        padding: 10px 20px;
    }
}







/* ===============================
   INNER SERVICE SECTION
================================ */
.inner-service-section {
    width: 100%;
    padding: 80px 8%;
    background: #ffffff;
}

.inner-service-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    /* equal height */
    gap: 50px;
}

/* IMAGE */
.inner-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;

    /* CLARITY BOOST */
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.inner-service-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}


/* CONTENT */
.inner-service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inner-service-content h4 {
    display: inline-block;
    /* shrink to text */
    padding: 6px 18px;
    /* tight spacing */
    background: linear-gradient(135deg, #58a6ff, #3b82f6);
    color: #ffffff;

    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;

    border-radius: 50px;
    margin: 0 auto 15px auto;
    /* center horizontally */
    width: fit-content;

    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.35);
    transition: all 0.3s ease;
}

/* Center the line itself */
.inner-service-content {
    text-align: center;
}

/* Hover */
.inner-service-content h4:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.45);
}


.inner-service-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #24355D;
    margin-bottom: 20px;
}

.inner-service-content p {
    font-size: 12px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 18px;
}

/* FEATURE LIST */
.inner-service-points {
    margin-top: 15px;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.inner-service-points li {
    background: #f5f7fa;
    padding: 14px 18px 14px 40px;
    border-radius: 10px;
    font-size: 12px;
    color: #555;
    position: relative;
    transition: 0.3s ease;
}

.inner-service-points li::before {
    content: "✔";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #58a6ff;
    font-weight: bold;
}

.inner-service-points li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media(max-width:992px) {
    .inner-service-container {
        grid-template-columns: 1fr;
    }

    .inner-service-image {
        margin: auto;
        width: 90%;
        height: 320px;
    }

    .inner-service-points {
        grid-template-columns: 1fr;
    }

    .inner-service-content {
        text-align: center;
    }

    .inner-service-content h2 {
        font-size: 22px;
    }
}








.work-section {
    padding: 80px 5%;
    /* background-color: #f9f9f9; */
    text-align: center;
}

.work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
    background-color: #ffffff;
    /* Soft light background */
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Optional hover effect */
.work-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


.small-title {
    font-size: 14px;
    color: #41A362;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.work-title {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #29355B;
}

.work-desc {
    font-size: 14px;
    color: #000000;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 10px;
}

/* Card Style */
.work-card {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-image {
    border: 1px solid #000;
    width: 100%;
    display: block;
    object-fit: cover;
    height: 220px;
}

/* Floating info box */
.card-info {
    position: absolute;
    bottom: -5px;
    left: 15px;
    right: 15px;
    gap: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 13px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(30%);
    transition: transform 0.3s ease;
}

.work-card:hover .card-info {
    transform: translateY(0);
}



/* Flex layout for icon + content inside .info-text */
.info-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* space between icon and text */
}

/* Icon styling */
.info-icon {
    background-color: rgb(245, 245, 245);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.26);
    padding: 10px;
    font-size: 30px;
    /* adjust size to fit existing text */
    color: #41A661;
    /* green icon */
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect: icon changes color and slightly moves */
.work-card:hover .info-icon i {
    color: #29355B;
    /* dark blue */
    transform: scale(1.2);
}

/* Keep existing text styling */
.info-content h3,
.info-content p {
    text-align: left;
    margin: 0;
}

.info-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #29355B;
}

.info-content p {
    font-size: 12px;
    color: #000;
}

/* See More Button */
.see-more-btn {
    margin-top: 40px;
}

.see-more-btn a {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.see-more-btn a:hover {
    background: #333;
}

/* Responsive */
@media (max-width: 1024px) {
    .work-section {
        padding: 60px 4%;
    }

    .work-title {
        font-size: 2.2rem;
    }

    .work-desc {
        font-size: 0.95rem;
    }

    .card-image {
        height: 200px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .work-section {
        padding: 50px 3%;
    }

    .work-title {
        font-size: 2rem;
    }

    .work-desc {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .card-title {
        font-size: 1.05rem;
    }

    .info-text h3 {
        font-size: 1rem;
    }

    .info-text p {
        font-size: 0.85rem;
    }

    .card-image {
        height: 180px;
    }

    .info-icon img {
        width: 22px;
    }

    .see-more-btn a {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .work-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 480px) {
    .work-section {
        padding: 40px 2%;
    }

    .work-title {
        font-size: 22px;
    }

    .work-desc {
        font-size: 11px;
    }

    .info-text h3 {
        font-size: 0.95rem;
    }

    .info-text p {
        font-size: 0.8rem;
    }

    .card-image {
        height: 150px;
    }


    .work-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .info-icon img {
        width: 20px;
    }

    .see-more-btn a {
        padding: 8px 20px;
        font-size: 16px;
    }
}


/* How We Work Section */

.how-we-work-section {
    padding: 80px 5%;
    /* background-color: #f9fafc; */
}

.how-we-work-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 50px 30px;
    /* Adds spacing inside the container */
    border-radius: 16px;
    /* Rounded corners */
    background-color: #ffffff93;
    /* Soft light teal background */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Optional subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover effect */
.how-we-work-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Left Image */

.how-we-work-image {
    flex: 1;
    text-align: center;
}

.how-we-work-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Right Content */

.how-we-work-content {
    flex: 1;
}



.how-we-work-content h2 {
    text-transform: none;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #29355B;
}

.how-we-work-content p {
    font-size: 12px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 18px;
}

/* Bold Highlight */

.how-we-work-content strong {
    color: #111;
    font-weight: 600;
}

/* Hover effect on image */

.how-we-work-image img {
    transition: transform 0.4s ease;
}

.how-we-work-image img:hover {
    transform: scale(1.05);
}

/* Responsive */

@media (max-width: 992px) {
    .how-we-work-container {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .how-we-work-image img {
        width: 300px;
        height: 300px;
    }

    .how-we-work-content h2 {
        padding: 0;
        font-size: 22px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .how-we-work-image img {
        width: 300px;
        height: 300px;
    }

    .how-we-work-content p {
        font-size: 12px;
        text-align: left;
    }
}







/* Portfolio Section */
.portfolio-section {
    padding: 90px 5%;
    background: linear-gradient(180deg, #f8fafc, #eef3f7);
    text-align: center;
}

.portfolio-container {
    max-width: 1200px;
    margin: auto;
}

/* Titles */
.section-small-title {
    font-size: 14px;
    color: #41A661;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #29355B;
}

.section-desc {
    font-size: 15px;
    color: #555;
    max-width: 650px;
    margin: 15px auto 60px;
}

/* ===============================
   GRID
================================*/
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ===============================
   CARD
================================*/
.portfolio-card {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: #fff;
}

/* Hover Effect */
.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
    border-color: #41A362;
}

/* Optional Image Zoom */
.portfolio-card img {
    transition: transform 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

/* Gradient glow */
/* .portfolio-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#41A661,#29355B);
    opacity:0;
    z-index:-1;
    filter:blur(25px);
    transition:0.4s ease;
} */

/* Hover effects */
.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.portfolio-card:hover::after {
    opacity: 0.6;
}

/* ===============================
   IMAGE
================================*/
.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.6s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.12);
}

/* ===============================
   OVERLAY
================================*/
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(41, 53, 91, 0.2),
            rgba(41, 53, 91, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

/* Overlay Button */
.portfolio-overlay .btn-case {
    padding: 12px 28px;
    background: #41A661;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.portfolio-overlay .btn-case:hover {
    background: #F2C94C;
    color: #000;
}

/* ===============================
   CONTENT
================================*/
.portfolio-card h3 {
    font-weight: 600;
    font-size: 14px;
    padding: 18px 15px 5px;
    color: #29355B;
}

.btn-case {
    margin-bottom: 18px;
    display: inline-block;
    padding: 8px 15px;
    background: #fa7101;
    font-size: 14px;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-case:hover {
    background: #29355B;
}

/* ===============================
   CTA
================================*/
.portfolio-cta {
    margin-top: 60px;
}

.portfolio-cta .btn-primary {
    padding: 14px 36px;
    background: #29355B;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.portfolio-cta .btn-primary:hover {
    background: #41A661;
    transform: translateY(-3px);
}

/* ===============================
   RESPONSIVE
================================*/
@media(max-width:1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 190px;
    }

    .section-title {
        font-size: 22px;
    }
}




#description-section {
    padding: 80px 5%;

    /* light background */
}

.description-section .description-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 20px;
    background-color: #ffffff;
    /* card-like background */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.description-section .description-container:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f1 100%);
    /* subtle hover effect */
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.description-section h2 {
    text-transform: none;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212f50;
    text-align: center;
}

.description-section p {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* First letter styling (optional, matches portfolio cards) */
.description-section p::first-letter {
    font-size: 2rem;
    font-weight: bold;
    color: #212f50;
}

/* Responsive */
@media (max-width: 768px) {
    .description-section h2 {
        font-size: 1.8rem;
    }

    .description-section p::first-letter {
        font-size: 1.6rem;
    }

    .description-section .description-container {
        padding: 30px 20px;
    }
}






/* INNER PORTFOLIO SECTION */
#inner-portfolio-section {
    padding: 60px 5%;
    /* background-color: #f9f9f9; */
}

.inner-portfolio-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
    /* add padding so content doesn't touch edges */
    background-color: #ffffff79;
    /* white card background */
    border-radius: 20px;
    /* rounded corners */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* optional hover animation */
}

.inner-portfolio-section .container:hover {
    transform: translateY(-5px);
    /* slight lift on hover */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    /* stronger shadow on hover */
}

/* Top: Image + Content */
.portfolio-top {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.portfolio-image {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.portfolio-image img {
    width: 100%;
    max-width: 340px;
    height: 200px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.portfolio-content {
    flex: 1;
    min-width: 300px;
}


.portfolio-content h2 {
    text-align: left;
    color: #212f50;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: none;
}

.portfolio-content p {
    color: #000;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* First letter big */
.portfolio-cards .card p::first-letter {
    font-size: 20px;
    font-weight: bold;
    color: #176CB1;
}

/* Bottom: Cards */
.portfolio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.portfolio-cards .card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* subtle default shadow */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-cards .card:hover {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    /* subtle two-side effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* subtle increase */
    transform: none;
    /* remove translateY lift */
}


.portfolio-cards .card h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212f50;
}

.portfolio-cards .card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-top {
        flex-direction: column-reverse;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .portfolio-content h2 {
        font-size: 20px;
    }

    .portfolio-content p {
        font-size: 12px;
    }

    .portfolio-cards .card h3 {
        font-size: 18px;
    }

    .portfolio-cards .card p {
        font-size: 12px;
    }

}









/* Clients Section */
.clients-section {
    padding: 80px 5%;
    background-color: #f0f4f8;
    text-align: center;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Titles */
.clients-section .section-small-title {
    font-size: 14px;
    color: #41A661;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-section .section-title {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #29355B;
}

.clients-section .section-desc {
    font-size: 14px;
    color: #000000;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel */
.clients-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-track {
    display: flex;
    gap: 30px;
    animation: slide 30s linear infinite;
}

/* Auto-slide animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Client Card – Uniform size */
.client-card {
    /* background: #fff; */
    border-radius: 12px;
    padding: 20px;
    min-width: 200px;
    flex-shrink: 0;
    height: 220px;
    /* uniform height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.client-card img {
    max-width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.client-card p {
    font-size: 14px;
    color: #29355B;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

/* Hover Effects */
.client-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); */
}

.client-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .clients-track {
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .clients-track {
        gap: 15px;
    }

    .client-card {
        min-width: 150px;
        height: 180px;
        padding: 15px;
    }

    .client-card img {
        max-width: 70px;
        height: 70px;
    }

    .client-card p {
        font-size: 12px;
    }

    .clients-section .section-desc {
        font-size: 12px;
    }

    .clients-section .section-title {
        font-size: 22px;
    }
}



/* Section */
.collaboration-section {
    padding: 80px 5%;
    background: #f7f9fc;
}

/* Container */
.collaboration-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image */
.collaboration-image {
    flex: 1;
    text-align: center;
}

.collaboration-image img {
    width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.collaboration-image img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}


/* Content */
.collaboration-content {
    flex: 1;
}

.collaboration-content h2 {
    text-transform: none;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 20px;
    color: #212f50;
}

.collaboration-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .collaboration-container {
        flex-direction: column;
        text-align: center;
    }

    .collaboration-image img {
        width: 300px;
        height: 300px;
    }

    .collaboration-content h2 {
        font-size: 22px;
    }

    .collaboration-content p {
        font-size: 12px;
        text-align: left;
    }
}




/* Contact Section */
#contact-section {
    padding: 80px 5%;
    /* background-color: whitesmoke; */
    font-family: Arial, sans-serif;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;

    background-color: #ffffffc0;
    /* Soft light green */
    padding: 50px 30px;
    /* Add spacing inside container */
    border-radius: 16px;
    /* Rounded corners */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Optional soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover effect */
.contact-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    color: #29355B;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-details li {
    font-weight: 600px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-details span,
.contact-details a {
    color: #0F4E8C;
    text-decoration: none;
}

.contact-cta {
    display: inline-block;
    padding: 10px 25px;
    background-color: #0F4E8C;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-cta:hover {
    background-color: #0F4E8C;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.submit-btn {
    padding: 12px 25px;
    background-color: #0F4E8C;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1A2C49;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
}

/* POPUP */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #ffffff;
    padding: 35px;
    width: 320px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pop 0.4s ease;
}

.popup-box h3 {
    font-size: 16px;
    color: #0F4E8C;
    margin-bottom: 10px;
}

.popup-box p {
    font-size: 12px;
    margin-bottom: 20px;
}

.popup-box button {
    padding: 10px 25px;
    background: #0F4E8C;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.popup-box button:hover {
    background: #1A2C49;
}

@keyframes pop {
    from {
        transform: scale(0.7);
    }

    to {
        transform: scale(1);
    }
}






.thank-you-section {
    width: 100%;
    padding: 60px 0;
    /* background-color: whitesmoke; */
    /* Green background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.thank-you-bg {
    background-color: #ffffff7a;
    /* Container color with transparency */
    padding: 50px 40px;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.thank-you-bg:hover {
    transform: translateY(-10px);
    /* Lift up on hover */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    /* Stronger shadow */
    background-color: #f8fff7;
    /* Slightly brighter background */
}


.thank-you-container p {
    font-size: 14px;
    line-height: 1.8;
    color: #212f50;
    margin-bottom: 20px;
}

.thank-you-container h2 {
    font-size: 60px;
    font-weight: 700;
    color: #41A362;
    /* Heading in brand green */
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.thank-you-container span {
    color: #24355C;
}

/* Responsive */
@media (max-width: 768px) {
    .thank-you-container h2 {
        font-size: 36px;
    }

    .thank-you-container p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .thank-you-container h2 {
        font-size: 28px;
    }

    .thank-you-container p {
        font-size: 13px;
    }

    .thank-you-bg {
        padding: 30px 20px;
    }
}






.footer-top-cta {
    background: #000000;
    color: #fff;
    padding: 30px 5%;
}

.footer-top-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    /* Makes it wrap on smaller screens */
}

/* Left CTA Button */
.cta-left .cta-btn {
    background: #41A667;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-left .cta-btn:hover {
    background: #24355C;
}

/* Middle Text */
.cta-middle h3 {
    font-size: 24px;
    text-align: center;
    margin: 0;
    flex: 1 1 100%;
}

/* Right Social Icons */
.cta-right a {
    color: #fff;
    font-size: 22px;
    margin-left: 15px;
    transition: 0.3s;
}

.cta-right a:first-child {
    margin-left: 0;
}

.cta-right a:hover {
    color: #ff5e57;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-top-container {
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .cta-left,
    .cta-right {
        margin: 15px 0;
    }

    .cta-right a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .footer-top-cta {
        padding: 20px 5%;
    }

    .cta-middle h3 {
        font-size: 16px;
    }

    .cta-left .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cta-right a {
        font-size: 1.3rem;
    }
}


/* Footer-start */
.main-footer {
    background-color: #24355D;
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== GRID ===== */
.footer-main-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    margin-bottom: 40px;
}


.footer-col {
    padding: 0 25px;
    position: relative;
}

/* ===== VERTICAL DIVIDER ===== */
.footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: 90%;
    background: rgba(255, 255, 255, 0.555);
}


.quicklinks-col {
    padding: 0 25px;
}

.quicklinks-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* GRID */
.quicklinks-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px 20px;
    width: 380px;
}

/* LINKS */
.quicklinks-grid li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quicklinks-grid i {
    font-size: 12px;
    color: #ffffff;
}

.quicklinks-grid a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    line-height: 1.4;
}

.quicklinks-grid a:hover {
    color: #176CB1;
    padding-left: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .quicklinks-grid {
        grid-template-columns: 1fr;
    }

    .quicklinks-title {
        text-align: left;
    }
}


/* ===== BRAND ===== */
.footer-logo {
    background-color: #fff;
    border-radius: 10px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* smooth transition */
}

.footer-logo:hover {
    transform: scale(1.05);
    /* slightly enlarge */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* subtle shadow */
}


.brand-text {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.6;
}

/* ===== SOCIAL ===== */
.footer-socials {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.footer-socials a {
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #176CB1;
}

/* ===== TITLES ===== */
.footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-title i {
    margin-right: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}


/* ===== LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-links i {
    font-size: 12px;
    color: #ffffff;
}

.footer-links a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #176CB1;
    padding-left: 4px;
}

/* ===== CONTACT ===== */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 15px;
    width: 270px;
}

.contact-list i {
    color: #ffffff;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background-color: #167DE2;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 12px;
    color: #ffffff;

    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    text-align: center;
}

@media (max-width: 480px) {
    .footer-main-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

@media (max-width: 768px) {
    .footer-bottom {
        border-radius: 15px;
        padding: 12px 20px;
    }
}

/* ================================
   RESPONSIVE FOOTER IMPROVEMENTS
================================ */

/* Large Tablets */
@media (max-width: 1200px) {
    .footer-main-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .quicklinks-grid {
        width: 100%;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .footer-main-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-col,
    .quicklinks-col {
        padding: 0 10px;
    }

    /* Remove vertical dividers */
    .footer-col:not(:last-child)::after {
        display: none;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .footer-main-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-socials {
        justify-content: left;
    }

    .footer-links li,
    .contact-list li,
    .quicklinks-grid li {
        justify-content: left;
    }

    .footer-title,
    .quicklinks-title {
        text-align: left;
    }

    .quicklinks-grid {
        grid-template-columns: 1fr;
        justify-items: left;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Extra Small Phones */
@media (max-width: 400px) {
    .footer-title {
        font-size: 18px;
    }

    .footer-links a,
    .contact-list li,
    .quicklinks-grid a {
        font-size: 13px;
    }

    .brand-text {
        font-size: 13px;
    }
}




/* Footer-end */

/* ===============================
   ANIMATED BACK TO TOP BUTTON
   =============================== */

#et-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #f4a100, #ff7b00);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    overflow: hidden;
}

/* Show button */
#et-top-btn.et-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Arrow */
.et-top-arrow {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover lift + glow */
#et-top-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(244, 161, 0, 0.45);
}

/* Arrow bounce on hover */
#et-top-btn:hover .et-top-arrow {
    transform: translateY(-4px);
}

/* Pulse ring animation */
#et-top-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: scale(1);
}

#et-top-btn:hover::before {
    animation: et-top-pulse 0.9s ease-out;
}

@keyframes et-top-pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

/* Floating idle animation */
#et-top-btn.et-show {
    animation: et-top-float 3s ease-in-out infinite;
}

@keyframes et-top-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    #et-top-btn {
        width: 44px;
        height: 44px;
        right: 15px;
        bottom: 15px;
    }

    .et-top-arrow {
        font-size: 18px;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    right: 25px;
    /* slightly off-screen */
    bottom: 90px;
    /* ABOVE back-to-top button */
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9998;
    /* below top button if needed */
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    /* slide fully into view */
    transform: scale(1.08);
    color: #ffffff;
}

/* Mobile adjustment */
@media (max-width: 480px) {
    .whatsapp-float {
        right: 15px;
        bottom: 80px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* ===== Call Floating Button ===== */
.call-float {
    position: fixed;
    left: 12px;
    /* slightly off-screen */
    bottom: 90px;
    /* balanced with other buttons */
    width: 52px;
    height: 52px;
    background: #1D56DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9997;
    transition: all 0.3s ease;
}

/* Hover / Tap effect */
.call-float:hover {
    left: 25px;
    transform: scale(1.08);
    color: #ffffff;
}

/* Hide on Desktop */
@media (min-width: 992px) {
    .call-float {
        display: none;
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .call-float {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 80px;
    }
}



/* ===== Custom Scrollbar ===== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4338ca;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #6366f1 transparent;
}