/* ==========================================================================
   Core Trust Corporate Gifting - Premium Style Sheet
   Colors: Primary Navy (#05204D), Secondary Emerald (#00B25C)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --ct-primary: #05204D;
    --ct-primary-rgb: 5, 32, 77;
    --ct-secondary: #00B25C;
    --ct-secondary-rgb: 0, 178, 92;
    --ct-dark: #0f172a;
    --ct-light: #f8fafc;
    --ct-gray: #64748b;
    --ct-border: rgba(5, 32, 77, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

}

/* Base Styles */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
}

body {
    font-family: var(--font-body);
    color: #334155;
    background-color: var(--ct-light);
    line-height: 1.6;
}

h1,
h3,
h4,
h5,
h6,
.display-font {
    font-family: var(--font-heading);
    color: var(--ct-primary);
    font-weight: 600;

}

h2,
.section-title {
    font-family: var(--font-heading);
    font-size: 2.0rem !important;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ct-primary) !important;

}

p {
    font-family: var(--font-body);
    font-size: 0.95rem !important;
    line-height: 1.6;
    text-align: justify;
}

a {
    color: var(--ct-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: #008746;
}

.bg-mesh-light {
    background-color: #f8fafc;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 100 L100 0 M0 0 L100 100' stroke='rgba(5, 32, 77, 0.05)' stroke-width='0.8'/%3E%3Ccircle cx='50' cy='50' r='1.5' fill='%2300b25c' fill-opacity='0.08'/%3E%3C/svg%3E"),
        radial-gradient(at 0% 0%, rgba(0, 178, 92, 0.04) 0px, transparent 50%),
        radial-gradient(at 50% 0%, rgba(5, 32, 77, 0.04) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 178, 92, 0.03) 0px, transparent 50%);
    background-repeat: repeat, no-repeat, no-repeat, no-repeat;
}

.bg-mesh-dark {
    background-color: var(--ct-primary);
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 178, 92, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 178, 92, 0.08) 0px, transparent 50%);
}

.dotted-pattern {
    background-image: radial-gradient(var(--ct-primary) 0.5px, transparent 0.5px), radial-gradient(var(--ct-primary) 0.5px, #f8fafc 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.04;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.04);
}

.glass-card-dark {
    background: rgba(5, 32, 77, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

/* Sticky Header & Top Utility Bar */
.top-header {
    background-color: var(--ct-primary);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.navbar-custom {
    position: absolute;
    top: 40px;
    /* alignment for top-header */
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
    padding: 15px 0;
    border-bottom: none !important;
}

@media (max-width: 991px) {
    .navbar-custom {
        position: fixed !important;
        top: 0 !important;
        padding: 10px 0;
    }
}

.navbar-brand img {
    height: 80px !important;
    transition: var(--transition-smooth);
}

@media (max-width: 1200px) {
    .navbar-brand img {
        height: 65px !important;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px !important;
        padding: 4px !important;
    }
}

.navbar-custom.navbar-scrolled {
    position: fixed;
    top: 0;
    background-color: #ffffff !important;
    /* solid white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: none !important;
}

.navbar-custom.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2305204d' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-custom.navbar-scrolled .navbar-brand img {
    box-shadow: none !important;
    /* remove shadow of logo only in sticky header */
    height: 66px !important;
    /* scrolled logo size on desktop */
}

@media (max-width: 1200px) {
    .navbar-custom.navbar-scrolled .navbar-brand img {
        height: 56px !important;
    }
}

@media (max-width: 768px) {
    .navbar-custom.navbar-scrolled .navbar-brand img {
        height: 50px !important;
    }
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-smooth);
}

/* Optimize spacing for small desktop screens to prevent wrapping */
@media (min-width: 992px) and (max-width: 1250px) {
    .navbar-custom .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.55rem !important;
    }
}

@media (min-width: 1251px) and (max-width: 1400px) {
    .navbar-custom .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem !important;
    }
}

.navbar-custom .navbar-brand span {
    color: #ffffff !important;
    transition: var(--transition-smooth);
}

.navbar-custom.navbar-scrolled .nav-link {
    color: var(--ct-primary) !important;
}

.navbar-custom.navbar-scrolled .nav-link:hover {
    color: var(--ct-secondary) !important;
}

.navbar-custom.navbar-scrolled .navbar-brand span.text-primary {
    color: var(--ct-primary) !important;
}

.navbar-custom.navbar-scrolled .navbar-brand span.text-secondary {
    color: var(--ct-secondary) !important;
}

.navbar-custom.navbar-scrolled .btn-outline-light {
    border-color: var(--ct-primary);
    color: var(--ct-primary);
}

.navbar-custom.navbar-scrolled .btn-outline-light:hover {
    background-color: var(--ct-primary);
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--ct-secondary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    transform: scaleX(1);
}




/* Mega Menu Setup */
.dropdown-menu {
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.mega-menu {
    width: 600px;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mega-menu-link {
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--ct-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.mega-menu-link:hover {
    background-color: rgba(0, 178, 92, 0.08);
    color: var(--ct-secondary);
    padding-left: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Buttons */
.btn-premium-primary {
    background-color: var(--ct-secondary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--ct-secondary);
    box-shadow: 0 4px 14px rgba(0, 178, 92, 0.3);
    transition: var(--transition-smooth);
}

.btn-premium-primary:hover {
    background-color: #05204D;
    border-color: #05204D;
    color: #fff;
    transform: translateY(-2px);

}

.btn-premium-secondary {
    background-color: transparent;
    color: var(--ct-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--ct-primary);
    transition: var(--transition-smooth);
}

.btn-premium-secondary:hover {
    background-color: var(--ct-primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero Carousel */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 550px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-section {
        height: 65vh;
        min-height: 460px;
    }
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 32, 77, 0.9) 0%, rgba(5, 32, 77, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding-top: 150px;
    /* gap to prevent navbar overlap */
    padding-bottom: 50px;
}

@media (max-width: 1200px) {
    .hero-content {
        padding-top: 130px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding-top: 100px;
        /* on mobile, top utility bar is hidden, so navbar is at top: 0 */
        padding-bottom: 40px;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Page Banner */

.page-banner {
    position: relative;
    width: 100%;
    height: 350px;
    padding: 32px 0 45px;
    background: #f8f9fc;
    overflow: hidden;

}


.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, 0.342), rgba(0, 0, 0, 0.356)),
        url("../images/page-banner-img.webp");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 150px;
}

.page-banner__title {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
}

.page-banner__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.page-banner__breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner__breadcrumb a:hover {
    color: #00B25C;
}

.page-banner__breadcrumb span {
    color: #ffffff;
}

.page-banner__breadcrumb .active {
    color: #00B25C;
    font-weight: 600;
}


/* Tablet */
@media (max-width: 991px) {

    .page-banner {
        padding: 35px 0 40px;
    }

    .page-banner__title {
        font-size: 30px;
    }
}


/* Mobile */
@media (max-width: 767px) {

    .page-banner {
        padding: 30px 15px 35px;
    }

    .page-banner__title {
        font-size: 26px;
    }

    .page-banner__breadcrumb {
        font-size: 13px;
        gap: 6px;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .page-banner__title {
        font-size: 23px;
    }

    .page-banner__breadcrumb {
        font-size: 12px;
    }
}


/* ===================================
   MISSION & VISION SECTION
=================================== */

.purpose-section {
    padding: 60px 0 60px;
    background: #f5f8fb;
    overflow: hidden;
}

/* Heading */

.purpose-heading {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

.purpose-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #00b25c;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.purpose-heading h2 {
    margin-bottom: 15px;
    color: #05204D;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.purpose-heading p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}


/* Wrapper */

.purpose-wrapper {
    display: flex;
    justify-content: center;
    gap: 100px;
}


/* Item */

.purpose-item {
    position: relative;
    width: 440px;
    padding-bottom: 65px;
}


/* Bottom Shape */

.purpose-shape {
    position: absolute;
    left: -25px;
    right: -25px;
    bottom: -25px;
    bottom: 0;
    height: 250px;
    border-radius: 0 0 16px 16px;
}

.purpose-shape::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 150px;
    height: 90px;
    transform: translateX(-50%) rotate(360deg);
    border-radius: 15px;
}


/* Mission */

.mission-item .purpose-shape,
.mission-item .purpose-shape::after {
    background: #00b25c;
}


/* Vision */

.vision-item .purpose-shape,
.vision-item .purpose-shape::after {
    background: #05204D;
}


/* Number */

.purpose-number {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}


/* White Content */

.purpose-content {
    position: relative;
    z-index: 2;
    min-height: 450px;
    padding: 30px 30px 10px;
    background: #fff;
    border: 1px solid rgba(6, 36, 92, 0.08);
    border-radius: 16px;
    text-align: center;
    box-shadow: 10px 15px 30px rgba(6, 36, 92, 0.15);
    margin-bottom: -50px;
}


/* Icon */

.purpose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    border-radius: 50%;
    font-size: 28px;
}

.mission-item .purpose-icon {
    color: #00b25c;
    background: rgba(0, 185, 104, 0.1);
}

.vision-item .purpose-icon {
    color: #05204D;
    background: rgba(6, 36, 92, 0.08);
}


/* Label */

.purpose-label {
    display: block;
    margin-bottom: 14px;
    color: #00b25c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.vision-item .purpose-label {
    color: #05204D;
}


/* Heading */

.purpose-content h3 {
    margin-bottom: -10px;
    color: #05204D;
    font-weight: 700;
    line-height: 1.35;
}


/* Paragraph */

.purpose-content p {
    margin: 0;
    color: #000000;
    font-size: 15.2px;
    line-height: 1.8;
    text-align: justify;
    transform: translateY(25px);
}


/* Hover */

.purpose-item {
    transition: transform 0.4s ease;
}

.purpose-item:hover {
    transform: translateY(-10px);
}


/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 991px) {

    .purpose-wrapper {
        gap: 70px;
    }

    .purpose-item {
        width: 390px;
    }

    .purpose-content {
        padding: 30px 30px;
    }

}


@media (max-width: 767px) {

    .purpose-section {
        padding: 70px 20px 100px;
    }

    .purpose-heading {
        margin-bottom: 50px;
    }

    .purpose-heading h2 {
        font-size: 32px;
    }

    .purpose-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 110px;
    }

    .purpose-item {
        width: 100%;
        max-width: 440px;
    }

    .purpose-content {
        min-height: auto;
        padding: 25px 25px;
    }

    .purpose-content h3 {
        font-size: 22px;
    }

}

/* =====================================
   WHY CHOOSE CORE TRUST
===================================== */

.why-core-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}


/* Heading */

.why-core-heading {

    margin: 0 auto 60px;
    text-align: center;
}

.why-core-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #00b25c;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.why-core-heading h2 {
    margin-bottom: 18px;
    color: #05204D;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
}

.why-core-heading p {

    text-align: center;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.7;
}


/* Main Wrapper */

.why-core-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}


/* Image */

.why-core-image {
    position: relative;
    padding: 30px 0 30px 30px;
}

.why-core-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 80px 20px 20px 20px;
}


/* Green Shape */

.why-green-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 210px;
    height: 210px;
    background: #00b25c;
    border-radius: 50px;
}


/* Client Box */

.why-client-box {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 220px;
    padding: 15px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(6, 36, 92, 0.15);
}

.why-client-box i {
    color: #00b25c;
    font-size: 32px;
}

.why-client-box strong {
    display: block;
    color: #00b25c;
    font-size: 24px;
    line-height: 1;
}

.why-client-box h6 {
    margin: 7px 0 3px;
    color: #05204D;
    font-size: 15px;
    font-weight: 700;
}

.why-client-box span {
    font-size: 11px;
}


/* Feature Item */

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.why-feature-item:last-child {
    border-bottom: 0;
}


/* Feature Icon */

.why-feature-icon {
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    color: #00b25c;
    background: rgba(0, 185, 104, 0.09);
    border-radius: 50%;
    font-size: 30px;
    transition: 0.4s ease;
    margin-bottom: 10px;
}

.why-feature-item:hover .why-feature-icon {
    color: #fff;
    background: #00b25c;
    transform: rotateY(180deg);
}


/* Feature Content */

.why-feature-content h3 {
    margin-bottom: 10px;
    color: #05204D;
    font-size: 21px;
    font-weight: 700;
}

.why-feature-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* ================================
   CORE VALUES SECTION
================================ */

.core-values-section {
    padding: 60px 0px;
    overflow: hidden;
}

.values-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.values-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #00b968;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.values-heading h2 {
    margin: 0 0 12px;
    color: #05204D;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.values-heading p {
    text-align: center;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.7;
}


/* ================================
   DIAGRAM
================================ */

.values-diagram {
    position: relative;
    width: 1100px;
    height: 650px;
    margin: 0 auto;
}


/* Circle */

.values-diagram::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 410px;
    height: 410px;
    border: 2px dashed rgba(0, 185, 104, 0.55);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}


/* ================================
   CENTER LOGO
================================ */

.values-center {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.values-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 260px;
    padding: 45px;
    background: #fff;
    border: 2px solid #00b968;
    border-radius: 50%;
    box-shadow:
        0 0 0 18px rgba(0, 185, 104, 0.05),
        0 20px 45px rgba(6, 36, 92, 0.16);
}

.values-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* ================================
   VALUE BOX
================================ */

.value-box {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 390px;
    min-height: 145px;
    padding: 22px 25px;
    background: #fff;
    border: 1px solid rgba(6, 36, 92, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(6, 36, 92, 0.1);
    transition: 0.35s ease;
}

.value-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(6, 36, 92, 0.16);
}


/* Icon */

.value-icon {
    display: flex;
    flex: 0 0 95px;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 95px;
    color: #00a95f;
    background: #f0faf5;
    border: 1px solid rgba(0, 185, 104, 0.12);
    border-radius: 50%;
    font-size: 42px;
    box-shadow: 0 7px 20px rgba(6, 36, 92, 0.08);
}


/* Content */

.value-content h3 {
    margin: 0 0 7px;
    color: #05204d;
    font-size: 24px;
    font-weight: 700;
}

.value-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.55;
}


/* ================================
   POSITIONS
================================ */

.value-trust {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.value-trust:hover {
    transform: translateX(-50%) translateY(-7px);
}


.value-creativity {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


.value-quality {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}


.value-commitment {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.value-commitment:hover {
    transform: translateX(-50%) translateY(-7px);
}


/* ================================
   CONNECTING LINES
================================ */

.value-box::after {
    content: "";
    position: absolute;
    z-index: -1;
    background: #00a95f;
}


/* Top */

.value-trust::after {
    top: 100%;
    left: 50%;
    width: 2px;
    height: 82px;
}


/* Left */

.value-creativity::after {
    top: 50%;
    left: 100%;
    width: 100px;
    height: 2px;
}


/* Right */

.value-quality::after {
    top: 50%;
    right: 100%;
    width: 100px;
    height: 2px;
}


/* Bottom */

.value-commitment::after {
    bottom: 100%;
    left: 50%;
    width: 2px;
    height: 82px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1199px) {

    .values-diagram {
        width: 900px;
    }

    .value-box {
        width: 330px;
    }

    .value-creativity::after,
    .value-quality::after {
        width: 70px;
    }

}


@media (max-width: 991px) {

    .values-diagram {
        width: 720px;
        height: 600px;
    }

    .values-logo {
        width: 210px;
        height: 210px;
        padding: 35px;
    }

    .values-diagram::before {
        width: 340px;
        height: 340px;
    }

    .value-box {
        width: 270px;
        padding: 18px;
    }

    .value-icon {
        flex-basis: 65px;
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .value-content h3 {
        font-size: 21px;
    }

    .value-content p {
        font-size: 13px;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .core-values-section {
        padding: 70px 20px;

    }

    .values-heading {
        margin-bottom: 45px;
    }

    .values-heading h2 {
        font-size: 31px;
    }

    .values-diagram {
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 25px;
    }

    .values-diagram::before {
        display: none;
    }

    .values-center,
    .value-box {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        transform: none;
    }

    .values-center {
        display: flex;
        justify-content: center;
        order: -1;
        margin-bottom: 15px;
    }

    .values-logo {
        width: 190px;
        height: 190px;
        padding: 35px;
    }

    .value-box:hover,
    .value-trust:hover,
    .value-commitment:hover {
        transform: translateY(-5px);
    }

    .value-box::after {
        display: none;
    }

    .value-box {
        min-height: auto;
    }

}


/* =====================================
   BOTTOM FEATURES
===================================== */

.why-bottom-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    padding: 35px 25px;
    border: 1px solid #e1e5e8;
    border-radius: 16px;
}

.why-bottom-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 0 30px;
    border-right: 1px solid #ddd;
}

.why-bottom-item:last-child {
    border-right: 0;
}

.why-bottom-item>i {
    flex: 0 0 auto;
    color: #00b25c;
    font-size: 42px;
}

.why-bottom-item h4 {
    margin-bottom: 8px;
    color: #05204d;
    font-size: 21px;
    font-weight: 700;
}

.why-bottom-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .why-core-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-core-image {
        max-width: 650px;
        margin: auto;
    }

    .why-bottom-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-bottom-item {
        padding: 0 15px 30px;
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .why-bottom-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

}


@media (max-width: 767px) {

    .why-core-section {
        padding: 70px 20px;
    }

    .why-core-heading {
        margin-bottom: 40px;
    }

    .why-core-heading h2 {
        font-size: 32px;
    }

    .why-core-heading h2 br {
        display: none;
    }

    .why-core-image {
        padding: 20px 0 30px 20px;
    }

    .why-core-image img {
        height: 420px;
        border-radius: 50px 15px 15px;
    }

    .why-green-shape {
        width: 150px;
        height: 150px;
    }

    .why-client-box {
        padding: 18px;
    }

    .why-feature-item {
        gap: 18px;
        padding: 25px 0;
    }

    .why-feature-icon {
        flex-basis: 65px;
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .why-feature-content h3 {
        font-size: 20px;
    }

}


@media (max-width: 480px) {

    .why-core-image img {
        height: 350px;
    }

    .why-client-box {
        left: 5px;
        min-width: 190px;
    }

    .why-client-box strong {
        font-size: 24px;
    }

    .why-feature-item {
        align-items: flex-start;
    }

}

/* Why Choose Us Cards */
.feature-card {
    border: 1px solid var(--ct-border);
    border-radius: 16px;
    background: #ffffff;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ct-primary), var(--ct-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 32, 77, 0.06);
    border-color: rgba(0, 178, 92, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(0, 178, 92, 0.1);
    color: var(--ct-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--ct-secondary);
    color: white;
    transform: rotateY(360deg);
}

/* Category Cards */
.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(5, 32, 77, 0.05);
    transition: var(--transition-smooth);
}

.category-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 32, 77, 0.95) 0%, rgba(5, 32, 77, 0.3) 60%, transparent 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 178, 92, 0.95) 0%, rgba(5, 32, 77, 0.5) 60%, rgba(5, 32, 77, 0.2) 100%);
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: white;
    width: 100%;
}

.category-content h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.category-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-card:hover .category-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Solutions Cards */
.solution-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(5, 32, 77, 0.02);
    border: 2px solid var(--ct-border);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 32, 77, 0.03) 0%, rgba(0, 178, 92, 0.03) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--ct-secondary);
    box-shadow: 0 15px 30px rgba(0, 178, 92, 0.08);
}

.solution-card>* {
    position: relative;
    z-index: 1;
}

/* Product Cards */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--ct-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 32, 77, 0.08);
}

.product-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f8fafc;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(5, 32, 77, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Horizontal Timeline Process */
.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, rgba(5, 32, 77, 0.05) 0%, rgba(0, 178, 92, 0.4) 50%, rgba(5, 32, 77, 0.05) 100%);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.process-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid rgba(5, 32, 77, 0.08);
    color: var(--ct-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 20px auto;
    box-shadow: 0 10px 25px rgba(5, 32, 77, 0.05);
    transition: var(--transition-smooth);
}

.process-step:hover .process-badge {
    background-color: var(--ct-secondary);
    color: white;
    border-color: var(--ct-secondary);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 178, 92, 0.3);
}

/* Partners & Clients Logo Slider (Infinite Loop) */
.partners-slider {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.partners-track {
    display: flex;
    width: calc(250px * 16);
    animation: scrollLogos 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo-box {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.partner-logo-box svg,
.partner-logo-box img {
    max-height: 50px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.partner-logo-box:hover svg,
.partner-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 8));
    }
}

/* Blog Cards */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--ct-border);
    transition: var(--transition-smooth);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 32, 77, 0.08);
}

.blog-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

/* Testimonials Carousel */
.testimonial-card {
    border-radius: 16px;
    padding: 40px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(5, 32, 77, 0.03);
}

/* Statistics Banner */
.stats-banner {
    position: relative;
    background-color: var(--ct-primary);
    color: white;
    overflow: hidden;
    padding: 40px 0 !important;
    /* decreased padding */
}

.stats-banner .display-4 {
    font-size: 3.5rem !important;
    /* larger counter size */
    font-weight: 800 !important;
    color: var(--ct-secondary) !important;
    /* bright emerald green */
}

.stats-banner p {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 1rem !important;
    margin-top: 5px;
    text-align: center;
}

/* CTA Section Wave Background */
.cta-luxury {
    background-color: var(--ct-primary);
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 178, 92, 0.2) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(5, 32, 77, 0.8) 0px, transparent 50%);
    color: white;
    border-radius: 0;
    /* no rounded corners */
    overflow: hidden;
    position: relative;
}

/* Footer styling */
footer {
    background-color: #0c1220;
    color: #94a3b8;
    font-size: 0.9rem;
}

footer h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--ct-secondary);
}

footer a {
    color: #94a3b8;
}

footer a:hover {
    color: var(--ct-secondary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--ct-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 178, 92, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #008746;
    color: white;
    transform: translateY(-3px);
}

/* Global Padding Helper */
.section-padding {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Ensure Black Font Color on Light Backgrounds (White/Light Grey) */
.text-muted,
.text-muted-dark {
    color: #000000 !important;
}

p {
    color: #000000;
}

/* Restore White Colors for Dark Sections */
.bg-mesh-dark p,
.bg-mesh-dark .text-muted,
.stats-banner p,
.stats-banner .text-white-50,
.cta-luxury p,
.cta-luxury .lead,
.cta-luxury .text-white-50,
.hero-content p,
.hero-content .opacity-90,
.category-content h3,
.category-content a,
.top-header span,
.top-header a {
    color: #ffffff !important;
}

/* Footer Font White Override and Icon theme color */
footer,
footer p,
footer a,
footer .small,
footer h5,
footer span {
    color: #ffffff !important;
}

footer a:hover {
    color: var(--ct-secondary) !important;
}

footer .bi {
    color: var(--ct-secondary) !important;
}

/* Industries Infinite Loop Single Row & Custom Theme Styling */
.industries-slider {
    overflow: hidden;
    padding: 15px 0;
    position: relative;
}

.industries-track {
    display: flex;
    width: calc(240px * 14);
    animation: scrollIndustries 25s linear infinite;
}

.industries-track:hover {
    animation-play-state: paused;
}

.industry-box {
    width: 240px;
    flex-shrink: 0;
    padding: 0 10px;
}

.industry-box .border {
    background-color: #ffffff !important;
    border: 2px solid var(--ct-border) !important;
    transition: var(--transition-smooth);
}

.industry-box:hover .border {
    background-color: var(--ct-primary) !important;
    border-color: var(--ct-secondary) !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(5, 32, 77, 0.15);
}

.industry-box .fs-1 {
    color: var(--ct-secondary) !important;
    transition: var(--transition-smooth);
}

.industry-box:hover .fs-1 {
    color: #ffffff !important;
}

.industry-box h6 {
    color: var(--ct-primary) !important;
    transition: var(--transition-smooth);
}

.industry-box:hover h6 {
    color: #ffffff !important;
}

/* Solutions Swiper Slide Heights and Icons */
.solutions-slider .swiper-slide {
    height: auto;
}

.solutions-slider .solution-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solutions-slider .solution-card .bi {
    color: var(--ct-secondary) !important;
    transition: var(--transition-smooth);
}

.solutions-slider .solution-card:hover .bi {
    transform: scale(1.1);
}

/* Dropdown Hover State for Desktop Nav */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate(-50%, 0) !important;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 10px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

.dropdown-menu a,
.mega-menu-link {
    color: #000000 !important;
    transition: var(--transition-smooth);
}

.dropdown-menu a:hover,
.mega-menu-link:hover {
    background-color: var(--ct-secondary) !important;
    color: #ffffff !important;
    padding-left: 18px;
}

/* Force Section Subheadings/Badges to Green Theme Color */
.text-secondary,
.text-uppercase.text-secondary {
    color: var(--ct-secondary) !important;
}

/* Dropdown link hover: Make all icons white */
.dropdown-menu a:hover .bi,
.mega-menu-link:hover .bi {
    color: #ffffff !important;
}

/* Quote Modal Modern UI Styles */
#quote-modal .modal-content {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 30px 60px rgba(5, 32, 77, 0.15) !important;
    border: 1px solid rgba(5, 32, 77, 0.08) !important;
}

#quote-modal .modal-header {
    padding: 30px 30px 10px 30px !important;
}

#quote-modal .modal-body {
    padding: 10px 30px 30px 30px !important;
}

#quote-modal .form-control,
#quote-modal .form-select {
    border: 1px solid rgba(5, 32, 77, 0.15) !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    transition: var(--transition-smooth) !important;
    background-color: #ffffff !important;
    color: #000000 !important;
}

#quote-modal .form-control:focus,
#quote-modal .form-select:focus {
    border-color: var(--ct-secondary) !important;
    box-shadow: 0 0 0 3px rgba(0, 178, 92, 0.15) !important;
    background-color: #ffffff !important;
}

#quote-modal .form-label {
    color: var(--ct-primary) !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
}

#quote-modal .btn-premium-primary {
    background-color: var(--ct-secondary) !important;
    border-color: var(--ct-secondary) !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition-smooth) !important;
}

#quote-modal .btn-premium-primary:hover {
    background-color: #008746 !important;
    border-color: #008746 !important;
    transform: translateY(-2px) !important;
}

/* Explore More Link Interactive Hover Effect */
.hover-arrow-shift i {
    transition: transform 0.3s ease !important;
    display: inline-block;
}

.hover-arrow-shift:hover i {
    transform: translateX(5px) !important;
}

@keyframes scrollIndustries {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-240px * 7));
    }
}

/* Testimonial Equal Heights */
.testimonial-slider .swiper-slide {
    height: auto;
}

.testimonial-slider .glass-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Custom Dropdown Chevron Style & Hover Rotation */
.navbar-custom .dropdown-toggle::after {
    display: none !important;
    /* Hide default Bootstrap triangle caret */
}

.style-caret {
    font-size: 0.7rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.navbar-nav .nav-item.dropdown:hover .style-caret {
    transform: rotate(180deg);
}

/* Floating Proud of UAE Badge in Hero Section */
.hero-badge-uae {
    position: absolute;
    bottom: 35px;
    right: 40px;
    z-index: 100;
    width: 180px;
    /* Increased size */
    height: auto;
    transition: var(--transition-smooth);
}

.hero-badge-inner {
    background: rgba(255, 255, 255, 0.95);
    padding: 4px;
    /* Reduced padding */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(5, 32, 77, 0.12);
    border: 1px solid rgba(5, 32, 77, 0.08);
    transition: var(--transition-smooth);
    animation: badgeFloat 4s ease-in-out infinite;
    /* Continuous floating animation */
}

.hero-badge-uae img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.hero-badge-inner:hover {
    transform: scale(1.05);
    /* Interactive scale up */
    box-shadow: 0 15px 35px rgba(5, 32, 77, 0.22);
    border-color: var(--ct-secondary);
    background: #ffffff;
    animation-play-state: paused;
    /* Pause animation on hover */
}

/* Floating Animation Keyframes */
@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive adjustments for the floating badge */
@media (max-width: 991px) {
    .hero-badge-uae {
        bottom: 25px;
        right: 25px;
        width: 150px;
        /* Increased from 120px */
    }

    .hero-badge-inner {
        padding: 3px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .hero-badge-uae {
        display: none !important;
    }

    .hero-badge-inner {
        padding: 2px;
        border-radius: 8px;
    }
}

/* ==========================================================================
   Hero Section Mobile Responsiveness & Premium Styling Override
   ========================================================================== */
@media (max-width: 768px) {
    .hero-section {
        height: auto !important;
        min-height: auto !important;
    }

    .hero-slider {
        height: auto !important;
    }

    .hero-slide {
        height: auto !important;
        min-height: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding-top: 110px;
        /* safe area for navbar */
        padding-bottom: 70px;
        /* safe area for pagination & badge */
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .hero-content span.text-uppercase {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 0.75rem !important;
        color: var(--ct-secondary) !important;
        /* Standout theme color */
    }

    .hero-content h1 {
        font-size: 2.0rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.75rem !important;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.85;
    }

    .hero-content .d-flex {
        justify-content: center !important;
        gap: 12px !important;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 100px;
        padding-bottom: 80px;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-content h1 {
        font-size: 1.75rem !important;
        margin-bottom: 0.85rem !important;
    }

    .hero-content p {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Stack buttons for clean layout */
    .hero-content .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-content .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }


}

/* PRODUCTS CSS*/
/* =========================================
   PRODUCT PAGE HERO
========================================= */

.ct-product-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url("../images/event-gifts-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* DARK OVERLAY */

.ct-product-hero-overlay {
    position: absolute;
    inset: 0;


}

.ct-product-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.342), rgba(0, 0, 0, 0.356)), url(../images/page-banner-img.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-cta {
    text-align: center !important;
    justify-content: center;
    margin-bottom: 30px;
}

/* CONTAINER */

.ct-product-hero-container {
    position: relative;
    z-index: 2;

    width: min(1400px, calc(100% - 40px));
    margin: auto;
}


/* CONTENT */

.ct-product-hero-content {

    margin-top: 100px;
    text-align: center;
}


/* TAG */

.ct-product-hero-tag {
    display: inline-block;

    margin-bottom: 15px;

    color: #00c66b;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* HEADING */

.ct-product-hero-content h1 {
    margin: 0;

    color: #ffffff;

    font-size: 48px;
    font-weight: 700;

    line-height: 1.15;
}


.ct-product-hero-content h1 span {
    display: block;

    color: #ffffff;
}


/* DESCRIPTION */

.ct-product-hero-content p {


    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 16px;

    line-height: 1.8;
    text-align: center !important;

}


/* BUTTONS */

.ct-product-hero-actions {
    margin-top: 30px;

    display: flex;
    align-items: center;

    gap: 15px;
}


.ct-product-hero-actions a {
    min-height: 52px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


/* PRIMARY BUTTON */

.ct-product-hero-primary {
    background: #00b968;

    color: #ffffff;
}


.ct-product-hero-primary:hover {
    background: #ffffff;

    color: #05204D;
}


/* SECONDARY BUTTON */

.ct-product-hero-secondary {
    border: 1px solid rgba(255, 255, 255, 0.65);

    color: #ffffff;
}


.ct-product-hero-secondary:hover {
    background: #ffffff;

    color: #05204D;
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .ct-product-hero {
        min-height: 400px;
    }

    .ct-product-hero-content {
        max-width: 600px;
    }

    .ct-product-hero-content h1 {
        font-size: 40px;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .ct-product-hero {
        min-height: 430px;

        background-position: 65% center;
    }


    .ct-product-hero-overlay {
        background: rgba(3, 22, 56, 0.88);
    }


    .ct-product-hero-container {
        width: calc(100% - 30px);
    }


    .ct-product-hero-content h1 {
        font-size: 34px;

        line-height: 1.2;
    }


    .ct-product-hero-content p {
        font-size: 14px;

        line-height: 1.7;
    }


    .ct-product-hero-actions {
        align-items: stretch;

        flex-direction: column;
    }


    .ct-product-hero-actions a {
        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .ct-product-hero {
        min-height: 450px;
    }


    .ct-product-hero-tag {
        font-size: 11px;
    }


    .ct-product-hero-content h1 {
        font-size: 29px;
    }

}

/* =========================================
   CORE TRUST PRODUCT PAGE
========================================= */

.ct-product-page {
    padding: 60px 0 60px;
    background: #fff;
}

.ct-product-container {
    width: min(1400px, calc(100% - 40px));
    margin: auto;
    display: grid;
    grid-template-columns: 275px minmax(0, 1fr);
    gap: 40px;
}


/* =========================================
   SIDEBAR
========================================= */

.ct-product-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.ct-category-menu {
    overflow: hidden;
    border: 1px solid #dce3eb;
    border-radius: 8px;
    background: #fff;
}

.ct-category-title {
    padding: 17px 22px;
    background: #05204D;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.ct-category-menu a {
    min-height: 46px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #102449;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    margin-bottom: -6px;
}

.ct-category-menu a span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ct-category-menu a i {
    color: #05204D;
}

.ct-category-menu a:hover,
.ct-category-menu a.active {
    color: #00b968;
    background: #edf9f3;
}

.ct-category-menu a:hover i,
.ct-category-menu a.active i {
    color: #00b968;
}


/* HELP BOX */

.ct-help-box {
    margin-top: 18px;
    padding: 25px;
    border: 1px solid #dce3eb;
    border-radius: 8px;
    background: #f7faf9;
}

.ct-help-box h3 {
    margin: 0 0 12px;
    color: #05204D;
    font-size: 18px;
}

.ct-help-box p {
    margin: 0 0 20px;
    color: #526079;
    font-size: 13px;
    line-height: 1.7;
}

.ct-help-box a {
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    background: #00b968;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================
   BREADCRUMB
========================================= */

.ct-breadcrumb {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #738096;
    font-size: 13px;
}

.ct-breadcrumb a {
    color: #738096;
    text-decoration: none;
}

.ct-breadcrumb i {
    font-size: 9px;
}

.ct-breadcrumb span {
    color: #05204D;
    font-weight: 600;
}


/* =========================================
   PRODUCT MAIN
========================================= */

.ct-product-main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    gap: 50px;
}


/* PRODUCT IMAGE */




.ct-main-image {
    height: 590px;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f5f6;
}

.ct-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}


/* THUMBNAILS */

.ct-product-thumbnails {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ct-thumbnail {
    width: 70px;
    height: 62px;
    padding: 3px;
    overflow: hidden;
    border: 1px solid #dce3eb;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.ct-thumbnail.active {
    border: 2px solid #00b968;
}

.ct-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-gallery-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce3eb;
    border-radius: 50%;
    background: #fff;
    color: #05204D;
    cursor: pointer;
}


/* =========================================
   PRODUCT INFO
========================================= */

.ct-product-category {
    color: #00b968;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ct-product-info h1 {
    margin: 10px 0 20px;
    color: #05204D;
    font-size: 32px;
    line-height: 1.2;
}

.ct-product-intro {
    margin-bottom: 25px;

    font-size: 15px;
    line-height: 1.8;
}

.ct-product-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ct-product-features li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #000000;
    font-size: 14px;
}

.ct-product-features i {
    color: #00b968;
}





/* ACTION BUTTONS */

.ct-product-actions {
    margin-top: 28px;
    gap: 15px;

}

.ct-product-actions a {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.ct-quote-btn {
    background: #00b968;
    color: #fff;
}

.ct-quote-btn:hover {
    background: #05204D;
}

.ct-whatsapp-btn {
    border: 1px solid #00b968;
    color: #00b968;
    margin-top: 20px;
}

.ct-whatsapp-btn:hover {
    background: #00b968;
    color: #fff;
}


/* =========================================
   PRODUCT DETAILS TABS
========================================= */

.ct-product-details {

    overflow: hidden;

    border-radius: 8px;
}

.ct-tab-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* border-bottom: 1px solid #dce3eb; */
    width: 100%;
}

.ct-tab-btn {
    position: relative;
    padding: 20px 10px;
    border: none;
    background: transparent;
    color: #05204D;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 40px;
}

.ct-tab-btn.active {
    color: #00b968;
}

.ct-tab-btn.active::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: -1px;
    left: 15px;
    height: 3px;
    background: #00b968;
}

.ct-tab-content {
    display: none;
}

.ct-tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ct-tab-text {
    padding: 40px;
}

.ct-tab-text h2,
.ct-tab-full h2 {
    margin: 0 0 15px;
    color: #05204D;
    font-size: 25px;
}

.ct-tab-text p,
.ct-tab-full p {
    color: #000000;
    font-size: 14px;
    line-height: 1.8;
}

.ct-tab-text ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.ct-tab-text li {
    margin-bottom: 13px;
    color: #000000;
    font-size: 14px;
}

.ct-tab-text li i {
    margin-right: 9px;
    color: #00b968;
}

.ct-tab-image {
    height: 400px;
}

.ct-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 60px;
}

.ct-tab-full {
    grid-column: 1 / -1;
    padding: 40px;
}


/* =========================================
   RELATED PRODUCTS
========================================= */

.ct-related-products {
    padding-top: 65px;
}

.ct-section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.ct-section-heading span {
    color: #00b968;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ct-section-heading h2 {
    margin: 8px 0 0;
    color: #05204D;
    font-size: 32px;
}

.ct-related-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ct-related-card {
    overflow: hidden;
    border: 1px solid #dce3eb;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s ease;
}

.ct-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(6, 36, 92, 0.1);
}

.ct-related-image {
    height: 200px;
    overflow: hidden;
}

.ct-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.ct-related-card:hover img {
    transform: scale(1.05);
}

.ct-related-info {
    padding: 20px;
}

.ct-related-info h3 {
    min-height: 48px;
    margin: 0 0 15px;
    color: #05204D;
    font-size: 16px;
    line-height: 1.5;
}

.ct-related-info a {
    color: #00b968;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .ct-product-container {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 25px;
    }

    .ct-product-main {
        gap: 30px;
    }

    .ct-main-image {
        height: 420px;
    }

    .ct-product-info h1 {
        font-size: 31px;
    }

}


@media (max-width: 991px) {

    .ct-product-container {
        display: block;
    }

    .ct-product-sidebar {
        display: none;
    }

    .ct-product-main {
        grid-template-columns: 1fr 1fr;
    }

    .ct-main-image {
        height: 380px;
    }

    .ct-related-slider {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .ct-product-page {
        padding-top: 25px;
    }

    .ct-product-container {
        width: calc(100% - 30px);
    }

    .ct-breadcrumb {
        overflow-x: auto;
        white-space: nowrap;
    }

    .ct-product-main {
        display: block;
    }

    .ct-main-image {
        height: 390px;
    }

    .ct-product-thumbnails {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .ct-gallery-arrow {
        display: none;
    }

    .ct-thumbnail {
        flex: 0 0 65px;
    }

    .ct-product-info {
        padding-top: 35px;
    }

    .ct-product-info h1 {
        font-size: 29px;
    }

    .ct-product-benefits {
        gap: 10px;
    }

    .ct-benefit {
        display: block;
        text-align: center;
    }

    .ct-benefit>i {
        display: block;
        margin-bottom: 8px;
    }

    .ct-product-actions {
        grid-template-columns: 1fr;
    }

    .ct-tab-buttons {
        display: flex;
        overflow-x: auto;
    }

    .ct-tab-btn {
        flex: 0 0 auto;
        padding: 18px 22px;
        white-space: nowrap;
    }

    .ct-tab-content.active {
        display: block;
    }

    .ct-tab-text,
    .ct-tab-full {
        padding: 25px 20px;
    }

    .ct-tab-image {
        height: 250px;
    }

    .ct-related-slider {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ct-related-slider::-webkit-scrollbar {
        display: none;
    }

    .ct-related-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
    }

}


@media (max-width: 480px) {

    .ct-main-image {
        height: 320px;
    }

    .ct-product-info h1 {
        font-size: 26px;
    }

    .ct-product-features li {
        align-items: flex-start;
        font-size: 13px;
        line-height: 1.5;
    }

    .ct-benefit strong {
        font-size: 11px;
    }

    .ct-benefit span {
        font-size: 10px;
    }

    .ct-related-card {
        flex-basis: 88%;
    }

}

/* Corporate Solutions */

:root {

    --blue: #05204D;
    --green: #00b968;
    --black: #000000;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {

    font-family: Arial, sans-serif;

}



.container {

    width: 90%;
    max-width: 1200px;
    margin: auto;

}



/* Intro Section */

.solution-intro {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 60px 0;

}



.tag {

    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
}



.intro-content h1 {

    color: var(--blue);
    font-size: 48px;
    line-height: 1.15;
    margin: 20px 0;

}



.intro-content p,
.details-content p,

.cta-box p {

    color: var(--black);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px !important;


}



.primary-btn {

    background-color: var(--ct-secondary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--ct-secondary);
    box-shadow: 0 4px 14px rgba(0, 178, 92, 0.3);
    transition: var(--transition-smooth);

}

.solution-page .primary-btn:hover {
    background-color: #05204D;
    border-color: #05204D;
    color: #fff;
}



.intro-image img,
.details-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}






/* Second Section */


.solution-details {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 50px 0;

}



.details-content h2 {

    color: var(--blue);
    font-size: 36px;
    margin: 15px 0 20px;

}



.features {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;

}



.feature-box {

    display: flex;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background: #FFF;

}



.icon {

    font-size: 28px;
    color: #00b968;
}



.feature-box h3 {

    color: var(--blue);
    font-size: 18px;
    margin-bottom: 8px;

}



.feature-box p {

    font-size: 15px !important;
    margin-bottom: 0px !important;
    text-align: justify;
    text-align-last: left;


}


/* Responsive */


@media(max-width:900px) {


    .solution-intro,
    .solution-details {

        grid-template-columns: 1fr;

    }



    .intro-content h1 {

        font-size: 36px;

    }



    .features {

        grid-template-columns: 1fr;

    }



    .cta-box {

        flex-direction: column;
        gap: 25px;
        text-align: center;

    }


}

/* =========================================
   CORE TRUST BLOG PAGE
========================================= */

.ct-blog-section {
    padding: 80px 20px;
    background: #fff;
}

.ct-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


/* Heading */

.ct-section-heading {

    margin: 0 auto 55px;
    text-align: center;
}

.ct-section-heading h2 {
    margin: 0;
    color: #05204D;
    font-size: 48px;
    font-weight: 600;
}

.ct-section-heading>span {
    display: block;
    width: 60px;
    height: 2px;
    margin: 20px auto;
    background: #00b25c;
}

.ct-section-heading p {
    margin: 0;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
}


/* Blog Grid */

.ct-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}


/* Blog Card */

.ct-blog-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);

}




/* Image */

.ct-blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.ct-blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ct-blog-card:hover .ct-blog-image img {
    transform: scale(1.05);
}


/* Content */

.ct-blog-content {
    padding: 28px;
}

.ct-blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #00b25c;
    font-size: 14px;
}

.ct-blog-content h3 {
    margin: 0;
    color: #05204D;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
}

.ct-title-line {
    display: block;
    width: 45px;
    height: 2px;
    margin: 20px 0;
    background: #00b25c;
}

.ct-blog-content p {
    margin: 0 0 25px;

    font-size: 15px;
    line-height: 1.8;
}


/* Blog Button */

.ct-blog-btn {
    background-color: var(--ct-secondary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(0, 178, 92, 0.3);
    transition: var(--transition-smooth);
    margin-top: 20px;
}

.ct-blog-btn span {
    transition: transform 0.3s ease;

}

.ct-blog-btn:hover {
    background: #05204D;
    color: #fff;
}

.ct-blog-btn:hover span {
    transform: translateX(5px);
}




/* ==============================
   TABLET RESPONSIVE
================================ */

@media (max-width: 991px) {

    .ct-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-section-heading h2 {
        font-size: 42px;
    }



}


/* ==============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 767px) {

    .ct-blog-section {
        padding: 60px 15px;
    }

    .ct-blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ct-section-heading {
        margin-bottom: 40px;
    }

    .ct-section-heading h2 {
        font-size: 34px;
    }

    .ct-section-heading p {
        font-size: 15px;
    }

    .ct-blog-image {
        height: 260px;
    }

    .ct-blog-content {
        padding: 22px;
    }

    .ct-blog-content h3 {
        font-size: 22px;
    }


}


/* ==============================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .ct-section-heading h2 {
        font-size: 30px;
    }

    .ct-blog-image {
        height: 220px;
    }

    .ct-blog-content h3 {
        font-size: 20px;
    }


}

/* =========================================
   CORE TRUST CONTACT PAGE
========================================= */

.ct-contact-section {
    padding: 90px 20px;
    background: #ffffff;
}

.ct-contact-container {
    max-width: 1320px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;

    align-items: center;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.ct-contact-tag {
    display: inline-block;

    color: #00b968;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;
}

.ct-contact-info h2 {
    margin: 0;

    color: #05204D;

    font-size: 46px;
    font-weight: 700;

    line-height: 1.15;
}

.ct-contact-intro {
    margin: 25px 0 30px;
    font-size: 16px;
    line-height: 1.8;
}


/* CONTACT LIST */

.ct-contact-list {
    max-width: 520px;
}

.ct-contact-item {
    display: flex;
    align-items: center;

    gap: 22px;

    padding: 30px 0;

    border-bottom: 1px solid #e8e8e8;
}

.ct-contact-item:last-child {
    border-bottom: none;
}

.ct-contact-icon {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f5f3;

    border-radius: 10px;

    color: #00b968;

    font-size: 25px;
}

.ct-contact-item h4 {
    margin: 0 0 6px;

    color: #05204D;

    font-size: 21px;
    font-weight: 700;
}

.ct-contact-item p,
.ct-contact-item a {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;

    text-decoration: none;
}

.ct-contact-item a:hover {
    color: #00b968;
}


/* =========================================
   CONTACT FORM
========================================= */

.ct-contact-form-box {
    padding: 45px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow: 0 10px 45px rgba(6, 36, 92, 0.1);
}

.ct-contact-form-box h2 {
    margin: 0;

    color: #05204D;

    font-size: 34px;
    font-weight: 700;
}

.ct-form-line {
    width: 50px;
    height: 2px;

    margin: 18px 0 32px;

    background: #00b968;
}

.ct-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.ct-form-group {
    margin-bottom: 22px;
}

.ct-form-group label {
    display: block;

    margin-bottom: 9px;

    color: #05204D;

    font-size: 16px;
    font-weight: 700;
}

.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid #dce1e7;
    border-radius: 5px;

    outline: none;

    color: #333;

    font-size: 14px;

    background: #ffffff;

    transition: 0.3s ease;
}

.ct-form-group textarea {
    resize: vertical;
}

.was-validated .ct-form-group :invalid ~ .invalid-feedback {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #dc3545;
}
.was-validated .ct-form-group :invalid {
    border-color: #dc3545 !important;
}

.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
    border-color: #00b968;

    box-shadow: 0 0 0 3px rgba(0, 185, 104, 0.08);
}


/* FORM BUTTON */

.ct-form-submit {
    width: 100%;

    min-height: 54px;

    border: none;
    border-radius: 50px;

    background: #00b968;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.ct-form-submit:hover {
    background: #05204D;
}

.ct-form-submit i {
    transition: 0.3s ease;
}

.ct-form-submit:hover i {
    transform: translateX(5px);
}


/* FORM NOTE */

.ct-form-note {
    margin: 18px 0 0;

    display: flex;
    align-items: center;

    gap: 8px;

    color: #555;

    font-size: 13px;
}

.ct-form-note i {
    color: #00b968;
}


/* =========================================
   QUICK CONTACT STRIP
========================================= */

.ct-quick-contact {
    padding: 0 0px 40px;

    background: #ffffff;
}

.ct-quick-container {
    width: 100%;
    margin: auto;
    padding: 35px 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #05204D;
}

.ct-quick-info {
    display: flex;
    align-items: center;
    margin-left: 120px;
    gap: 25px;
}

.ct-quick-icon {
    width: 80px;
    height: 80px;

    flex: 0 0 80px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 35px;
}

.ct-quick-info h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 700;
}

.ct-quick-info p {
    max-width: 390px;

    margin: 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 15px;
    line-height: 1.6;
}


/* QUICK BUTTONS */

.ct-quick-actions {
    display: flex;
    margin-right: 120px;
    gap: 18px;
}

.ct-quick-actions a {
    min-width: 190px;
    min-height: 52px;

    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 50px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.ct-whatsapp-button {
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.ct-whatsapp-button:hover {
    background: #ffffff;
    color: #05204D;
}

.ct-call-button {
    background: #00b968;
}

.ct-call-button:hover {
    background: #ffffff;
    color: #05204D;
}


/* =========================================
   MAP SECTION
========================================= */

.ct-map-section {
    padding: 0 0px 30px;

    background: #ffffff;
}

.ct-map-heading {
    margin-bottom: 35px;

    text-align: center;
}

.ct-map-heading h2 {
    margin: 0 0 12px;

    color: #05204D;

    font-size: 36px;
    font-weight: 700;
}



.ct-map-wrapper {
    max-width: 1320px;
    height: 430px;

    margin: auto;

    overflow: hidden;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(6, 36, 92, 0.1);
}

.ct-map-wrapper iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

.ct-quick-info p {
    max-width: 600px;
    margin: 0px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .ct-contact-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .ct-contact-info h2 {
        font-size: 40px;
    }

    .ct-contact-list {
        max-width: 100%;
    }

    .ct-quick-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .ct-quick-actions {
        width: 100%;
    }

    .ct-quick-actions a {
        flex: 1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .ct-contact-section {
        padding: 60px 15px;
    }

    .ct-contact-info h2 {
        font-size: 32px;
    }

    .ct-contact-intro {
        font-size: 14px;
    }

    .ct-contact-form-box {
        padding: 30px 20px;
    }

    .ct-contact-form-box h2 {
        font-size: 28px;
    }

    .ct-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .ct-contact-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;

        font-size: 21px;
    }

    .ct-quick-contact {
        padding: 0 15px 60px;
    }

    .ct-quick-container {
        padding: 30px 20px;
    }

    .ct-quick-info {
        align-items: flex-start;
        margin-left: 0px;
    }

    .ct-quick-icon {
        width: 60px;
        height: 60px;

        flex-basis: 60px;

        font-size: 27px;
    }

    .ct-quick-info h3 {
        font-size: 20px;
    }

    .ct-quick-actions {
        flex-direction: column;
    }

    .ct-quick-actions a {
        width: 100%;
    }

    .ct-map-section {
        padding: 0 15px 60px;
    }

    .ct-map-heading h2 {
        font-size: 29px;
    }

    .ct-map-wrapper {
        height: 350px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .ct-contact-info h2 {
        font-size: 29px;
    }

    .ct-contact-item {
        gap: 15px;
    }

    .ct-contact-item p,
    .ct-contact-item a {
        font-size: 14px;
    }

    .ct-quick-info {
        flex-direction: column;
    }

}