/* ABOUT US NAV ACTIVE */
.nav-links a[href*="about.php"].active,
.nav-links a[href*="about.php"]:hover {
    color: #f4a100;
    font-weight: 600;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
    margin-bottom: 0px;
}

/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* NAV CONTAINER */
.nav-container {

    display: flex;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 0;
}

/* LOGO */
.logo img {
    height: 120px;
    width: auto;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #070707;
    font-size: 14px;
    transition: 0.3s;
}

/* ACTIVE LINK */
.nav-links a.active {
    color: #f4a100;
    font-weight: 600;
}

/* HOVER */
.nav-links a:hover {
    color: #f4a100;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    width: 100%;
    height: 100vh;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    position: relative;
}

/* DARK OVERLAY */
.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
}

/* CONTENT ALIGNMENT */
.hero-inner {
    max-width: 600px;
    color: #fff;
}

/* TITLE */
.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* HIGHLIGHT TEXT */
.hero-title span {
    color: #f4a100;
}

/* DESCRIPTION */
.hero-text {
    font-size: 16px;
    margin-bottom: 25px;
    color: #ddd;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #f4a100;
    color: #fff;
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #d98e00;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 91vh;
    overflow: hidden;
}

/* SLIDES */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* ACTIVE SLIDE */
.slide.active {
    opacity: 1;
    z-index: 1;
}

/* HERO OVERLAY */
.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);

    display: flex;
    align-items: flex-end;
    /* 🔥 move content to bottom */
}

/* CONTENT POSITION */
.hero-content {
    color: #fff;
    max-width: 600px;

    margin-left: 60px;
    /* left spacing */
    margin-bottom: 80px;
    /* bottom spacing */
}

/* CONTENT */
.hero-content {
    color: #fff;
    max-width: 600px;
}

/* TEXT */
.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content span {
    color: #f4a100;
}

.hero-content p {
    margin-bottom: 25px;
    color: #ddd;
}

/* BUTTON */
.hero-btn {
    background: #f4a100;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
}

/* PRECISION SECTION */
.precision {
    padding: 80px 0;
    background: white;
}

/* LAYOUT */
.precision-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: -30px;
}

/* IMAGE SIDE */
.precision-image {
    position: relative;
    flex: 1;
}

/* GREEN BORDER EFFECT */
.precision-image::before {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50%;
    height: 50%;
    border: 5px solid #4CAF50;
    border-radius: 25px;
    z-index: 0;
}

/* IMAGE */
.precision-image img {
    width: 100%;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

/* CONTENT SIDE */
.precision-content {
    flex: 1;
}

/* TAG */
.tag {
    display: inline-block;
    background: #eee;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

/* TITLE */
.precision-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.precision-content h2 span {
    color: #2e7d32;
}

/* TEXT */
.precision-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

/* STATS */
.stats {
    display: flex;
    gap: 60px;
}

.stats h3 {
    font-size: 32px;
    color: #a66a00;
}

.stats p {
    font-size: 12px;
    color: #777;
}

.services {
    padding: 90px 0 100px;
    background: #fbfafa;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 55px;

}

.section-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: #222;
    margin-top: -40px;
}

.section-header h2 span {
    color: #a66a00;
}

.section-header p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 60px 60px;
    border-radius: 28px;
    transition: 0.35s ease;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

/* HOVER (VERY SUBTLE LIKE DESIGN) */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* ICON BOX */
.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

/* COLORS EXACT */
.gold {
    background: #f4e6cd;
    color: #a66a00;
}

.green {
    background: #e3f3e8;
    color: #2e7d32;
}

.blue {
    background: #e3ecfb;
    color: #2563eb;
}

/* TEXT */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* LINK */
.service-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.service-link span {
    transition: 0.3s;
}

/* ARROW MOVE */
.service-link:hover span {
    transform: translateX(5px);
}

/* BUTTON */
.service-btn {
    text-align: center;
    margin-top: 60px;
}

.service-btn a {
    background: #8b5a00;
    color: #fff;
    padding: 14px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.service-btn a:hover {
    background: #6f4700;
}

/* ICON SVG */
.icon-box svg {
    width: 26px;
    height: 26px;
    transition: 0.35s ease;
}

/* ICON HOVER */
.service-card:hover .icon-box svg {
    transform: rotate(-8deg) scale(1.15);
}

/* ICON BACKGROUND GLOW */
.service-card:hover .icon-box {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card {
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.service-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

/* ARROW */
.service-link span {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* HOVER ARROW MOVE */
.service-link:hover span {
    transform: translateX(6px);
}

/* TEXT COLOR SMOOTH */
.service-link:hover {
    opacity: 0.8;
}

/* CARD SOFT SCALE */
.service-card:hover {
    transform: translateY(-8px) scale(1.01);
}

/* ICON SLIGHT POP */
.icon-box {
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.08);
}

/* ICON BOX (EXACT LOOK) */
.icon-box.gold {
    width: 60px;
    height: 60px;
    background: #f3e3c6;
    /* soft beige */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG STYLE */
.icon-box.gold svg {
    width: 28px;
    height: 28px;
    stroke: #a66a00;
    stroke-width: 1.6;
    fill: none;
}

/* HOVER (SUBTLE LIKE UI) */
.service-card:hover .icon-box.gold {
    background: #cea354;
    transform: scale(1.05);
}

/* GREEN ICON BOX */
.icon-box.green {
    width: 60px;
    height: 60px;
    background: #81cf93;
    /* dark green */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG STYLE */
.icon-box.green svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    stroke-width: 1.8;
    fill: none;
}

/* HOVER EFFECT */
.service-card:hover .icon-box.green {
    background: #256b2a;
    transform: scale(1.05);
}

/* BLUE ICON BOX */
.icon-box.blue {
    width: 60px;
    height: 60px;
    background: #6283ca;
    /* exact blue tone */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG STYLE */
.icon-box.blue svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    stroke-width: 1.8;
    fill: none;
}

/* HOVER */
.service-card:hover .icon-box.blue {
    background: #27427d;
    transform: scale(1.05);
}

/* DARK GOLD ICON BOX */
.icon-box.gold-dark {
    width: 60px;
    height: 60px;
    background: #a66a00;
    /* dark golden brown */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG STYLE */
.icon-box.gold-dark svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    stroke-width: 1.8;
    fill: none;
}

/* HOVER */
.service-card:hover .icon-box.gold-dark {
    background: #cea354;
    transform: scale(1.05);
}

/* LIGHT GREEN ICON BOX */
.icon-box.light-green {
    width: 60px;
    height: 60px;
    background: #6283ca;
    /* soft light green */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG STYLE */
.icon-box.light-green svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    /* dark green */
    stroke-width: 1.8;
    fill: none;
}

/* HOVER */
.service-card:hover .icon-box.light-green {
    background: #27427d;
    transform: scale(1.05);
}

/* SLIDER */
.services-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.services-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.2s ease;
}

/* SHOW 3 CARDS */
.service-card {
    min-width: calc(33.333% - 20px);
}

/* BUTTONS */
.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);

    background: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 2;
}

.prev {
    left: 0px;
}

.next {
    right: 0px;
}

/* ===== TRUSTED SECTION ===== */
.trusted {
    padding: 50px 0;
    background: #f8f8f8;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* TITLE */
.trusted-title {
    font-size: 11px;
    letter-spacing: 3px;
    color: #aaa;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

/* SLIDER WRAPPER — logos fade in from right, fade out at left */
.trusted-slider {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 6%,
            black 15%,
            black 85%,
            rgba(0, 0, 0, 0.4) 94%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 6%,
            black 15%,
            black 85%,
            rgba(0, 0, 0, 0.4) 94%,
            transparent 100%);
}

/* TRACK — gap:0 keeps math exact for seamless -50% loop */
.trusted-track {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: max-content;
    animation: scrollTrack 50s linear infinite;
}

/* EACH ITEM SLOT — no box, just space; 1/3 viewport = 3 visible */
.t-item {
    width: 33.333vw;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
}

/* Larger logo for Avaada in trusted slider */
.t-item-large {
    flex: 0 0 180px !important;
    max-width: 180px !important;
}

.t-item-large img {
    height: 70px !important;
    width: auto !important;
    object-fit: contain;
}

/* LOGO IMAGE — large, grayscale */

.t-item img {
    height: 47px;
    width: auto;
    max-width: 85%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.55);
    display: block;
    transition: filter 0.35s ease, transform 0.3s ease;
}

/* Make Annency and Enrun logos much larger in the slider */
.t-item img[src$="annency.png"],
.t-item img[src$="enrun.png"] {
    height: 220px !important;
    max-width: 220px !important;
    filter: grayscale(1000%) brightness(0.55) !important;
    background: none !important;
    width: auto !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
    transition: filter 0.35s ease, transform 0.3s ease;
}

.t-item:hover img {
    filter: grayscale(0%) brightness(0.5);
    transform: scale(1.05);
}

/* TEXT BRAND ITEM */
.t-text span {
    font-size: 38px;
    font-weight: 900;
    color: #444;
    letter-spacing: -1px;
    white-space: nowrap;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.t-text:hover span {
    color: #111;
}

/* ANIMATION — 20 items total (4×5), -50% = exactly 10 items (2×5) */
@keyframes scrollTrack {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: #fff;
    border-top: 1px solid #eee;
    font-family: 'Inter', Arial, sans-serif;
}

/* MAIN 4-COLUMN GRID */
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 50px;
}

/* BRAND COL */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

/* LOGO */
.footer-logo img {
    height: 120px;
    display: block;
    margin-bottom: -10px;
    margin-top: -30px;
    margin-left: -18px;
}

/* SOCIAL ICONS */
.footer-socials {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: color 0.25s;
}

.footer-socials a svg {
    width: 19px;
    height: 19px;
}

.footer-socials a:hover {
    color: #c07f00;
}

/* LET'S CHAT — WhatsApp CTA */
.footer-whatsapp {
    margin-top: 10px;
}

.footer-whatsapp-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 8px;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.30);
}

.footer-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.40);
}

.footer-whatsapp-btn .wa-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    fill: #fff;
}

/* HEADING */
.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: #c07f00;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #a06000;
}

/* CONTACT LIST */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #0e0d0d;
    line-height: 1.40;
}

.footer-contact-list .fc-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;

    color: #c07f00;
    stroke: #c07f00;
}

.footer-contact-list a {
    color: #c07f00;
    text-decoration: none;

}

.footer-contact-list a:hover {
    color: #a06000;
}

/* FOOTER BAR */
.footer-bar {
    border-top: 1px solid #eee;
    padding: 16px 0;
    background: #fff;
}

.footer-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bar p {
    font-size: 13px;
    color: #888;

}

.footer-bar p a {
    color: #c07f00;
    text-decoration: none;
    font-weight: 500;
}

.footer-bar-links {
    display: flex;
    gap: 22px;
}

.footer-bar-links a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bar-links a:hover {
    color: #c07f00;
}

/* Trusted Logo Scroller Area - Control both left and right fade areas */
.trusted-slider-outer {
    width: 85%;
    /* Adjust this to match your blue line area (left to right) */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 0px;
    /* Add padding on both sides to control where logos appear/disappear */
}

.trusted-slider {
    width: 100%;
    overflow: hidden;
    /* Mask for fade effect on both sides */
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

.trusted-track {
    display: flex;
    /* Keep existing animation */
}

/* =====================================================
   ABOUT US PAGE — FULL STYLES
   ===================================================== */

/* ---- Page wrapper ---- */
.about-page {
    background: #f9f9f9;
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.about-hero-section {
    background: #f9f9f9;
    padding: 72px 0 64px;
    border-bottom: 1px solid #eee;
}

.about-hero-container {
    display: flex;
    align-items: center;
    gap: 64px;
}

/* LEFT */
.about-hero-left {
    flex: 1 1 50%;
}

.about-badge {
    display: inline-block;
    background: #f3e3c6;
    color: #a66a00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border-left: 4px solid #a66a00;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #181818;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.about-hero-title span {
    color: #f4a100;
}

.about-hero-lead {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

/* Stats inside hero */
.about-hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.about-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #f9f9f9;
    border-radius: 14px;
    padding: 18px 24px;
    min-width: 110px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border-top: 3px solid #f4a100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.stat-num {
    font-size: 30px;
    font-weight: 800;
    color: #a66a00;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    color: #777;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* RIGHT */
.about-hero-right {
    flex: 1 1 45%;
    position: relative;
}

.about-hero-img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    aspect-ratio: 1 / 1;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;
}

.about-hero-img-wrap:hover .about-hero-img {
    filter: grayscale(0%);
}

.about-hero-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 70, 126, 0.08);
    pointer-events: none;
}

/* Quote badge */
.about-hero-quote {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #a66a00;
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    max-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.about-hero-quote p {
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}


/* ====================================================
   OUR JOURNEY SECTION
   ==================================================== */
.about-journey-section {
    background: #f9f9f9;
    padding: 90px 0 80px;
}

.about-journey-container {
    display: flex;
    align-items: center;
    gap: 72px;
}

/* Image side */
.about-journey-img-wrap {
    flex: 1 1 45%;
    position: relative;
    flex-shrink: 0;
}

.about-journey-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.11);
    position: relative;
    z-index: 1;
    display: block;
}

/* Decorative border behind image */
.about-journey-img-border {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(166, 106, 0, 0.25);
    border-radius: 16px;
    transform: translate(12px, 12px);
    z-index: 0;
}

/* Text side */
.about-journey-content {
    flex: 1 1 50%;
}

.about-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #a66a00;
    margin-bottom: 14px;
}

.about-journey-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-journey-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-journey-highlight {
    font-size: 16px;
    font-weight: 600;
    color: #181818;
    line-height: 1.65;
}

.about-journey-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}

.about-journey-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.divider-bar {
    display: block;
    height: 4px;
    border-radius: 2px;
}

.divider-bar.red {
    width: 48px;
    background: #a66a00;
}

.divider-bar.blue-short {
    width: 16px;
    background: #1a237e;
}


/* ====================================================
   PARTNERS SECTION
   ==================================================== */
.about-partners-section {
    background: #f9f9f9;
    padding: 80px 0 90px;
    border-top: 1px solid #eee;
}

.about-partners-header {
    text-align: center;
    margin-bottom: 52px;
}

.about-partners-heading {
    font-size: 34px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.about-partners-lead {
    font-size: 15px;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Partner grid */
.about-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-partner-card {
    background: #fff;
    border-radius: 18px;
    padding: 38px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #ececec;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    cursor: default;
}

.about-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
}

.partner-icon-wrap {
    width: 68px;
    height: 68px;
    background: #f3e3c6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.about-partner-card:hover .partner-icon-wrap {
    background: #a66a00;
}

.partner-svg {
    width: 32px;
    height: 32px;
    stroke: #a66a00;
    transition: stroke 0.3s ease;
}

.about-partner-card:hover .partner-svg {
    stroke: #fff;
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.partner-name {
    font-size: 17px;
    font-weight: 700;
    color: #181818;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.partner-type {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.about-hero .tag {
    background: #eee;
    color: #a66a00;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    border-radius: 20px;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 18px;
}

.about-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 12px;
}

.about-hero h1 span {
    color: #f4a100;
}

.about-lead {
    font-size: 18px;
    color: #444;
    margin-bottom: 28px;
    max-width: 500px;
}

.about-hero-img img {
    width: 260px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    margin-top: 18px;
}

.about-stats {
    background: #f9f9f9;
    padding: 40px 0 30px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.about-stat {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 28px 32px;
    text-align: center;
    min-width: 120px;
}

.about-stat h2 {
    font-size: 32px;
    color: #a66a00;
    margin-bottom: 8px;
    font-weight: 800;
}

.about-stat p {
    font-size: 13px;
    color: #444;
    font-weight: 600;
    line-height: 1.3;
}

.about-stat p span {
    color: #888;
    font-weight: 400;
}

.about-journey {
    background: #fff;
    padding: 60px 0 30px;
}

.about-journey .tag {
    background: #eee;
    color: #a66a00;
    font-weight: 700;
    font-size: 12px;
    border-radius: 20px;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 18px;
}

.about-journey h2 {
    font-size: 30px;
    color: #1a237e;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-journey-text {
    color: #444;
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 600px;
}

.about-journey-img img {
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    margin-top: 18px;
}

.about-partners {
    background: #fff;
    padding: 40px 0 60px;
    text-align: left;
}

.about-partners h3 {
    font-size: 22px;
    color: #181818;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-partners-lead {
    color: #444;
    font-size: 14px;
    margin-bottom: 18px;
}

.about-partner-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 340px;
}

.about-partner-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 15px;
    color: #181818;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.partner-icon {
    font-size: 18px;
}

/* =====================================================
   SERVICES PAGE — v2 (Structured Grid Layout)
   ===================================================== */

/* ---- PAGE WRAPPER ---- */
.services-page {
    background: #fff;
}

/* ---- HERO ---- */
.srv-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f5f0e8;
    border-bottom: 1px solid #ede3d0;
}

.srv-hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.srv-hero-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.10;
}

.srv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f5f0e8 50%, rgba(245, 240, 232, 0.6) 75%, transparent);
}

.srv-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, #a66a00 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.05;
}

.srv-hero-content {
    position: relative;
    z-index: 1;
    padding: 72px 0 64px;
    width: 100%;
}

.srv-hero-inner {
    max-width: 680px;
}

.srv-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(166, 106, 0, 0.10);
    color: #a66a00;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.srv-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a66a00;
    flex-shrink: 0;
}

.srv-hero-title {
    font-size: 60px;
    font-weight: 800;
    color: #1a237e;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.srv-hero-accent {
    color: #f4a100;
}

.srv-hero-lead {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    max-width: 520px;
    font-weight: 400;
}

/* ---- SERVICES MAIN SECTION ---- */
.srv-section {
    padding: 80px 0 60px;
}

.srv-space {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* 2-column grid rows */
.srv-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* For reversed row: image goes left, text goes right */
.srv-grid-row .srv-img-col--first {
    order: 1;
}

.srv-grid-row .srv-text-col--second {
    order: 2;
}

/* Accent border text block */
.srv-accent-block {
    border-left: 4px solid #f4a100;
    padding-left: 24px;
    margin-bottom: 24px;
}

.srv-service-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.15;
}

.srv-service-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}

/* Checklist */
.srv-checklist {
    list-style: none;
    padding: 0 0 0 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.srv-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1a237e;
}

.srv-check-svg {
    width: 20px;
    height: 20px;
    stroke: #a66a00;
    flex-shrink: 0;
}

/* Tags */
.srv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 24px;
}

.srv-tag {
    display: inline-block;
    background: #f9f5ee;
    color: #1a237e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid #ede3d0;
}

/* Image frame with decorative border */
.srv-img-frame {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.srv-img-frame--tl .srv-img-deco {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(244, 161, 0, 0.35);
    border-radius: 6px;
    z-index: 0;
}

.srv-img-frame--br .srv-img-deco {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(26, 35, 126, 0.20);
    border-radius: 6px;
    z-index: 0;
}

.srv-feature-img {
    width: 100%;
    aspect-ratio: 4 / 2.5;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.10);
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.srv-img-frame:hover .srv-feature-img {
    transform: translateY(-4px);
}

/* Image column alignment helpers */
.srv-img-col {
    display: flex;
}

.srv-img-col--right {
    justify-content: flex-end;
}

.srv-img-col--left {
    justify-content: flex-start;
}

/* ---- BENTO CARDS ---- */
.srv-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.srv-bento-card {
    border-radius: 6px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
}

.srv-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
}

.srv-bento-card--light {
    background: #f6e7c5;
}

.srv-bento-card--dark {
    background: #1a237e;
}

.srv-bento-icon {
    font-size: 0;
    margin-bottom: 20px;
}

.srv-bento-icon svg {
    width: 36px;
    height: 36px;
}

.srv-bento-card--light .srv-bento-icon svg {
    stroke: #a66a00;
}

.srv-bento-card--dark .srv-bento-icon svg {
    stroke: rgba(255, 255, 255, 0.65);
}

.srv-bento-title {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
}

.srv-bento-card--light .srv-bento-title {
    color: #1a237e;
}

.srv-bento-card--dark .srv-bento-title {
    color: #fff;
}

.srv-bento-desc {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.srv-bento-card--light .srv-bento-desc {
    color: #555;
}

.srv-bento-card--dark .srv-bento-desc {
    color: rgba(255, 255, 255, 0.78);
}

/* Animated underline bar */
.srv-bento-bar {
    height: 3px;
    width: 40px;
    background: #a66a00;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.srv-bento-card--light:hover .srv-bento-bar {
    width: 80px;
}

/* Decorative bg icon for dark card */
.srv-bento-bg-icon {
    position: absolute;
    bottom: -24px;
    right: -24px;
    opacity: 0.10;
    pointer-events: none;
}

.srv-bento-bg-icon svg {
    width: 160px;
    height: 160px;
    stroke: #fff;
}

/* ---- INTERIOR / WIDE CARD ---- */
.srv-wide-card {
    background: #f5f0e8;
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 3fr 2fr;
    border: 1px solid #ede3d0;
    align-items: stretch;
}

.srv-wide-content {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.srv-wide-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-left: 28px;
}

.srv-wide-stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a66a00;
    margin-bottom: 4px;
}

.srv-wide-stat-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.srv-wide-img {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.srv-wide-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.srv-wide-img-tint {
    position: absolute;
    inset: 0;
    background: rgba(26, 35, 126, 0.08);
    mix-blend-mode: multiply;
    z-index: 1;
}

/* ---- METHODOLOGY ---- */
.srv-method {
    background: #fbfafa;
    padding: 75px 0 50px;
    overflow: hidden;
}

.srv-method-header {
    text-align: center;
    margin-bottom: 52px;
}

.srv-method-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.srv-method-sub {
    font-size: 14px;
    color: #777;
    font-weight: 500;
    max-width: 500px;
    margin: 0 auto;
}

.srv-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.srv-step-card {
    background: #fffcf6;
    padding: 32px 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.srv-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.srv-step-card--navy {
    border-top: 4px solid #1a237e;
}

.srv-step-card--gold {
    border-top: 4px solid #f4a100;
}

.srv-step-num {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.srv-step-num--navy {
    color: rgba(26, 35, 126, 0.10);
}

.srv-step-num--gold {
    color: rgba(244, 161, 0, 0.20);
}

.srv-step-icon-box {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.srv-step-icon-box svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    flex-shrink: 0;
}

.srv-step-icon-box--navy {
    background: #1a237e;
}

.srv-step-icon-box--gold {
    background: #f4a100;
}

.srv-step-heading {
    font-size: 15px;
    font-weight: 800;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.srv-step-text {
    font-size: 12px;
    color: #666;
    line-height: 1.7;
}

/* ---- CTA ---- */
.srv-cta-section {
    padding: 25px 0 50px;
    background: #fbfafa;
}

.srv-cta-card {
    background: #1a237e;
    border-radius: 8px;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    overflow: hidden;
}

.srv-cta-text {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.srv-cta-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.srv-cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.6;
}

.srv-cta-action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.srv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #a66a00;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 24px rgba(166, 106, 0, 0.22);
    transition: background 0.25s ease, transform 0.2s ease;
}

.srv-cta-btn:hover {
    background: #c07f00;
    transform: translateY(-2px);
}

.srv-cta-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    flex-shrink: 0;
}

.srv-cta-blob {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(50px);
    z-index: 0;
}

.srv-cta-blob--left {
    bottom: -100px;
    left: -60px;
}

.srv-cta-blob--right {
    top: -100px;
    right: -60px;
}

/* =====================================================
   CONTACT PAGE — FULL STYLES
   ===================================================== */

/* Page wrapper */
.contact-page {
    background: #f8f8f8;
    position: relative;
}

/* Dot grid overlay */
.ctc-grid-overlay {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, #a66a00 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

/* ---- HERO ---- */
.ctc-hero {
    position: relative;
    z-index: 1;
    padding: 72px 0 52px;
}

.ctc-hero-inner {
    max-width: 700px;
}

.ctc-hero-badge {
    display: inline-block;
    background: #f3e3c6;
    color: #a66a00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-left: 4px solid #a66a00;
    border-radius: 4px;
    margin-bottom: 22px;
}

.ctc-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #1a237e;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.ctc-hero-lead {
    font-size: 18px;
    color: #555;
    line-height: 1.75;
    font-weight: 400;
    max-width: 580px;
}

/* ---- CONTACT SECTION ---- */
.ctc-section {
    position: relative;
    z-index: 1;
    padding: 0 0 80px;
}

/* 12-col grid simulation: 7fr + 5fr */
.ctc-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 28px;
    align-items: start;
}

/* nothing special, takes grid cell */


.ctc-form-card {
    background: #f5f0e8;
    border: 1px solid #ede3d0;
    border-radius: 8px;
    padding: 44px 48px;
}

.ctc-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* 2-column field row */
.ctc-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ctc-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Label */
.ctc-label {
    font-size: 11px;
    font-weight: 700;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Input / Select / Textarea — underline style */
.ctc-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #d6c9a8;
    border-radius: 0;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.ctc-input::placeholder {
    color: #bbb;
    font-size: 13px;
}

.ctc-input:focus {
    border-bottom-color: #a66a00;
}

/* Select wrapper */
.ctc-select-wrap {
    position: relative;
}

.ctc-select {
    width: 100%;
    cursor: pointer;
    padding-right: 24px;
}

.ctc-select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #aaa;
    pointer-events: none;
}

/* Textarea */
.ctc-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit button */
.ctc-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #a66a00;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 24px rgba(166, 106, 0, 0.22);
    transition: background 0.25s ease, transform 0.2s ease;
    align-self: flex-start;
}

.ctc-submit-btn:hover {
    background: #c07f00;
    transform: translateY(-2px);
}

.ctc-submit-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    flex-shrink: 0;
}

/* ---- INFO COLUMN ---- */
.ctc-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Base info card */
.ctc-info-card {
    border-radius: 8px;
    padding: 28px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.ctc-info-card:hover {
    transform: translateX(5px);
}

/* Navy card (phone) */
.ctc-info-card--dark {
    background: #1a237e;
}

/* Light card (email / location) */
.ctc-info-card--light {
    background: #f5f0e8;
    border: 1px solid #ede3d0;
    border-left: 4px solid #a66a00;
}

/* Icon box */
.ctc-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ctc-card-icon svg {
    width: 20px;
    height: 20px;
}

.ctc-card-icon--dark {
    background: rgba(255, 255, 255, 0.15);
}

.ctc-card-icon--dark svg {
    stroke: #fff;
}

.ctc-card-icon--light {
    background: #f3e3c6;
}

.ctc-card-icon--light svg {
    stroke: #a66a00;
}

/* Phone sections wrapper */
.phone-sections-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.phone-section-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Card text */
.ctc-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 5px;
}

.ctc-card-title--white {
    color: #fff;
}

.ctc-card-text {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
}

.ctc-card-text--muted {
    color: rgba(255, 255, 255, 0.80);
}