@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');
@import url('https://fonts.googleapis.com/css2?family=Arima:wght@100..700&family=Bebas+Neue&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&family=Style+Script&display=swap');

/* 1. Global Reset */
/* Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Body Font (for paragraphs, content, buttons) */
body {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
}

/* Headings Font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

img {
    max-width: 100%;
}

/* DO NOT TOUCH html, body */
html,
body {
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, #e4efff 0%, #ffffff 50%, #fbe4e4 100%);
}




/* 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 {
  overflow: hidden;
  white-space: nowrap;
  background: black;
  color: white;
}

#marqueeText {
  display: inline-block;
  position: relative;
}


/* ================= 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 */
/* =========================
   HAMBURGER TOGGLER STYLE
========================= */

.menu-btn {
    width: 30px;
    height: 22px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

/* Hamburger Lines */
/* =========================
   STYLISH HAMBURGER BUTTON
========================= */

.menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(23, 108, 177, 0.08);
    border: 1px solid rgba(23, 108, 177, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Hamburger lines */
.menu-btn span {
    width: 22px;
    height: 2.5px;
    background: #176CB1;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hover effect */
.menu-btn:hover {
    background: #176CB1;
    box-shadow: 0 8px 20px rgba(23, 108, 177, 0.25);
    transform: translateY(-2px);
}

.menu-btn:hover span {
    background: #ffffff;
}

/* Remove outline */
.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: 90vh;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 8%;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Dark Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    /* dark overlay */
    z-index: 1;
}

/* Keep content above video */
.hero-container {
    position: relative;
    z-index: 2;
}

/* Container */
.hero-section .hero-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Small Heading */
.hero-section .hero-small {
    color: #F2C94C;
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Main Heading */
.hero-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    background: linear-gradient(90deg, #F4ED0C, #9CF1E7, #3BA564);
    background-clip: text;
    /* Standard */
    -webkit-background-clip: text;
    /* Chrome/Safari */
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Inline Video Text */
.video-inline-text {
    margin: 30px 0 40px;
    text-align: center;
}

.video-inline-text p {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.8;
}

/* Inline Play Button */
.inline-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 8px;
    background: #F2C94C;
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    animation: softPulse 1.8s infinite;
    transition: 0.3s;
}

.inline-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 8px;
    background: #3BA564;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 13px;
    position: relative;
    transition: 0.3s;

    /* Soft Glow Shadow */
    box-shadow: 0 0 15px rgba(59, 165, 100, 0.6);

    /* Pulse Animation */
    animation: softPulseGlow 2s infinite;
}

/* Soft Pulse + Shadow Animation */
@keyframes softPulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(59, 165, 100, 0.5);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 25px rgba(59, 165, 100, 0.671);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(59, 165, 100, 0.5);
    }
}

/* Hover Effect */
.inline-play-btn:hover {
    background: #F2C94C;
    box-shadow: 0 0 30px rgba(36, 53, 92, 0.8);
}

/* Modal Background */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal Content */
.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.video-modal iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

/* Close Button */
.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}



/*  BUTTONS  */

.hero-section .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    padding: 14px 32px;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1e8d48;
    border: 2px solid #1e8d48;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 14px 32px;
    border: 2px solid #F2C94C;
    color: #F2C94C;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #F2C94C;
    color: #000;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 44px;
    }

    .hero-section .hero-small {
        font-size: 14px;
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
        font-size: 20px;
    }

    .hero-section .hero-buttons {
        flex-direction: row;
    }
}

@media (max-width: 500px) {
    .hero-section {
        width: 100%;
        min-height: 50vh;
    }

    .hero-section h1 {
        font-size: 26px;
    }

    .hero-section .hero-small {
        font-size: 18px;
    }

    .video-inline-text p {
        color: #ffffff;
        font-size: 18px;
        line-height: 1.8;
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
        font-size: 20px;
    }

    .hero-section .hero-buttons {
        flex-direction: row;
    }
}

@media (max-width: 400px) {
    .hero-section {
        width: 100%;
        min-height: 50vh;
    }

    .hero-section h1 {
        font-size: 18px;
    }

    .hero-section .hero-small {
        font-size: 14px;
    }

    .video-inline-text p {
        color: #ffffff;
        font-size: 12px;
        line-height: 1.8;
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
        font-size: 20px;
    }

    .hero-section .hero-buttons {
        flex-direction: column;
    }

}

/* hero end */



/* testimonial-section start */
.testimonial-section {
    background: linear-gradient(135deg, #e4efff 0%, #ffffff 50%, #fbe4e4 100%);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

/* Header Styles */
.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.testimonial-header h2 {
    font-size: 2.5rem;
    color: #111;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.text-highlight {
    display: inline-block;
    background: #ffcc66;
    padding: 2px 15px;
    border-radius: 12px;
    margin-top: 10px;
}

.google-brand {
    margin-top: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
}

/* Carousel Mechanics */
.carousel-viewport {
    width: 100%;
    position: relative;
    perspective: 1000px;
    /* Essential for 3D depth */
}

.card-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    align-items: center;
    padding: 60px 0;
    will-change: transform;
}

/* Individual Card Styling */
.biz-card {
    min-width: 250px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.5s ease;
    filter: brightness(0.7) grayscale(0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Overlays */
.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Active State (The Center Card) */
.biz-card.active {
    filter: brightness(1) grayscale(0);
    transform: scale(1.15) !important;
    /* Forces center card to be biggest */
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Controls */
.manual-nav {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.nav-btn {
    border: 1px solid #ddd;
    background: white;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

/* Medium Screens (Tablets: 768px - 1024px) */
@media (max-width: 1024px) {
    .testimonial-header h2 {
        font-size: 2.2rem;
    }

    .text-highlight {
        padding: 2px 12px;
        font-size: 12px;
    }

    .card-track {
        padding: 50px 0;
        gap: 15px;
    }

    .biz-card {
        min-width: 220px;
        height: 320px;
    }
}

/* Small Screens (Mobile: 480px - 767px) */
@media (max-width: 767px) {
    .testimonial-section {
        padding: 60px 20px;
    }

    .testimonial-header h2 {
        font-size: 1.8rem;
    }

    .text-highlight {
        padding: 2px 10px;
        font-size: 11px;
    }

    .card-track {
        padding: 40px 0;
        gap: 12px;
    }

    .biz-card {
        min-width: 180px;
        height: 280px;
    }

    .card-overlay {
        bottom: 15px;
        left: 10px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .manual-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Extra Small Screens (Phones <480px) */
@media (max-width: 480px) {
    .testimonial-header h2 {
        font-size: 1.5rem;
    }

    .text-highlight {
        padding: 2px 8px;
        font-size: 10px;
    }

    .card-track {
        gap: 10px;
    }

    .biz-card {
        min-width: 150px;
        height: 240px;
    }

    .card-overlay {
        padding: 5px 10px;
        font-size: 10px;
    }

    .manual-nav {
        gap: 10px;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* testimonial-section end */


/* founder-section start */
.founder-section {
    padding: 80px 8%;
    background: #f9fafc;
}

/* Container */
.founder-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Image */
.founder-image {
    flex: 1;
}

.founder-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.founder-image img:hover {
    transform: scale(1.05);
}

/* Content */
.founder-content {
    flex: 1;
}

.founder-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
    position: relative;
}

.founder-content h2::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0px;
    width: 6px;
    height: 45px;
    background: #212D46;
    border-radius: 4px;
}

.founder-content p {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    color: #111;
    margin-bottom: 15px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .founder-container {
        gap: 40px;
    }

    .founder-content h2 {
        font-size: 30px;
    }

    .founder-image img {
        height: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-content h2::before {
        display: none;
    }

    .founder-content h2 {
        font-size: 26px;
    }

    .founder-image img {
        height: auto;
    }
    .founder-content .text-highlight {
      
    padding: 2px 8px;
    font-size: 26px;
    }
 }

/* Small Mobile */
@media (max-width: 480px) {
    .founder-section {
        padding: 60px 5%;
    }

    .founder-content p {
        font-size: 14px;
    }

    .founder-image img {
        height: auto;
    }
}

/* founder-section end */



/* ============================
   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 5%;
    /* background: #f5f5f5; */
    text-align: center;
}

.about-wrapper {
    background-color: #ffffffd7;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px;
    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: 14px;
        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 5%;
    /* background-color: #ffffff; */
}

/* Layout */
.who-container {
    max-width: 1200px;
    margin: auto;
    gap: 20px;
    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;
}

.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: 14px;
    }

}



/* =============================
   WHY CHOOSE SECTION
============================= */
.why-choose-section {
    width: 100%;
    padding: 60px 5%;
    /* 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: 40px 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: 20px;
    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: 10px;
    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: 30px;
    margin-bottom: 20px;
    color: rgb(36, 53, 93);
}

.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: 14px;
    }

    .why-content h4 {
        font-size: 10px;
    }
}




.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;
}

.vms-card p span {
    font-weight: 600;
    color: #24355D;
    font-size: 16px;
}

/* 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: 20px;
    margin-bottom: 5px;
    font-weight: 500;
}

.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;
    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: 20px;
        margin-bottom: 10px;
    }

    .deal-text {
        font-size: 18px;
    }

    .vms-card p span {
        font-size: 14px;
    }

    .vms-card p {
        font-size: 14px;
    }

    .future-perfect-container p {
        font-size: 14px;
    }
}


/* .servicing-recommend-section start */

.servicing-recommend-section {
    padding: 80px 5%;
    text-align: center;

    /* Creates a white top half and a light blue bottom half */
    /* Adjust 50% to change where the color split happens */
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #ffffff 20%,
            #29355B 20%,
            #29355B 50%,
            #29355B 100%);

    /* Perspective is required here for the 3D 'rotateY' on images to work */
    perspective: 1200px;
    overflow: hidden;
}

.servicing-recommend-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Small Heading */
.servicing-recommend-section .offer-header h4 {
    font-size: 14px;
    color: #3BA564;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Main Heading */
.servicing-recommend-section .services-title {
    font-size: 42px;
    font-weight: 800;
    color: #27476F;
    margin-bottom: 20px;
}

/* Description */
.servicing-recommend-section .services-description {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ================================
   ROW LAYOUT
================================ */

.servicing-recommend-section .services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Center second row */
.servicing-recommend-section .center-row {
    justify-content: center;
}

/* ================================
   CARD DESIGN
================================ */

.servicing-recommend-section .service-card {
    background: transparent;
    overflow: hidden;
    width: 23%;
    transition: 0.4s ease;
    text-align: left;
    position: relative;
}

/* Row 2 width (3 cards centered) */
.servicing-recommend-section .center-row .service-card {
    width: 30%;
}

/* Image */
.servicing-recommend-section .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;

    border-radius: 15px;

    filter: brightness(0.6) grayscale(0.2);

    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;

    transform: scale(0.9) rotateY(20deg);
}

.servicing-recommend-section .service-card.active img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.1) rotateY(0deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}


/* Title */
.servicing-recommend-section .service-card h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
    /* Bold yellow */
    margin: 20px 20px 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraph */
.servicing-recommend-section .service-card p {
    font-size: 14px;
    color: #ffffff;
    margin: 0 20px 20px 20px;
    line-height: 1.7;
    height: 170px;
}

/* Button */
.servicing-recommend-section .btn-know {
    display: inline-block;
    margin: 0 20px 25px 20px;
    padding: 10px 22px;
    background: #F4ED0C;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s ease;
}

/* Button Hover */
.servicing-recommend-section .btn-know:hover {
    background: #3BA564;
    color: #ffffff;
}

/* Card Hover Effect */
.servicing-recommend-section .service-card:hover {
    transform: translateY(-12px);
}

/* Optional Image Zoom Hover */
.servicing-recommend-section .service-card:hover img {
    transform: scale(1.05);
    transition: 0.4s ease;
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* Tablet */
@media (max-width: 992px) {

    .servicing-recommend-section {
        padding: 70px 5%;
        background: linear-gradient(to bottom,
                #ffffff 0%,
                #ffffff 10%,
                #29355B 10%,
                #29355B 50%,
                #29355B 100%);
    }

    .servicing-recommend-section .service-card {
        width: 48%;
    }

    .servicing-recommend-section .center-row .service-card {
        width: 48%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .servicing-recommend-section {
        padding: 70px 5%;
        background: linear-gradient(to bottom,
                #ffffff 0%,
                #ffffff 5%,
                #29355B 5%,
                #29355B 50%,
                #29355B 100%);
    }

    .servicing-recommend-section .services-title {
        font-size: 30px;
    }

    .servicing-recommend-section .service-card {
        width: 100%;
    }

    .servicing-recommend-section .center-row .service-card {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .servicing-recommend-section .services-title {
        font-size: 24px;
    }

    .servicing-recommend-section .services-description {
        font-size: 13px;
    }

    .servicing-recommend-section .service-card h3 {
        font-size: 18px;
    }

    .servicing-recommend-section .service-card p {
        font-size: 13px;
    }

    .servicing-recommend-section .btn-know {
        font-size: 13px;
        padding: 8px 18px;
    }
}

/* .servicing-recommend-section end */


/* ===============================
   INNER SERVICE SECTION
================================ */
.inner-service-section {
    width: 100%;
    padding: 80px 5%;
    background: #ffffff;
}

.inner-service-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    /* use flex instead of grid */
    align-items: center;
    /* vertical center */
    gap: 50px;
    flex-wrap: wrap;
    /* allows stacking on smaller screens */
}

/* IMAGE */
.inner-service-image {
    flex: 1;
    /* take proportional space */
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
}

.inner-service-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    /* maintain aspect ratio */
    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 {
    flex: 1;
    /* take proportional space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center of content */
    text-align: left;
}

.inner-service-content h4 {
    display: inline-block;
    padding: 6px 18px;
    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;
    width: fit-content;

    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.35);
    transition: all 0.3s ease;
}

.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 {
        flex-direction: column;
        /* stack image above content */
        align-items: center;
    }

    .inner-service-image {
        width: 90%;
        height: auto;
        margin-bottom: 30px;
    }

    .inner-service-content {
        text-align: center;
    }

    .inner-service-content h2 {
        font-size: 22px;
    }

    .inner-service-points {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {

    .inner-service-content p,
    .inner-service-points li {
        font-size: 11px;
    }

    .inner-service-content h2 {
        font-size: 20px;
    }
}







/* ===============================
   WORK SECTION MODERN STYLE
==================================*/

.work-section {
    padding: 100px 5%;
    background: #ffffff;
    text-align: center;
}

.work-container {
    max-width: 1200px;
    margin: auto;
}

.small-title {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #41A362;
    margin-bottom: 10px;
}

.work-title {
    font-size: 36px;
    font-weight: 700;
    color: #29355B;
    margin-bottom: 20px;
}

.work-desc {
    max-width: 650px;
    margin: auto;
    font-size: 15px;
    color: #555;
    margin-bottom: 70px;
}

/* GRID */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.work-card {
    position: relative;
    background: #f9fafc;
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef1f5;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* BIG STEP NUMBER */
.work-card::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(41, 53, 91, 0.07);
}

/* Reset counter */
.work-grid {
    counter-reset: step;
}

/* IMAGE */
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 25px;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.work-card:hover .card-image {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* INFO */
.card-info {
    padding: 0;
}

.info-text {
    display: flex;
    gap: 18px;
}

/* ICON */
.info-icon {
    width: 50px;
    height: 50px;
    background: #41A362;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.work-card:hover .info-icon {
    background: #29355B;
    transform: rotate(-8deg) scale(1.1);
}

/* TEXT */
.info-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #29355B;
    font-weight: 600;
}

.info-content p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .work-section {
        padding: 70px 4%;
    }

    .work-title {
        font-size: 26px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 180px;
    }

    .work-card::before {
        font-size: 45px;
    }
}

@media (max-width: 480px) {

    .work-title {
        font-size: 22px;
    }

    .work-desc {
        font-size: 13px;
    }

    .card-image {
        height: 160px;
    }

    .info-content h3 {
        font-size: 16px;
    }

    .info-content p {
        font-size: 13px;
    }
}

/* =========================
   SEE MORE BUTTON STYLE
========================= */

.see-more-btn {
    margin-top: 60px !important;
    text-align: center;
}

.see-more-btn .btn-primary {
    position: relative;
    display: inline-block;
    padding: 14px 38px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #29355B);
    border-radius: 6px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(41, 53, 91, 0.2);
}

/* Hover effect */
.see-more-btn .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(41, 53, 91, 0.3);
}

/* Shine animation */
.see-more-btn .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.see-more-btn .btn-primary:hover::before {
    left: 130%;
}

/* Active click effect */
.see-more-btn .btn-primary:active {
    transform: scale(0.97);
}

/* Responsive */
@media (max-width: 768px) {
    .see-more-btn .btn-primary {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .see-more-btn .btn-primary {
        width: 100%;
        max-width: 280px;
    }
}








/* 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;
    }
}










/* video-section-start */
.video-section {
    padding: 50px 20px;
    background-color: #f8faff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-section-container {
    background-color: #EFF9F2;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    /* spacing inside container */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    /* soft shadow */
    border-radius: 12px;
    /* rounded corners */
}

/* Section Title */
.video-section-title {
    font-size: 30px;
    font-weight: 700;
    color: #29355B;
    margin-bottom: 30px;
}

/* Video Cards Grid */
.video-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 per row desktop */
    gap: 15px;
    justify-items: center;
    /* center cards horizontally */
    padding: 0 10px;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 520px;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.video-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.video-card iframe,
.video-card video {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.video-name {
    margin: 10px 0;
    font-size: 16px;
    color: #29355B;
    font-weight: 500;
}

/* Hover Effect */
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Tablet: 2 cards per row */
@media (max-width: 1024px) {
    .video-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }

    .video-card iframe,
    .video-card video {
        height: 300px;
    }

    .video-card {
        max-width: 90%;
    }
}

/* Mobile: 2 cards per row */
@media (max-width: 700px) {
    .video-cards-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        justify-items: center;
    }

    .video-card {
        max-width: 95%;
        margin: 0 auto;
    }

    .video-card iframe,
    .video-card video {
        height: 180px;
    }

    .video-name {
        font-size: 14px;
    }

    .video-section-title {
        font-size: 20px;
    }
}

/* video-section-end */




/* marketing-section start */
.marketing-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
.marketing-section h3 {
    color: #000;
    text-align: center;
    margin: 30px 0;
    font-size: 38px;
}

.marketing-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;

    /* Background & Styling */
    background: #FCFEFC;
    /* light blue background */
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.marketing-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.marketing-image {
    flex: 1 1 45%;
}

.marketing-image img {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.marketing-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.marketing-content {
    flex: 1 1 50%;
}

.marketing-content h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #29355B;
}

.marketing-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .marketing-container {
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .marketing-content h2 {
        font-size: 24px;
    }

    .marketing-content p {
        font-size: 14px;
    }
    .marketing-section h3 {
    color: #000;
    text-align: center;
    margin: 30px 0;
    font-size: 30px;
  } 
}

/* marketing-section end */


/* why-choose-us-start */
.why-choose-us {
    padding: 60px 20px;

}

.wcu-container {
    display: flex;
    padding: 20px;

    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    border-radius: 20px;
    margin: 0 auto;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    /* smooth hover */
}

/* Hover effect */
.wcu-container:hover {
    transform: translateY(-5px);
    /* slight lift */
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
}

.why-left {
    flex: 1 1 450px;
}

.why-left h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d3b66;
}

.why-left p {
    font-size: 14px;
    margin-bottom: 30px;
    color: #000000;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: Hover effect for interactivity */
.features-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.features-list .icon {
    font-size: 32px;
    background: #e0f1ff;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-list h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 500;
    color: #00571b;
}

.features-list p {
    margin: 0;
    font-size: 14px;
    color: #000000;
}

.why-right {
    flex: 1 1 450px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}



/* ============================
   Responsive
   ============================ */
@media (max-width: 992px) {
    .wcu-container {
        flex-direction: column;
        gap: 30px;
    }

    .why-left,
    .why-right {
        flex: 1 1 100%;
    }

    .why-left h2 {
        font-size: 28px;
    }

    .features-list .icon {
        font-size: 28px;
        padding: 12px;
    }

    .features-list h4 {
        font-size: 16px;
    }

    .features-list p {
        font-size: 13px;
    }

    .image-wrapper .overlay {
        font-size: 14px;
        padding: 15px;
    }
}

/* why-choose-us-end */





#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: 30px;
    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: 22px;
    }

    .description-section p::first-letter {
        font-size: 1.6rem;
    }

    .description-section p {
        font-size: 14px;
    }

    .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: 28px;
    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: 0px;
    }
}

@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: #29355B;
    text-align: center;
}

.clients-container {
    background: linear-gradient(135deg, #e4efff 0%, #ffffff 50%, #fbe4e4 100%);
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 18px;
}

/* 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 20s 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: 150px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;

    /* Add shadow */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #00000056;
    /* optional rounded edges */
}

/* Hover Effect */
.client-card img:hover {
    transform: scale(1.1) translateY(-5px);
    filter: brightness(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.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);
}

/* Alternate carousel */
.clients-carousel-alt {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 0px;
    /* remove full border-top */
    border-top: none;
}

/* Add small top border line */
.clients-carousel-alt::before {
    content: "";
    display: block;
    width: 800px;
    height: 2px;
    background-color: #4646465b;
    margin: 0 auto 20px;
    border-radius: 1px;
}

.clients-track-alt {
    display: flex;
    gap: 30px;
    animation: slide-alt 20s linear infinite;
}

/* Slide from right to left (opposite direction) */
@keyframes slide-alt {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Reuse client-card styles */
.clients-carousel-alt .client-card img {
    max-width: 150px;
    height: 100px;
    object-fit: contain;
    padding: 10px;
    border: 1px solid #00000056;
}

/* Responsive */


@media (max-width: 700px) {


    .clients-carousel-alt .client-card {
        min-width: 150px;
        height: 180px;
        padding: 15px;
    }

    .clients-carousel-alt .client-card img {
        max-width: 70px;
        height: 70px;
    }

    .clients-carousel-alt .client-card p {
        font-size: 12px;
    }
}


/* Responsive */

@media (max-width: 700px) {

    .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;
    }
}

@media (max-width: 1024px) {

    .clients-track,
    .clients-track-alt {
        gap: 15px;
        /* smaller gap on tablet */
        animation-duration: 10s;
        /* faster animation on smaller screens */
    }
}

/* Mobile */
@media (max-width: 700px) {

    .clients-track,
    .clients-track-alt {
        gap: 10px;
        animation-duration: 5s;
    }

    .client-card,
    .clients-carousel-alt .client-card {
        min-width: 120px;
        height: 150px;
        padding: 10px;
    }

    .client-card img,
    .clients-carousel-alt .client-card img {
        max-width: 60px;
        height: 60px;
    }

    .client-card p,
    .clients-carousel-alt .client-card p {
        font-size: 11px;
    }
}






/* 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 */
/* ===============================
   RESPONSIVE IMPROVEMENTS
==================================*/

/* Tablet */
@media (max-width: 992px) {

    #contact-section {
        padding: 60px 5%;
    }

    .contact-container {
        gap: 30px;
        padding: 40px 20px;
    }

    .contact-info h2 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    #contact-section {
        padding: 50px 4%;
    }

    .contact-container {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }

    .contact-info,
    .contact-form {
        min-width: 100%;
    }

    .contact-info h2 {
        font-size: 22px;
        text-align: center;
    }


    .contact-details li {
        font-size: 0.95rem;
        word-break: break-word;
    }

    .contact-cta {
        display: block;
        width: 100%;
        text-align: center;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .contact-container {
        padding: 25px 15px;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

/* 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;
    /* wrap on smaller screens */
    text-align: center;
}


/* 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 Facebook Button */
.cta-right .facebook-btn {
    background: #1877F2;
    /* Facebook blue */
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.cta-right .facebook-btn:hover {
    background: #0f5ac8;
    /* darker on hover */
}

/* 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 .facebook-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .cta-left .cta-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

}

@media (max-width: 576px) {
    .footer-top-cta {
        padding: 20px 5%;
    }

    .cta-middle h3 {
        font-size: 16px;
    }

    .cta-left .cta-btn,
    .cta-right .facebook-btn {
        padding: 8px 18px;
        font-size: 12px;
    }


}


/* Footer-start */
.main-footer {
    background-color: #24355D;
    color: #ffffff;
    padding: 60px 0 20px;

}

.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;
}


/* Blog-Pages */

/* BLOG SECTION */

.Blog_wrap_wrapper {
    padding: 80px 0;
    background: #f7f9fc;
}

/* TITLE */

.blog-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1b1b1b;
}


/* ROW FIX */

.Blog_wrap_wrapper .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}


/* BLOG CARD */

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    max-width: 360px;
    flex: 1 1 calc(33.333% - 30px);
}

/* HOVER */

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}


/* IMAGE */

.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}


/* CONTENT */

.blog-content {
    padding: 25px;
}

/* TITLE */

.blog-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1b1b1b;
}


/* TEXT */

.blog-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b6b6b;
    margin-bottom: 20px;
}


/* BUTTON */

.blog-content a {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.blog-content a:hover {
    background: #084298;
}


/* RESPONSIVE */

@media (max-width:992px) {

    .blog-card {
        flex: 1 1 calc(50% - 30px);
    }

}


@media (max-width:576px) {

    .blog-card {
        flex: 1 1 100%;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-card img {
        height: 200px;
    }

}

/* Blog page end  */

/* Blog_details_page */

/* BLOG DETAILS SECTION */
/* BLOG PAGE */

.blog-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    padding: 80px 20px;
}


/* SHARE BAR */

.blog-share {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #24355D;
    color: #fff;
    border-radius: 50%;
    transition: .3s;
}

.blog-share a:hover {
    background: #3BA564;
}


/* HERO */

.blog-hero img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
}


/* HEADER */

.blog-header {
    margin-top: 30px;
}

.blog-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #24355D;
}

.blog-meta {
    margin-top: 10px;
    color: #777;
    display: flex;
    gap: 20px;
}


/* BODY */

.blog-body {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 30px;
    color: #000000;
}


/* EXTRA */

.blog-extra-image img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
    cursor: pointer;
}

.blog-extra-text {
    background: #f6faf8;
    padding: 25px;
    border-left: 5px solid #3BA564;
    margin: 30px 0;
}


/* AUTHOR */

.author-box {
    display: flex;
    gap: 20px;
    background: #f8fbff;
    padding: 25px;
    border-radius: 10px;
    margin-top: 50px;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.author-box p {
    font-size: 14px;
}


/* NAVIGATION */

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.blog-navigation a {
    background: #24355D;
    font-weight: 600;
    color: #fff;
    padding: 10px 20px;
    border-radius: 34px;
}


/* RELATED */

.related-blogs {
    background: #f8fbff;
    padding: 80px 0;
}

.related-blogs h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #24355D;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.related-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px;
}

.related-card a {
    display: block;
    padding: 0 15px 20px;
    color: #3BA564;
    font-weight: 600;
}

/* Blog_details_page_exit */

/* ADMIN PANEL START */
/* ADMIN-LOGIN */

.body_wrap {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #29355B, #1d2644, #29355B, #3BA564);
    background-size: 400% 400%;
    animation: bgMove 10s ease infinite;
}

@keyframes bgMove {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.login-box {
    width: 350px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input {
    width: 100%;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 16px;
    outline: none;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 12px;
    color: #ccc;
    font-size: 14px;
    pointer-events: none;
    transition: .3s;
}

.input-group input:focus~label,
.input-group input:valid~label {
    top: -10px;
    font-size: 12px;
    color: #3BA564;
}

.show-pass {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
    font-size: 12px;
    color: #aaa;
}

button {
    width: 100%;
    padding: 12px;
    background: #3BA564;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
}

button:hover {
    background: #2f874f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    opacity: .7;
}

.logo {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #3BA564;
}

/* Admin sidebar */


/* NAVBAR */

.navbar_side {
    width: 100%;
    height: 60px;
    background: #29355B;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar_heading {
    margin-left: 75%;
    margin-top: 10px;
    font-size: 30px;
}

@media (max-width:768px) {
    .navbar_heading {
        font-size: 20px;
        margin-left: 32%;
    }
}

.menu_btn {
    font-size: 22px;
    cursor: pointer;
    margin-right: 15px;
}

/* SIDEBAR */

.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    height: 100%;
    width: 260px;
    padding-top: 20px;
    transition: .4s;
    overflow-y: auto;
    /* soothing animated gradient */
    background: linear-gradient(-45deg, #34416d, #253055, #2c428b, #3BA564);
    background-size: 400% 400%;
    animation: sidebarMove 10s ease infinite;

}

/* sidebar animation */

@keyframes sidebarMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

/* Sidebar hide */

.sidebar.active {
    left: -260px;
}

/* Mobile close button */

.close-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

/* Logo */

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 100px;
}

.logo h2 {
    color: #3BA564;
    margin-top: 10px;
}

/* Menu */

.sidebar ul {
    list-style: none;
}


.sidebar ul li {
    padding: 14px 20px;
    color: white;
    cursor: pointer;
    transition: .3s;
}

.sidebar ul li:hover {
    background: rgba(59, 165, 100, 0.15);
    border-left: 4px solid #3BA564;
}

.sidebar ul li i {
    margin-right: 10px;
}

.sidebar ul li a {
    color: #fff;
}

/* Dropdown */

.dropdown {
    display: none;
    background: rgba(0, 0, 0, 0.15);
}

.dropdown li {
    padding-left: 40px;
    font-size: 14px;
}

.dropdown li a {
    color: #fff;
}

.show {
    display: block;
}

/* CONTENT */

.content {
    margin-left: 260px;
    padding: 90px 30px;
    transition: .4s;
}

.sidebar.active+.content {
    margin-left: 0;
}

/* MOBILE */

@media(max-width:768px) {

    .sidebar {
        left: -260px;
    }

    .sidebar.showSidebar {
        left: 0;
    }

    .close-btn {
        display: block;
    }

    .content {
        margin-left: 0;
    }

}

/* Dashboard */
/* DASHBOARD */

.dashboard {
    padding: 30px;
}

/* Title */

.page-title {
    margin-bottom: 20px;
    color: #29355B;
    /* text-align: center; */
    margin-top: 80px;
    font-size: 37px;
    margin-left: 271px;
}



/* CARDS */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    margin-left: 273px;
}

@media (max-width:992px) {
    .dashboard-cards {
        grid-template-columns: repeat(3, 1fr);
        margin-left: 0;
    }

    .page-title {
        margin-bottom: 20px;
        color: #29355B;
        /* text-align: center; */
        margin-top: 80px;
        font-size: 45px;
        margin-left: 0;
        text-align: center;
    }
}

/* Mobile → 2 cards per row */

@media (max-width:600px) {
    .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 0;
        margin-left: 0;
        text-align: center;
    }
}




.dash-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.dash-card:hover {
    transform: translateY(-4px);
}

.dash-card i {
    font-size: 30px;
    color: #3BA564;
}

.dash-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.dash-card p {
    color: gray;
    font-size: 14px;
}

/* TABLE */

.dashboard-table {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    margin-left: 273px;
}

.dashboard-table h2 {
    margin-bottom: 15px;
    color: #29355B;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

table th {
    background: #29355B;
    color: white;
}

/* STATUS */

.status {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: white;
}

.status.active {
    background: #3BA564;
}

.status.draft {
    background: #999;
}

@media (max-width:768px) {
    .dashboard-table {
        margin-left: 0;
    }

    .dashboard {
        padding: 15px;
    }

    table th,
    table td {
        padding: 12px;
        border-bottom: 1px solid #eee;
        text-align: left;
        font-size: 12px;
    }

    .dashboard-table h2 {
        margin-bottom: 15px;
        color: #29355B;
        font-size: 33px;
        text-align: center;
    }
}

/* Add blog page  */

/* CONTENT AREA (beside sidebar) */

.content-area {
    padding: 25px;
    width: 100%;
}

/* ADD BLOG CONTAINER */

.add-blog-container {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    /* width: 100%; */
    margin-left: 258px;
    max-width: 100%;
    margin-top: 46px;
}

@media (max-width:768px) {
    .add-blog-container {
        margin-left: 0 !important;
        margin-top: 60px;
    }
}

/* TITLE */

.add-blog-container h2 {
    margin-bottom: 20px;
    color: #00993d;
    font-size: 38px;
}

/* FORM */

.blog-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* INPUT GROUP */

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #000026;
    font-size: 18px;
}



.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

/* IMAGE PREVIEW */

.img-preview {
    margin-top: 10px;
    max-width: 200px;
    border-radius: 6px;
    display: none;
}

/* EXTRA CONTENT BLOCK */

.extra-block {
    border: 1px dashed #ddd;
    padding: 20px;
    border-radius: 6px;
    background: #fafafa;
    margin-top: 15px;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 20px; */
}

/* BUTTONS */

.add-btn {
    background: #3BA564;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 220px;
}

.add-btn:hover {
    background: #29355B;
}

.publish-btn {
    background: #29355B;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
}

.publish-btn:hover {
    background: #3BA564;
}

.submit-area {
    margin-top: 10px;
}

/* MOBILE */

@media(max-width:768px) {

    .extra-block {
        grid-template-columns: 1fr;
    }

    .add-btn {
        width: 100%;
    }

    .publish-btn {
        width: 100%;
    }

}

/* All Blogs  */


/* PAGE WRAPPER */

.blogs-page-wrapper {
    margin-left: 260px;
    padding: 30px;
    background: #f4f6fb;
    min-height: 100vh;
    transition: 0.3s;
}


/* CONTAINER */

.blogs-container-modern {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 75px;
}


/* HEADER */

.blogs-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.blogs-title-modern {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.blogs-subtitle-modern {
    font-size: 13px;
    color: #888;
}


/* ACTION AREA */

.blogs-actions-modern {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}


/* SEARCH */

.blogs-search-modern {
    padding: 9px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
    transition: .3s;
    min-width: 200px;
}

.blogs-search-modern:focus {
    border-color: #4CAF50;
}


/* ADD BLOG BUTTON */

.blogs-add-btn-modern {
    background: linear-gradient(45deg, #4CAF50, #2ecc71);
    color: #fff;
    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    display: inline-block;
}

.blogs-add-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/* TABLE CARD */

.blogs-table-card {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #eee;
}


/* TABLE */

.blogs-table-modern {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.blogs-table-modern th {
    background: #f9fafc;
    font-size: 13px;
    color: #666;
    padding: 14px;
    text-align: left;
}

.blogs-table-modern td {
    padding: 14px;
    border-top: 1px solid #eee;
    font-size: 14px;
}


/* ROW HOVER */

.blogs-table-modern tbody tr:hover {
    background: #f8fbff;
}


/* BLOG IMAGE */

.blogs-thumb-modern {
    width: 65px;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
}


/* BLOG TITLE */

.blogs-title-cell {
    font-weight: 500;
}


/* STATUS BADGE */

.blogs-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.blogs-status-published {
    background: #e8fff3;
    color: #1abc9c;
}

.blogs-status-draft {
    background: #fff6e5;
    color: #f39c12;
}


/* ACTION BUTTONS */

.blogs-edit-btn {
    color: #3498db;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 500;
}

.blogs-edit-btn:hover {
    text-decoration: underline;
}

.blogs-delete-btn {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
}

.blogs-delete-btn:hover {
    text-decoration: underline;
}



/* ===============================
   TABLET RESPONSIVE
================================ */

@media (max-width: 1024px) {

    .blogs-page-wrapper {
        margin-left: 220px;
        padding: 20px;
    }

    .blogs-title-modern {
        font-size: 22px;
    }

    .blogs-search-modern {
        min-width: 160px;
    }

}



/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width:768px) {

    .blogs-page-wrapper {
        margin-left: 0;
        padding: 15px;
    }

    .blogs-container-modern {
        margin-top: 60px;
        padding: 20px;
    }

    .blogs-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }

    .blogs-actions-modern {
        width: 100%;
        justify-content: space-between;
    }

    .blogs-search-modern {
        width: 100%;
    }

    .blogs-add-btn-modern {
        width: 100%;
        text-align: center;
    }

    .blogs-title-modern {
        font-size: 20px;
    }

    .blogs-subtitle-modern {
        display: none;
    }

}



/* ===============================
   SMALL MOBILE
================================ */

@media (max-width:480px) {

    .blogs-container-modern {
        padding: 15px;
    }

    .blogs-title-modern {
        font-size: 18px;
    }

    .blogs-search-modern {
        font-size: 13px;
    }

    .blogs-add-btn-modern {
        font-size: 13px;
        padding: 8px 12px;
    }

    .blogs-thumb-modern {
        width: 55px;
        height: 40px;
    }

    .blogs-table-modern td {
        font-size: 13px;
    }

}

/* all-images */
.table-container {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-left: 256px;
    margin-top: 58px;
}

@media (max-width:768px) {
    .table-container {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        margin-left: 0;
        margin-top: 58px;
    }
}

.image-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.image-table th {
    background: #24355D;
    color: #fff;
    padding: 12px;
    text-align: left;
}

.image-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.table-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.edit-btn {
    background: #3BA564;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 5px;
}

.delete-btn {
    background: #dc3545;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
}

.edit-btn:hover {
    background: #2e8b4d;
}

.delete-btn:hover {
    background: #b02a37;
}

/* All video  */
.main-content {
    margin-left: 260px;
    padding: 25px;
    background: #f6f7fb;
    min-height: 100vh;
}

/* title */

.page-title {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* grid layout */

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* video card */

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* video */

.video-player {
    position: relative;
}

.video-player video {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* info section */

.video-info {
    padding: 12px 14px;
}

.video-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* buttons */

.video-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.edit-btn,
.delete-btn {
    flex: 1;
    text-align: center;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
}

/* edit */

.edit-btn {
    background: #28a745;
}

.edit-btn:hover {
    background: #218838;
    transform: scale(1.05);
}

/* delete */

.delete-btn {
    background: #dc3545;
}

.delete-btn:hover {
    background: #c82333;
    transform: scale(1.05);
}

/* responsive */

@media (max-width: 1024px) {

    .main-content {
        margin-left: 220px;
    }

}

@media (max-width: 768px) {

    .main-content {
        margin-left: 0;
        padding: 20px;
    }

    .video-player video {
        height: 160px;
    }

}

@media (max-width: 480px) {

    .video-container {
        grid-template-columns: 1fr;
    }

}

.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-size: 14px;
}

.pagination a:hover {
    background: #f0f0f0;
}

.active-page {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}


/*admin-footer*/

.contact-list .admin-footer a {
    background-color: #3BA464;
    padding: 8px 46px;
    border-radius: 9px;
    color: #fff;
    font-size: 14px;
}