:root {
    --ctma-light-green: #C7F08E;
    --ctma-deep-green: #253D03;
    --ctma-golden: #FFBB1A;
    --ctma-title-color: #3D2205;
    --ctma-bg: #FFFDF4;
}

body {
    background: var(--ctma-bg); 
}

h1,
h2,
h3,
h4,
h5,
h6 {
    
    /* font-family: 'Playfair Display', serif !important; */
    font-family: "Lora", serif;
  font-optical-sizing: auto;
}

p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.1rem !important;
}

/* universal class */
.no-mar{
    margin: 0px !important;
}

.top-title{
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    font-family: "Caveat", cursive !important;
    font-optical-sizing: auto !important;
}

.main-title{
    font-size: 2rem;
    font-weight: 600;
}

.lime-btn{
    margin-top: 50px !important;
    display: inline-block !important;
    background: var(--ctma-light-green) !important;
    padding: 5px 10px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    color: var(--ctma-deep-green) !important;
    transition: all 0.5s ease-in-out;
    padding-left: 15px !important;
}
.lime-btn i{
    padding: 10px;
    background: #fff;
    border-radius: 1000px;
    margin-left: 5px;

}

.lime-btn:hover{
    background: var(--ctma-golden) !important;
    color: var(--ctma-deep-green) !important;
}

.intro-img{
    height: 50vh;
    border-radius: 30px;
}
.intro-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.ctma-blank-pg{
    height: 50vh;
}

/* =========================
   TOP BAR
========================= */
.ctma-topbar {
    background: #f2efe6;
    font-size: 14px;
    padding: 8px 0;
    color: var(--ctma-title-color);
}

.ctma-topbar i {
    color: var(--ctma-title-color);
    margin-right: 6px;
}

.ctma-topbar a {
    /* width: 60px; */
    display: flex;
    color: var(--ctma-title-color);
    text-decoration: none;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.ctma-topbar-right {
    gap: 25px;
}

.topbar-contact .data{
    display: flex;
    gap: 7px;
}

/* =========================
   NAVBAR WRAPPER
========================= */
.ctma-navbar-wrapper {
    padding: 15px 0;
}

.ctma-navbar-box {
    padding-right: 15px !important;
    padding-left: 10px !important;
    background: #dfe6e3;
    border-radius: 999px;
    padding: 12px 25px;
}

/* Nav links */
.ctma-navbar .nav-link {
    color: var(--ctma-title-color);
    font-weight: 500;
    margin: 0 15px;
}

.ctma-navbar .nav-link:hover {
    color: var(--ctma-deep-green);
}

/* Center logo */
.ctma-logo img {
    width: 60px;
}

/* Buttons */
.ctma-btn-outline {
    border: 1px solid var(--ctma-deep-green);
    border-radius: 25px;
    padding: 8px 20px;
    background: transparent;
    color: var(--ctma-deep-green);
    font-weight: 500;
}

.ctma-btn-outline:hover {
    background: var(--ctma-deep-green);
    color: #fff;
}

.ctma-btn-primary {
    background: var(--ctma-deep-green);
    border-radius: 25px;
    padding: 8px 20px;
    color: #fff;
    font-weight: 500;
    border: none;
}

.ctma-btn-primary:hover {
    opacity: 0.9;
}

.ctma-hero-section {
    background: #E7E4DA;
    padding: 90px 0 60px;
}

.ctma-hero-title {
    font-size: 58px;
    line-height: 1.15;
    color: var(--ctma-title-color);
}

.ctma-hero-right h5 {
    color: var(--ctma-title-color);
    font-size: 22px;
}

.ctma-hero-right p {
    color: #4b3a2a;
    font-size: 15px;
    line-height: 1.7;
}

.ctma-register-btn {
    background: var(--ctma-light-green);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    color: var(--ctma-deep-green);
    margin-top: 15px;
}

.ctma-register-btn:hover {
    background: var(--ctma-deep-green);
    color: #fff;
}

/* Feature Pills */
.ctma-feature-pill {
    background: #E9E6E0;
    border-radius: 40px;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.ctma-feature-dot {
    width: 45px;
    height: 45px;
    background: #4B2608;
    border-radius: 50%;
    flex-shrink: 0;
}

.ctma-feature-text {
    
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ctma-title-color);
}
.navbar .navbar-nav .nav-link {
    color: var(--ctma-title-color) !important;
    margin: 0px;
}

#ctmaNavMobile{
    display: none !important;
}

 div#ctmaNavLeft{
    display: flex !important;
    max-width: fit-content;
}



/* ===============================
   HERO SLIDER SECTION
================================ */
/* Section */
.ctma-hero-slider-section {
    padding: 40px 0;
    background: var(--ctma-bg);
}

/* Slider Wrapper */
.ctma-hero-slider {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: 550px;
}

/* Slide */
.ctma-slide-item {
    position: relative;
    height: 550px;
}

.ctma-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease;
}

/* Smooth zoom on active slide */
.slick-current .ctma-slide-item img {
    transform: scale(1.08);
}

/* Dark overlay (Left fade like your design) */
.ctma-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.05) 70%
    );
}

/* Content */
.ctma-slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 520px;
    color: #fff;
}

.ctma-slide-title {
    
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 500;
}

.ctma-slide-desc {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Button */
.ctma-slide-btn {
    background: var(--ctma-light-green);
    border: none;
    border-radius: 40px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ctma-deep-green);
    transition: 0.3s ease;
}

.ctma-slide-btn:hover {
    background: var(--ctma-deep-green);
    color: #fff;
}

/* ===============================
   VERTICAL DOTS (Right Side)
================================ */

.ctma-hero-slider .slick-dots {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    flex-direction: column;
    gap: 14px;
    height: 30px;
    z-index: 10;
    width: 30px;
}

/* Remove default bullet */
.ctma-hero-slider .slick-dots li button:before {
    display: none;
}

/* Custom vertical dots */
.ctma-hero-slider .slick-dots li {
    width: 4px;
    height: 26px;
    background: rgba(255,255,255,0.4);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ctma-hero-slider .slick-dots li.slick-active {
    background: var(--ctma-golden);
    height: 40px;
}

/* Remove arrows */
.ctma-hero-slider .slick-prev,
.ctma-hero-slider .slick-next {
    display: none !important;
}
/* ===============================
   WHAT WE DO SECTION
================================ */
.ctma-what-section {
    /* background: #ECE9E1; */
    padding: 90px 0;
    position: relative;
}

/* Sub heading */
.ctma-what-subtitle {
    
    font-size: 14px;
    color: var(--ctma-deep-green);
    font-style: italic;
}

/* Main heading */
.ctma-what-title {
    
    font-size: 44px;
    color: var(--ctma-title-color);
    margin: 10px 0 15px;
}

/* Description */
.ctma-what-desc {
    
    font-size: 15px;
    color: #5c4b3b;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.page-template-member_zone .ctma-what-desc {
    margin: 0px !important;
    width: 80% !important;
    max-width: 100%;
}
.page-template-member_zone .title-wrpr {
    margin-bottom: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-template-member_zone .ctma-member-buttons
{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-template-member_zone .ctma-member-box {
    background: url(../images/green-wood-bg.png) no-repeat center center;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    padding: 60px 70px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    color: #fff;
    gap: 30px !important;
}

/* Card */
.ctma-what-card {
    background: #F3F1EC;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    min-height: 290px;
}

.ctma-what-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon */
.ctma-what-icon {
    font-size: 28px;
    color: var(--ctma-deep-green);
    margin-bottom: 20px;
}

/* Card Title */
.ctma-what-card h4 {
    font-size: 22px;
    color: var(--ctma-title-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Card Text */
.ctma-what-card p {
    font-size: 14px;
    color: #5c4b3b;
    line-height: 1.6;
    margin-bottom: 0 !important;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.row.g-4.what-we-do-grid {
    display: flex;
    justify-content: center;
}
/* ===============================
   ABOUT SECTION
================================ */
.ctma-about-section {
    /* background: #E7E4DA; */
    padding: 50px 0;
    text-align: center;
}

/* Subtitle */
.ctma-about-subtitle {
    
    font-size: 14px;
    color: var(--ctma-deep-green);
    font-style: italic;
    margin-bottom: 10px;
}

/* Title */
.ctma-about-title {
    
    font-size: 44px;
    color: var(--ctma-title-color);
    margin-bottom: 30px;
}

/* Description */
.ctma-about-text {
    text-align: justify;
    font-size: 15px;
    color: var(--ctma-title-color);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Button */
.ctma-about-btn {
    background: var(--ctma-light-green);
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 500;
    color: var(--ctma-deep-green);
    transition: 0.3s ease;
}

.ctma-about-btn:hover {
    background: var(--ctma-deep-green);
    color: #fff;
}
/* ===============================
   SECTION BACKGROUND
================================ */
.ctma-mv-section {
    padding: 50px 0;
    /* background: linear-gradient(90deg, #F3EBDD 0%, #EDE4D4 50%, #F3EBDD 100%); */
}

/* Custom UL Style */
.ctma-custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ctma-custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    
    font-size: 15px;
    color: var(--ctma-title-color);
}

/* Custom Dot */
.ctma-custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--ctma-light-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(199, 240, 142, 0.25);
}

/* Card Base */
.ctma-mv-card {
    border-radius: 24px;
    padding: 40px 35px;
    height: 100%;
}

/* Titles */
.ctma-mv-card h3 {
    
    font-size: 30px;
    margin-bottom: 20px;
}

/* Paragraph / List */
.ctma-mv-card p,
.ctma-mv-card li {
    
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Individual Card Colors */
.ctma-card-mission {
    background: #ECE9E4;
    color: var(--ctma-title-color);
}

.ctma-card-vision {
    background: #3F6A57;
    color: #ffffff;
}

.ctma-card-vision p{
    color: var(--ctma-bg) !important;
}
.ctma-card-vision li{
    color: var(--ctma-bg) !important;
}
.ctma-card-core li{
    color: var(--ctma-bg) !important;
}

.ctma-card-core {
    background: #5A3D00;
    color: #ffffff;
}

.ctma-card-road {
    background: #D8DBD7;
    color: var(--ctma-title-color);
}

.ctma-card-road .ctma-custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--ctma-title-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(240, 198, 142, 0.25);
}

/* List styling */
.ctma-mv-card ul {
    padding-left: 18px;
    margin: 0;
}

.ctma-mv-card li {
    margin-bottom: 8px;
}


section.ctma-founder-section{
    padding-top: 50px;
    padding-bottom: 50px;
}

.ctma-founder-subtitle{
    text-align: center;
    color: var(--ctma-deep-green);
}
.ctma-founder-title{
    text-align: center;
    color: var(--ctma-title-color);
}

.ctma-founder-desc {
    margin: auto;
    /* display: flex; */
    text-align: center;
    max-width: 60%;
    color: var(--ctma-title-color);
    justify-content: center;
    padding-bottom: 25px;
}

/* Card Wrapper */
.founder-card {
    background: var(--ctma-bg);
    border-radius: 25px;
    padding: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.founder-card:hover{
    background: var(--ctma-title-color);
    color: #fff;
}
.founder-card:hover .founder-name{
    color: var(--ctma-golden);
}
.founder-card:hover .founder-role{
    color: #fff;
}
.founder-card:hover .social-icons a i{
    color: #fff;
}

/* Image Wrapper */
.founder-img-wrapper {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

/* Image */
.founder-img-wrapper img {
    width: 100%;
    border-radius: 25px;
    transition: transform 0.5s ease;
}

/* Hover Zoom */
.founder-card:hover .founder-img-wrapper img {
    transform: scale(1.08);
}

/* Arrow Button */
.arrow-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--ctma-light-green);
    color: var(--ctma-title-color);
    width: 42px;
    height: 42px;
    border-radius: 28%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Show arrow on hover */
.founder-card:hover .arrow-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Name */
.founder-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--ctma-title-color);
}

/* Role */
.founder-role {
    font-size: 16px;
    color: var(--ctma-deep-green);
}

/* Social Icons */
.social-icons a {
    color: var(--ctma-title-color);
    font-size: 18px;
    margin-left: 12px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--ctma-golden);
}

/* ===============================
   SECTION BACKGROUND
================================ */
.ctma-leadership-section {
    background: url(../images/brwn-wood-bg.png) no-repeat center center / cover;
    padding: 50px 0;
    color: #fff;
}

/* Title */
.ctma-leadership-sub {
    font-size: 14px;
    color: var(--ctma-light-green);
    text-align: center;
    margin-bottom: 8px;
}

.ctma-leadership-title {
    
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

/* ===============================
   CARD ROW
================================ */
.ctma-leader-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    margin-bottom: 25px;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    transition: all 0.3s ease;
}

/* Arrow circle */
.ctma-leader-arrow {
    width: 45px;
    height: 45px;
    background: var(--ctma-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ctma-leader-arrow i {
    color: var(--ctma-deep-green);
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

/* ===============================
   HOVER EFFECT
================================ */
.ctma-leader-row:hover {
    background: #ffffff;
    color: var(--ctma-title-color);
}

.ctma-leader-row:hover .ctma-leader-name,
.ctma-leader-row:hover .ctma-leader-role {
    color: var(--ctma-title-color);
}

.ctma-leader-row:hover .ctma-leader-arrow {
    background: #ffffff;
    border: 1px solid var(--ctma-title-color);
}

.ctma-leader-row:hover .ctma-leader-arrow i {
    color: var(--ctma-title-color);
    transform: rotate(0deg);
}

.ctma-leader-left
 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 25px;
}
.ctma-leader-img {
    width: 60px;
    height: 60px;
        border-radius: 10px;
}
.ctma-leader-img img{
    border-radius: 10px;
}

.ctma-view-all {
    background: var(--ctma-light-green);
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 500;
    color: var(--ctma-deep-green);
    transition: 0.3s ease;
}

.ctma-view-all:hover {
    background: var(--ctma-deep-green);
    color: #fff;
}

/* ===============================
   SECTION
================================ */
.ctma-collab-section {
    background: var(--ctma-bg);
    padding: 50px 0;
    padding-left: 50px;
    padding-right: 50px;
}

/* Image block */
.ctma-collab-img {
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
}

.ctma-collab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card style */
.ctma-collab-card {
    height: fit-content;
    background: #EDE9DD;
    border-radius: 28px;
    padding: 45px 40px;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ctma-collab-card h3 {
    
    font-size: 34px;
    color: var(--ctma-title-color);
    margin-bottom: 15px;
}

.ctma-collab-card p {
    font-size: 1rem;
    color: #3e3a33;
    line-height: 1.8;
}

.ctma-link {
    margin-top: 20px;
    font-weight: 500;
    text-decoration: none;
    color: var(--ctma-deep-green);
}

.ctma-link i {
    margin-left: 6px;
}

/* Top & Bottom Badge */
.ctma-badge-top {
    background: var(--ctma-title-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.ctma-badge-bottom {
    background: var(--ctma-title-color);
    color: #fff;
    padding: 12px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

/* Wrapper for middle alignment */
.ctma-collab-wrapper {
    position: relative;
}

.ctma-colab-crd{
display: flex;
    gap: 20px;
    flex-direction: column;
}

/* ===============================
   SECTION
================================ */
.ctma-affiliation-section {
    padding: 90px 0;
    text-align: center;
    height: 70vh;
    display: flex;
    align-items: center;
}

/* Subtitle */
.ctma-affiliation-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--ctma-title-color);
    margin-bottom: 10px;
}

/* Title */
.ctma-affiliation-title {
    
    font-size: 42px;
    color: var(--ctma-title-color);
    margin-bottom: 60px;
}

/* Logos Row */
.ctma-affiliation-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
}

/* Logo */
.ctma-affiliation-logo img {
    max-height: 55px;
    opacity: 0.6;
    transition: 0.3s ease;
    filter: grayscale(100%);
}

/* Hover */
.ctma-affiliation-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===============================
   COUNTER SECTION
================================ */
.ctma-counter-section {
    background: var(--ctma-deep-green);
    padding: 50px 0;
}

/* Card */
.ctma-counter-card {
    background: #0E5A3F;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    color: #ffffff;
    height: 100%;
}

/* Big Number */
.ctma-counter-number {
    font-size: 64px;
    color: var(--ctma-golden);
    margin-bottom: 20px;
}

/* Small top-right label */
.ctma-counter-label {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--ctma-golden);
    font-weight: 500;
}

/* Description */
.ctma-counter-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Section wrapper */
.ctma-stack-wrapper {
    background: var(--ctma-bg);
    padding: 50px 0;
}



/* Each Stack Card */
.ctma-stack-card {
    text-align: center;
    position: sticky;
    top: 120px; /* controls stacking offset */
    margin-bottom: 80px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--ctma-deep-green);
    color: #ffffff;
    min-height: 500px;
    display: flex;
}

.ctma-stack-card1 .ctma-stack-left{
 background: #004737;
}
.ctma-stack-card2 .ctma-stack-left{
 background: #003328;
}
.ctma-stack-card3 .ctma-stack-left{
 background: #001c16;
}

/* Left Content */
.ctma-stack-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ctma-stack-left h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
}

.ctma-stack-btn {
    margin: auto;
    background: var(--ctma-light-green);
    color: var(--ctma-deep-green);
    padding: 10px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 40px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
}

.ctma-stack-subtitle {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
}

.ctma-stack-desc {
    text-align: center !important;
    font-size: 1.2rem;
    max-width: 420px;
    opacity: 0.9;
    line-height: 1.7;
    margin: auto;
}

.ctma-stack-stats {
    margin-top: 20px;
    font-weight: 500;
}

/* Right Image */
.ctma-stack-right {
    flex: 1;
}

.ctma-stack-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
  SUPPORT SECTION
================================ */
.ctma-support-section {
    background: url(../images/brwn-wood-bg.png);
    /* background: var(--ctma-deep-green); */
    padding: 50px 0;
    color: #ffffff;
    position: relative;
}

/* Top small label */
.ctma-support-subtitle {
    color: var(--ctma-golden);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Main title */
.ctma-support-title {
    
    font-size: 42px;
    margin-bottom: 20px;
}

/* Description */
.ctma-support-desc {
    max-width: 600px;
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Button */
.ctma-support-btn {
    position: absolute;
    top: 50px;
    right: 15%;
    background: var(--ctma-light-green);
    color: var(--ctma-deep-green);
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* Cards */
.ctma-support-card {
    border-radius: 18px;
    padding: 28px;
    background: #ECECEC;
    color: var(--ctma-title-color);
    height: 100%;
}

.ctma-support-card h5 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}



.ctma-support-card p
 {
    margin-bottom: 0px;
    font-size: 13px;
    line-height: 1.7;
}

/* Active first card */
.ctma-support-card.active {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
}

/* ===============================
   RESOURCE SECTION
================================ */
.ctma-knowledge-section {
    background: url(../images/light-wood-bg.png);
    padding: 50px 0;
}

/* Left Image */
.ctma-knowledge-img-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 80vh;
}

.ctma-knowledge-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Stats */
.ctma-knowledge-stats
 {
    margin: auto;
    width: fit-content;
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: linear-gradient(90deg, rgba(37, 61, 3, 0.95), rgba(20, 90, 50, 0.9));
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    gap: 30px;
}

.ctma-stat-number {
    
    font-size: 32px;
    color: var(--ctma-golden);
}

.ctma-stat-label {
    font-size: 13px;
    opacity: 0.9;
}

/* Right Content */
.ctma-knowledge-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--ctma-title-color);
}

.ctma-knowledge-title {
    
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--ctma-title-color);
}

/* Resource Card */
.ctma-resource-card {
    background: #EDEDED;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.ctma-resource-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ctma-pdf-icon {
    width: 35px;
    height: 35px;
    background: #F44336;
    border-radius: 6px;
    font-size: 11px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.ctma-resource-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ctma-title-color);
}

.ctma-resource-date {
    font-size: 1rem;
    color: #6d6d6d;

}

/* Arrow */
.ctma-resource-arrow {
    width: 38px;
    height: 38px;
    background: var(--ctma-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctma-resource-arrow i {
    color: var(--ctma-deep-green);
}

/* Hover */
.ctma-resource-card:hover {
    transform: translateY(-3px);
}

/* ===============================
   EVENTS SECTION
================================ */
.ctma-events-section {
    background: var(--ctma-bg);
    padding: 50px 0;
    text-align: center;
}

/* Subtitle */
.ctma-events-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--ctma-title-color);
}

/* Title */
.ctma-events-title {
    
    font-size: 42px;
    margin: 10px 0 20px;
    color: var(--ctma-title-color);
}

.ctma-events-desc {
    max-width: 650px;
    margin: 0 auto 60px;
    font-size: 14px;
    color: #4a3d2c;
}

/* Event Card */
.ctma-event-card {
    height: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    color: #ffffff;
    text-align: left;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    background-size: contain;
    background-position: center;
    transition: transform 0.3s ease;
}

.ctma-event-card:hover {
    transform: translateY(-5px);
}

/* Overlay */
.ctma-event-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

.ctma-event-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.ctma-event-badge {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
    font-size: 11px;
    padding: 7px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1;
}
.ctma-event-date {
    font-size: 12px;
    opacity: 0.9;
    margin-left: 10px;
}

.ctma-event-title {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
}

.ctma-event-text {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Button */
.ctma-event-btn {
    background: var(--ctma-light-green);
    color: var(--ctma-deep-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}



/* View All */
.ctma-view-btn {
    margin-top: 50px;
    display: inline-block;
    background: var(--ctma-light-green);
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--ctma-deep-green);
}









/* ===============================
   EVENTS SECTION slide
================================ */
.ctma-news-section {
    background: var(--ctma-bg);
    padding: 50px 0;
    text-align: center;
}

/* Title */
.ctma-news-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--ctma-title-color);
    margin-bottom: 0px !important;
}

.ctma-news-title {
    
    font-size: 42px;
    margin: 10px 0 20px;
    color: var(--ctma-title-color);
}

.ctma-news-desc {
    max-width: 650px;
    margin: 0 auto 60px;
    font-size: 14px;
    color: #4a3d2c;
}

/* Card */
.ctma-news-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    text-align: left;
    transition: all 0.35s ease;
}

/* Image */
.ctma-news-img {
    position: relative;
    overflow: hidden;
}

.ctma-news-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Arrow */
.ctma-news-arrow {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    background: var(--ctma-light-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctma-news-arrow i {
    color: var(--ctma-deep-green);
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.ctma-news-arrow:hover i {
    transform: rotate(0deg);
}

/* Content */
.ctma-news-content {
    padding: 20px;
}

.ctma-news-badge {
    line-height: 1;
    height: fit-content;
    background: var(--ctma-golden);
    font-size: 11px;
    padding: 8px 10px;
    border-radius: 15px;
    display: inline-block;
    color: var(--ctma-title-color);
}

.ctma-news-date {
    font-size: 12px;
    float: right;
    color: var(--ctma-title-color);
}

.ctma-news-heading {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
    color: var(--ctma-title-color);
}

/* Hover Effect */
.ctma-news-card:hover {
    background: var(--ctma-deep-green);
    color: #ffffff;
}

.ctma-news-card:hover .ctma-news-heading,
.ctma-news-card:hover .ctma-news-date {
    color: #ffffff;
}

.ctma-news-card:hover .ctma-news-img img {
    transform: scale(1.05);
}

/* View All */
.ctma-news-view {
    margin-top: 50px;
    display: inline-block;
    background: var(--ctma-light-green);
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--ctma-deep-green);
}

/* Remove bootstrap row spacing conflict */
.ctma-news-slider .col-lg-4 {
    padding: 0 12px;
}

/* Arrow Base */
.ctma-prev,
.ctma-next {
    position: absolute;
    top: -70px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #C7F08E; /* your lime */
    color: #253D03;
    font-size: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.swiper .ctma-prev,
.swiper .ctma-next {
    position: absolute;
    top: 65px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #C7F08E; /* your lime */
    color: #253D03;
    font-size: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Position */
.ctma-prev { right: 60px; }
.ctma-next { right: 0; }

/* Hover */
.ctma-prev:hover,
.ctma-next:hover {
    background: #253D03;
    color: #fff;
}

/* Remove default slick arrow */
.slick-prev:before,
.slick-next:before {
    display: none;
}

/* ===============================
   IMPACT SECTION
================================ */
.ctma-impact-section {
    background: url(../images/green-wood-bg.png);
    padding: 90px 0;
    border-radius: 30px;
    color: #ffffff;
    margin: 50px;
}

.ctma-impact-sub {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.ctma-impact-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.ctma-impact-btn {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
    padding: 10px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* Counter */
.ctma-impact-counter {
    text-align: left;
    padding: 20px 0;
}

.ctma-impact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--ctma-golden);
}

.ctma-impact-label {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Divider */
.ctma-impact-divider {
    border-left: 1px solid rgba(255,255,255,0.3);
}

/* Bottom Description */
.ctma-impact-desc {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.85;
}

/* ===============================
   Contact SECTION
================================ */
.ctma-contact-section {
    background: var(--ctma-bg);
    padding: 50px 0;
}

/* Left Image */
.ctma-contact-img {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    flex: 1;
    height: 80vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.ctma-contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}

/* Contact overlay info */
.ctma-contact-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #ffffff;
    font-size: 1.2rem;
}

.ctma-contact-info div {
    margin-bottom: 10px;
}

/* Right Form Wrapper */
.ctma-contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
}

/* Title */
.ctma-contact-sub {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    color: var(--ctma-title-color);
}

.ctma-contact-title {
    text-align: center;
    font-size: 40px;
    color: var(--ctma-title-color);
    margin-bottom: 30px;
}

/* Form Fields */
.ctma-contact-form label {
    font-size: 13px;
    margin-bottom: 6px;
}

.ctma-contact-form .form-control,
.ctma-contact-form .form-select {
    border-radius: 12px;
    border: none;
    padding: 12px 15px;
    background: #E2E2E2;
    font-size: 14px;
}

.ctma-contact-form textarea {
    min-height: 130px;
}

/* Submit Button */
.ctma-contact-btn {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
    padding: 10px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    margin-top: 15px;
}

/* ===============================
   FOOTER
================================ */
.ctma-footer {
    background: linear-gradient(135deg, #0B5D45, #1F4D1E);
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
}

/* Logo */
.ctma-footer-logo {
    width: 90px;
    margin-bottom: 20px;
}

.ctma-footer-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* QR */
.ctma-footer-qr-wrapper {
    display: flex;
    gap: 15px;
}

.ctma-footer-qr {
    gap: 8px;
    line-height: 1.5;
    max-width: 100px !important;
    display: flex;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    color: var(--ctma-title-color);
    font-size: 12px;
    flex-direction: column;
}

.ctma-footer-qr img {
    width: auto;
}

/* Headings */
.ctma-footer h5
 {
    color: #fff;
    font-size: 1.2rem;
    /* font-size: 16px; */
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

/* Links */
.ctma-footer ul {
    list-style: none;
    padding: 0;
}

.ctma-footer ul li {
    margin-bottom: 8px;
}

.ctma-footer ul li a
 {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
}

.ctma-footer ul li a:hover {
    opacity: 1;
}

/* Working Hours */
.ctma-footer p {
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.9;
}

/* Subscribe */
.ctma-footer-subscribe
 {
    margin: 50px auto 40px;
    max-width: 500px;
    display: flex;
    background: #EDE9E3;
    border-radius: 40px;
    padding: 8px;
    margin-top: 0px;
}

.ctma-footer-subscribe input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 10px 15px;
    outline: none;
}

.ctma-footer-subscribe button {
    background: var(--ctma-deep-green);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
}
.ctma-footer-subscribe button:hover {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
}

/* Bottom */
.ctma-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ===============================
   MEMBER HERO SECTION
================================ */

.ctma-member-hero {
    padding: 60px 0;
    /* background: var(--ctma-bg); */

}

.ctma-member-box {
    /* background: linear-gradient(
            rgba(37, 61, 3, 0.9),
            rgba(37, 61, 3, 0.9)
        ),
        url(../images/green-wood-bg.png) no-repeat center center; */
                background: 
        url(../images/green-wood-bg.png) no-repeat center center;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    padding: 60px 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    color: #fff;
}

/* Badge */
.ctma-member-badge {
    color: var(--ctma-light-green);
    font-size: 14px;
    font-style: italic;
    display: inline-block;
    margin-bottom: 12px;
}

/* Title */
.ctma-member-title {
    
    font-size: 46px;
    margin-bottom: 15px;
}

/* Description */
.ctma-member-desc {
    max-width: 600px;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Buttons */
.ctma-member-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.ctma-member-btn {
    background: #f1f1f1;
    color: var(--ctma-title-color);
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.ctma-member-btn:hover {
    background: var(--ctma-light-green);
    color: var(--ctma-deep-green);
}

.ctma-member-btn.active {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
}

/* Right Icon */
.ctma-member-icon {
    position: absolute;
    right: 40px;
    top: 40px;
    background: var(--ctma-light-green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* display: flex; */
    display: none;
    align-items: center;
    justify-content: center;
}

.ctma-member-icon i {
    color: var(--ctma-deep-green);
    font-size: 18px;
}

.ctma-contact-section {
    background: var(--ctma-bg);
    padding: 50px 0;
}

.ctma-contact-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* .ctma-contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
} */

/* LEFT SIDE */
.ctma-contact-left {
    
}

.ctma-mini-title {
    font-size: 14px;
    font-style: italic;
    color: var(--ctma-deep-green);
    display: block;
    margin-bottom: 10px;
}

.ctma-main-title {
    
    font-size: 48px;
    color: var(--ctma-title-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.ctma-description {
    color: var(--ctma-title-color);
    line-height: 1.7;
    font-size: 15px;
    max-width: 500px;
}

.ctma-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 25px;
    color:var(--ctma-title-color);
}

.ctma-feature-grid h4 {
    
    color: var(--ctma-title-color);
}

.ctma-sub-title {
    
    font-size: 32px;
    margin-top: 10px;
    color: var(--ctma-title-color);
}

.mt-60 {
    margin-top: 60px;
}

/* RIGHT SIDE STICKY */
.ctma-contact-right {
    position: relative;
}

.ctma-form-box {
    position: sticky;
    top: 50px;
    background: transparent;
}

.ctma-form-title {
    
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--ctma-title-color);
}

.ctma-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #ddd;
    font-size: 14px;
}

textarea {
    min-height: 140px;
    margin-bottom: 25px;
    resize: none;
}

.ctma-submit-btn {
    background: var(--ctma-light-green);
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--ctma-deep-green);
    cursor: pointer;
    display: block;
    margin: auto;
    transition: 0.3s;
}

.ctma-submit-btn:hover {
    background: var(--ctma-deep-green);
    color: #fff;
}
.ctma-contact-link{
    color: var(--ctma-title-color);
}
.ctma-contact-link a{
    color: var(--ctma-title-color);
}
.ctma-contact-link a:hover{
    text-decoration: underline;

}

/* SECTION */
.ctma-md-section {
    background: var(--ctma-bg);
    padding: 50px 0;
}

.ctma-md-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.ctma-md-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* CARD */
.ctma-md-card {
    background: #ded9ce;
    padding: 50px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* TITLE */
.ctma-md-title {
    font-size: 32px;
    color: var(--ctma-title-color);
    margin-bottom: 20px;
}

/* QUOTE */
.ctma-md-quote {
    font-size: 60px;
    color: var(--ctma-title-color);
    line-height: 1;
    margin-bottom: 20px;
}

/* TEXT */
.ctma-md-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ctma-title-color);
}

/* SECTION */
/* .ctma-impact-section {
    background: var(--ctma-bg);
    padding: 60px 0;
} */

/* BOX */
.ctma-impact-box {
    width: 95%;
    max-width: 1300px;
    margin: auto;
    padding: 50px 60px;
    border-radius: 20px;

    background: 
        linear-gradient(rgba(61, 34, 5, 0.85), rgba(61, 34, 5, 0.85)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');

    background-size: cover;
    background-position: center;

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

    color: #fff;
}

/* LEFT CONTENT */
.ctma-impact-label {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.ctma-impact-title {
    font-size: 36px;
    line-height: 1.3;
    margin: 0;
}

/* BUTTON */
.ctma-impact-btn {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.ctma-impact-btn:hover {
    background: var(--ctma-golden);
}

/* SECTION */
.ctma-impact-wood-section {
    background: var(--ctma-bg);
    padding: 50px 0;
}

/* WRAPPER */
.ctma-impact-wood {
    position: relative;
    width: 95%;
    max-width: 1300px;
    margin: auto;
}

/* WOOD IMAGE */
.ctma-wood-bg {
    width: 100%;
    display: block;
}

/* CONTENT OVER IMAGE */
.ctma-wood-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    color: #fff;
}

/* TITLE */
.ctma-wood-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1.3;
    margin: 0;
}

/* BUTTON */
.ctma-wood-btn {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.ctma-wood-btn:hover {
    background: #e6a800;
}


/* --------------
CTMA footer cta2
--------------- */
.ctma-hero-movement {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/ftr-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
    overflow: hidden;
}

/* DARK OVERLAY */
.ctma-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* CONTENT */
.ctma-hero-content {
    position: relative;
    max-width: 900px;
    z-index: 2;
}

/* HEADING */
.ctma-hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 35px;
    font-weight: 500;
}

/* BUTTON WRAPPER */
.ctma-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* GREEN BUTTON */
.ctma-btn-green {
    background: var(--ctma-light-green);
    color: var(--ctma-deep-green);
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.ctma-btn-green:hover {
    background: var(--ctma-deep-green);
    color: #fff;
}

/* WHITE BUTTON */
.ctma-btn-white {
    background: #fff;
    color: var(--ctma-deep-green);
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.ctma-btn-white:hover {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
}

/* Section */
.ctma-gallery-section {
  padding: 50px 0;
  background: url(../images/gal-bg.png) center/cover no-repeat;
  text-align: center;
}

/* Container */
.ctma-container {
  width: 90%;
  margin: auto;
}

/* Title */
.ctma-gallery-title {
  font-size: 40px;
  margin-bottom: 40px;
  color: #3b2f2f;
  font-family: serif;
}

/* Grid */
.ctma-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Item */
.ctma-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* Wrapper */
.ctma-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* Image */
.ctma-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay */
.ctma-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  color: #fff;
  font-size: 18px;
  transition: opacity 0.4s ease;
}

/* Zoom Button */
.ctma-zoom-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e2e2e;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover Effects */
.ctma-gallery-item:hover img {
  transform: scale(1.08);
}

.ctma-gallery-item:hover .ctma-overlay {
  opacity: 0;
}

.ctma-gallery-item:hover .ctma-zoom-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   CTMA CONTACT PAGE STYLES
=================================*/

.ctma-hero {
  background: linear-gradient(135deg, #0f3d2e, #0b2e22);
  color: #fff;
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
}

.ctma-hero small {
  color: #d4af37;
  letter-spacing: 2px;
  font-weight: 600;
}

.ctma-hero h1 {
  font-weight: 600;
  font-size: 48px;
}

.ctma-info-section {
  background: #eef3ee;
  padding: 50px 0;
}

.ctma-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}

.ctma-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
}

.ctma-info-card h5{
    color: var(--ctma-title-color) !important;
}
.ctma-info-card p{
    color: var(--ctma-title-color) !important;
}

.ctma-icon-yellow { background: #d4af37; }
.ctma-icon-green { background: #1d4b3a; }

.ctma-map {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
}

.ctma-map iframe{
  width: 100%;
  height: 400px;
}

.ctma-booking-section {
  background: #eef3ee;
  padding: 50px 0;
}

.ctma-booking-title small {
  color: #1d4b3a;
  letter-spacing: 2px;
  font-weight: 600;
}

.ctma-booking-title h2 {
  font-size: 42px;
  font-weight: 600;
}

.ctma-booking-img img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctma-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ctma-btn {
  background: #d4af37;
  color: var(--ctma-title-color);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
}

.ctma-btn:hover {
  background: #c19d2f;
}


/* ==========================
   CTMA ABOUT PAGE SECTION
========================== */

.ctma-about-pg-section {
  background: url(../images/brwn-wood-bg.png);
  padding: 100px 0;
  color: var(--ctma-light-green);
  position: relative;
  overflow: hidden;
}

/* Sub titles */
.ctma-about-pg-small-title {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--ctma-light-green);
  margin-bottom: 10px;
}

/* Main heading */
.ctma-about-pg-heading {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ctma-golden);
}

/* Image styling */
.ctma-about-pg-img-wrapper {
  background: #e6e6e6;
  padding: 12px;
  border-radius: 24px;
  display: inline-block;
}

.ctma-about-pg-img img {
  border-radius: 20px;
  display: block;
}

/* Mission box */
.ctma-about-pg-mission-box h5 {
  margin-top: 15px;
  font-weight: 600;
  color: #ffffff;
}

.ctma-about-pg-mission-box p {
  font-size: 14px;
  color: #fff;
  margin-top: 8px;
}

.ctma-about-pg-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--ctma-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ctma-light-green);
  font-size: 20px;
}

/* Button */
.ctma-about-pg-btn {
  background: var(--ctma-light-green);
  color: var(--ctma-deep-green);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.ctma-about-pg-btn:hover {
  background: var(--ctma-light-green);
  color: var(--ctma-deep-green);
}

.ctma-about-pg-sticky {
  position: sticky;
  top: 100px;
}



/* ===========
Counter Section
========== */
.ctma-cntr-section {
    background-color: var(--ctma-deep-green);
    padding: 60px 20px;
}

.ctma-cntr-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.ctma-cntr-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    width: 300px;
    color: #fff;
}

.ctma-cntr-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--ctma-light-green);
}

.ctma-cntr-label {
    font-size: 16px;
    margin-top: 5px;
    color: var(--ctma-golden);
}

.ctma-cntr-desc {
    font-size: 14px;
    margin-top: 10px;
    color: #e5e5e5;
}

/* =======FAQ========= */
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
  margin: 10px 0;
}

/* .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 0;
} */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  padding: 10px 0;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}

section.ctma-abt-img
 {
    height: 50vh;
}


/* Default State */
.ctma-navbar-wrapper {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Sticky State */
.ctma-navbar-wrapper.ctma-sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #FFFDF4; /* your CTMA bg */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Prevent content jump */
body.ctma-navbar-active {
    padding-top: 90px; /* Adjust according to navbar height */
}

/* Layout */
.blog-section {
    padding: 60px 40px;
    /* background: #f4f4f4; */
}

.blog-grid {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

/* Card */
.blog-card {
    margin-left: 10px;
    cursor: pointer;
    margin-right: 10px;
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.blog-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

/* Subtle zoom */
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Hover Arrow */
.hover-arrow {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background: var(--ctma-light-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.hover-arrow span {
    font-size: 28px;
    color: white;
    font-weight: 400;
    display: inline-block;
    transition: transform 0.4s ease;
}

/* SHOW BOX ON HOVER */
.blog-card:hover .hover-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ROTATE ARROW -45deg ON HOVER */
.blog-card:hover .hover-arrow span {
    transform: rotate(-45deg);
}

/* Content */
.blog-meta {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.blog-tag {
    padding: 6px 14px;
    border: 1px solid #b8c8c2;
    border-radius: 30px;
    font-size: 14px;
    /* color: #4f6f60; */
        color: var(--ctma-deep-green);
}

.blog-date {
    font-size: 14px;
    /* color: #6b6b6b; */
        color: var(--ctma-title-color);
}

.blog-title {
    margin-top: 16px;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--ctma-title-color);
}



.ctma-event-sing-section .ctma-event-page {
    background: var(--ctma-bg);
    padding: 80px 0;
}

/* Left Content */
.ctma-event-sing-section .ctma-section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--ctma-title-color);
    margin-bottom: 20px;
}

.ctma-event-sing-section .ctma-sub-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--ctma-title-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.ctma-event-sing-section .ctma-text {
    color: var(--ctma-title-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.ctma-event-image {
    height: 50vh;
}

.ctma-event-sing-section .ctma-event-image img
 {
    height: stretch;
    width: 100%;
    border-radius: 20px;
    margin: 30px 0;
    object-fit: cover;
}

/* Highlight box */
.ctma-event-sing-section .ctma-highlight-box {
    background: var(--ctma-light-green);
    border-left: 5px solid var(--ctma-dark);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    color: var(--ctma-title-color);
}

/* Sidebar */
.ctma-event-sing-section .ctma-event-sidebar {
    position: sticky;
    top: 100px; /* Adjust based on navbar height */
}

/* Card */
.ctma-event-sing-section .ctma-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 25px;
    border: 1px solid var(--ctma-light-green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.ctma-event-sing-section .ctma-card-title {
    font-weight: 600;
    color: var(--ctma-title-color);
    margin-bottom: 20px;
}

/* Detail Items */
.ctma-event-sing-section .ctma-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--ctma-title-color);
}

.ctma-event-sing-section .ctma-detail-item i {
    color: var(--ctma-gold);
}

/* Input */
.ctma-event-sing-section .ctma-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

.ctma-event-sing-section .ctma-input:focus {
    border-color: var(--ctma-dark);
    outline: none;
}

/* Button */
.ctma-event-sing-section .ctma-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: var(--ctma-dark);
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.ctma-event-sing-section .ctma-btn:hover {
    background: var(--ctma-title);
}

/* Social */
.ctma-event-sing-section .ctma-socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--ctma-light);
    color: var(--ctma-title-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.ctma-event-sing-section .ctma-socials a:hover {
    background: var(--ctma-deep-green);
    color: white;
}
/* ===============================
   CTMA EVENT HERO
=================================*/

.ctma-event-hero {
    position: relative;
    height: 600px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    background: url('../images/intro-img.png') center/cover no-repeat;
}

/* Dark Gradient Overlay */
.ctma-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(37,61,3,0.85) 0%,
        rgba(37,61,3,0.75) 35%,
        rgba(37,61,3,0.4) 70%,
        rgba(37,61,3,0.15) 100%
    );
}

/* Content */
.ctma-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 0px;
    max-width: 800px;
}

/* Badge */
.ctma-hero-badge {
    display: inline-block;
    background: rgba(199,240,142,0.2);
    color: var(--ctma-bg);
    padding: 2px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(199,240,142,0.5);
}

/* Title */
.ctma-hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ctma-title-color);
}


.ctma-event-sidebar .ctma-card button.ctma-btn.lime-btn{
    margin: 0px !important;
}

/* top close section */
.top-close-sec {
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ctma-hero-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #253D03;
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 1000;
}

.ctma-hide {
    opacity: 0;
    transform: translateY(-20px);
}

.top-close-sec {
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.top-close-sec.hide-hero {
    opacity: 0;
    visibility: hidden;
}


/* New Footer */
.ctma-footer {
  background: linear-gradient(135deg, #0f2f1c, #174c2e);
  color: #FFFDF4;
  padding-top: 50px;
  padding-bottom: 0px !important;
}

.ctma-footer-logo {
  font-weight: 700;
  color: #C7F08E;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ctma-logo-dot {
  width: 14px;
  height: 14px;
  background: #FFBB1A;
  border-radius: 50%;
  display: inline-block;
}

.ctma-footer-desc {
  max-width: 450px;
  opacity: 0.8;
  margin: 15px 0 20px;
}

.ctma-social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #FFFDF4;
  transition: 0.3s;
}

.ctma-social-icons a:hover {
  background: #FFBB1A;
  color: #253D03;
}

.ctma-news-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.ctma-news-form input {
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #FFFDF4;
  border-radius: 6px 0 0 6px;
  outline: none;
  width: 280px;
}

.ctma-news-form button {
  padding: 12px 20px;
  border: none;
  background: #FFBB1A;
  color: #253D03;
  font-weight: 600;
  border-radius: 0 6px 6px 0;
  transition: 0.3s;
}

.ctma-news-form button:hover {
  background: #C7F08E;
}

.ctma-divider {
  border-color: rgba(255, 255, 255, 0.411);
  margin: 50px 0;
  margin-top: 0px !important;
}

.ctma-footer-links h6 {
  font-weight: 600;
  margin-bottom: 20px;
}

.ctma-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ctma-footer-links li {
  margin-bottom: 10px;
}

.ctma-footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.3s;
}

.ctma-footer-links a:hover {
  color: #FFBB1A;
}

.ctma-footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  margin-top: 10px;
}

.ctma-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 8px;
    transition: 0.3s;
    font-size: 1rem;
}

.ctma-footer-bottom-links a:hover {
  color: #FFBB1A;
}
.copyright {
    font-size: 1rem !important;
}




.ctma-navbar-wrapper {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

.ctma-navbar-wrapper.sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff; /* change if needed */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 9999;

    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}


/* New nav */

 /* Professional Navbar Styling */
        .navbar {
            background: #ffffff;
            /* padding: 15px 20px; */
            border: 2px solid #e0e6ed; /* Full border with professional light gray */
            border-radius: 99px; /* Slight rounding for modern look */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
            transition: all 0.3s ease;
            margin: 10px; /* Space from edges */
        }
        .navbar-scrolled {
            background: #ffffff !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        /* .navbar-brand {
            color: #2c3e50 !important;
            font-weight: 700;
            font-size: 1.6rem;
            transition: color 0.3s ease;
        } */
         .navbar-brand {
                right: 25%;
                position: relative;
                color: #2c3e50 !important;
                font-weight: 700;
                font-size: 1.6rem;
                transition: color 0.3s ease;
            }
        .navbar-brand:hover {
            color: #3498db !important; /* Blue hover effect */
        }
        .nav-link {
            color: #34495e !important; /* Slate gray for links */
            font-weight: 500;
            padding: 10px 15px !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: #3498db !important; /* Professional blue on hover */
        }
        .nav-link.active {
            color: #3498db !important;
            position: relative;
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 15px;
            width: calc(100% - 30px);
            height: 2px;
            background: #3498db;
        }
        /* Mega Menu Styling */
        .mega-menu {
            width: 100%;
            left: 0;
            padding: 20px;
            border: 1px solid #e0e6ed;
            border-radius: 5px;
            background: #ffffff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .mega-menu h6 {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .mega-menu .dropdown-item {
            padding: 8px 15px;
            color: #34495e;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        .mega-menu .dropdown-item i {
            margin-right: 10px;
            color: #3498db;
        }
        .mega-menu .dropdown-item:hover {
            background: #f5f7fa;
            color: #3498db;
        }
        /* Dropdown Styling */
        .dropdown-menu {
            border: 1px solid #e0e6ed;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .dropdown-item {
            color: #34495e;
            padding: 8px 15px;
            transition: all 0.3s ease;
        }
        .dropdown-item:hover {
            background: #f5f7fa;
            color: #3498db;
        }
        /* CTA Buttons */
        .btn-cta {
            padding: 8px 20px;
            font-weight: 500;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .btn-primary.btn-cta {
            background: #3498db;
            border-color: #3498db;
        }
        .btn-primary.btn-cta:hover {
            background: #2980b9;
            border-color: #2980b9;
        }
        .btn-success.btn-cta {
            background: #27ae60;
            border-color: #27ae60;
        }
        .btn-success.btn-cta:hover {
            background: #219653;
            border-color: #219653;
        }

        /* Parent */
.zr-mega-dropdown {
    position: relative;
}
.zr-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-left: 6px;
    transition: transform 0.4s ease;
    transform-origin: center center;
}

@media (min-width: 992px) {
    .zr-mega-dropdown:hover .zr-arrow {
        transform: rotate(180deg);
    }
}

.zr-mega-dropdown.show .zr-arrow {
    transform: rotate(180deg);
}

/* Arrow */
.zr-arrow::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    margin-left: 6px;
}

/* Mega Box */
.zr-mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    width: 900px;
    background: #f3efe6;
    padding: 40px 50px;
    border-radius: 16px;
    display: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    z-index: 999;
}

/* Show on hover */
.zr-mega-dropdown:hover .zr-mega-menu {
    display: block;
}

/* Columns */
.zr-mega-col h5 {
    font-family: serif;
    font-size: 22px;
    color: #0f4d3f;
    margin-bottom: 20px;
}

.zr-mega-col a {
    display: block;
    margin-bottom: 14px;
    text-decoration: none;
    color: #0f4d3f;
    font-size: 16px;
    transition: 0.2s;
}

.zr-mega-col a:hover {
    text-decoration: underline;
}

/* Highlight link */
.zr-highlight {
    font-weight: 600;
}

ul.navbar-nav.me-auto.mb-2.mb-lg-0.ctma-nav-links
 {
    padding-left: 0px;
    margin: 0px !important;
    width: fit-content;
}


/* Make container relative */
.ctma-nav-box {
    position: relative;
}

/* Absolute true center logo */
.ctma-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.navbar .navbar-nav .nav-link {
    /* padding: 10px 20px; */
    font-size: 16px;
    line-height: 20px;
    padding: 23px 20px !important;
    position: relative;
    font-weight: 500;
    opacity: 1;
    word-break: normal;
    -webkit-transition: .3s;
    transition: .3s;
    color: var(--white);
}

.gallery-page-sec {
    padding: 50px 0 !important;
    /* background: url(../images/gal-bg.png)  !important; */
    background-repeat: no-repeat !important;
    text-align: center !important;
}
.gallery-page-sec .ctma-gallery-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 80vh;
    overflow-y: auto;
}
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}


/* =============
    CTMA testimonial PAGE
================ */
.ctma-testimonial-section {
    padding: 80px 0;
    background: #FFFDF4;
}

.ctma-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #3D2205;
}

.ctma-testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s ease;
    height: 100%;
}

.ctma-testimonial-card:hover {
    border-color: #C7F08E;
    transform: translateY(-5px);
}

.ctma-testimonial-card h5 {
    font-size: 1.6rem;
    color: var(--ctma-deep-green);
    margin-bottom: 15px;
}

.ctma-testimonial-card p {
    font-size: 14px;
    color: var(--ctma-title-color);
    line-height: 1.6;
}

.ctma-author {
    margin-top: 15px;
}

.ctma-author strong{
    font-size: 1.2rem;
    color: var(--ctma-deep-green);
}

.ctma-author span {
    display: block;
    font-size: 1rem;
    color: var(--ctma-title-color);
}

.ctma-stars {
    margin-top: 10px;
    color: #FFBB1A;
}

.intro-section .ctma-hero-title{
    color: #fff !important;

}
.intro-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    top: -140px;
    z-index: -999;
    padding-bottom: 50px;
}
.nav-link .fa-house{
    font-size: 20px !important;
    color: var(--ctma-deep-green);
}

/* .nav-item.active .nav-link .fa-house{

    opacity: 1 !important;
} */

.navbar .navbar-nav .nav-item .nav-link.active, .navbar .navbar-nav .nav-item.active .nav-link, .navbar .navbar-nav .nav-item:hover .nav-link {
    opacity: 1 !important;
        color: var(--ctma-deep-green) !important;
}



/* blog slider */
.ctma-blog-slider {
  padding: 40px 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #253D03;
}

.ctma-blog-slider a.ctma-news-view.lime-btn {
    width: fit-content;
    display: flex !important;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.h-center {
    width: fit-content;
    display: flex !important;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* modal */
/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #251800cf;
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.modal .modal-content {
    background: #ffffff;
    width: 85%;
    max-width: 1000px;
    border-radius: 20px;
    position: relative;
    padding: 30px;
    max-height: 80%;
}

/* Close Button */
.modal .close-btn {
    /* line-height: 0; */
    padding: 4px 10px;
    position: absolute;
    top: 35px;
    right: 40px;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
    background: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
}

/* Layout */
.modal .contact-wrapper {
  display: flex;
  gap: 30px;
}

/* Left */
.modal .contact-left {
  flex: 1;
}

.modal .contact-left input,
.modal .contact-left textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}


.modal .contact-left textarea {
  height: 100px;
}

.modal .submit-btn {
  padding: 12px 20px;
  background: #0b4d3b;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* Right */
.modal .contact-right
 {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.img-wrpr{
    height: 100%;
}

.modal .contact-right img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
    object-fit: cover;
}

.modal .info-box {
  background: #f1f5f3;
  padding: 15px;
  border-radius: 12px;
}

.modal .contact-left h2 {
    color: var(--ctma-title-color);
    line-height: 1.4;
}
.input-wrpr{
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.gst-num{
    color: #fff;
}

.ctma-faq-section {
    background: var(--ctma-bg);
}

.ctma-subtitle {
    color: var(--ctma-golden);
    font-weight: 600;
    letter-spacing: 1px;
}

.ctma-title {
    color: var(--ctma-title-color);
    font-weight: 700;
}

.ctma-faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.ctma-faq-btn {
    font-weight: 600;
    color: var(--ctma-deep-green);
    background-color: #ffffff;
}

.ctma-faq-btn:not(.collapsed) {
    background-color: var(--ctma-light-green);
    color: var(--ctma-title-color);
    box-shadow: none;
}

.ctma-faq-btn:focus {
    box-shadow: none;
}

.accordion-body {
    background: #ffffff;
    color: var(--ctma-title-color);
}

button.accordion-button.ctma-faq-btn {
    font-size: 1.3rem;
}

.join-sec{
    margin: 50px;
    border-radius: 30px;
}


.ctma-section-title {
    color: var(--ctma-title-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.ctma-section-text {
    color: var(--ctma-text-color);
}

.ctma-primary-btn {
    background: var(--ctma-deep-green);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.ctma-primary-btn:hover {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
}

.ctma-highlight-box,
.ctma-card,
.ctma-benefit-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.ctma-highlight-box i,
.ctma-benefit-box i {
    font-size: 28px;
    color: var(--ctma-deep-green);
    margin-bottom: 15px;
}

.ctma-card:hover,
.ctma-benefit-box:hover {
    transform: translateY(-5px);
}

.ctma-list li,
.ctma-contact-list li {
    list-style: none;
    margin-bottom: 8px;
}

.ctma-list i,
.ctma-contact-list i {
    color: var(--ctma-deep-green);
    margin-right: 8px;
}

.ctma-img-box {
    overflow: hidden;
    border-radius: 12px;
}

.ctma-img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s ease;
}

.ctma-img-box:hover img {
    transform: scale(1.05);
}

.ctma-form-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
}

.ctma-input {
    border-radius: 6px;
    border: 1px solid #ddd;
}

.ctma-input:focus {
    border-color: var(--ctma-deep-green);
    box-shadow: 0 0 0 0.15rem rgba(37,61,3,0.2);
}

.ctma-primary-btn {
    background: var(--ctma-deep-green);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    transition: 0.3s ease;
}

.ctma-primary-btn:hover {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
}

.ctma-allied-section {
    background: var(--ctma-bg);
}

.ctma-allied-logo-box {
    height: 100%;
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.ctma-allied-logo-box img {
    border-radius: 10px;
    object-fit: fill;
}

.ctma-allied-logo-box:hover {
    transform: translateY(-5px);
}

.ctma-allied-top {
    color: var(--ctma-deep-green);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.2rem;
    text-transform: capitalize !important;
}

.ctma-allied-title {
    color: var(--ctma-title-color);
    font-weight: 700;
}

.ctma-allied-text {
    color: #555;
    line-height: 1.7;
}

.ctma-primary-btn {
    background: var(--ctma-deep-green);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.ctma-primary-btn:hover {
    background: var(--ctma-golden);
    color: var(--ctma-title-color);
}

.what-grid {
    gap: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}



/* Default pagesec */

.default_pagesec {
    padding: 60px 0;
}

.default_pagesec h1,
.default_pagesec h2,
.default_pagesec h3,
.default_pagesec h4,
.default_pagesec h5,
.default_pagesec h6 {
    color: var(--ctma-title-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.default_pagesec h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
}

.default_pagesec h2 {
    font-size: 34px;
    margin-top: 20px;
}

.default_pagesec h3 { font-size: 26px; }
.default_pagesec h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ctma-deep-green);
}
.default_pagesec h5 { font-size: 18px; }
.default_pagesec h6 { font-size: 16px; }

.default_pagesec h1 strong,
.default_pagesec h2 strong {
    font-weight: 700 !important;
}

.default_pagesec p,
.so-widget-sow-editor p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ctma-title-color);
    margin-bottom: 18px;
}

.default_pagesec ul,
.default_pagesec ol {
    margin-bottom: 25px;
    padding-left: 20px;
    color: var(--ctma-deep-green);
    display: block;
}

.default_pagesec ul li,
.default_pagesec ol li,
.so-widget-sow-editor ul li,
.siteorigin-widget-tinymce.textwidget ul li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ctma-title-color);
    margin-bottom: 10px;
    font-weight: 400;
}

.default_pagesec ol li::marker {
    color: var(--ctma-deep-green);
    font-weight: 600;
}


.default_pagesec img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}


.default_pagesec strong,
.default_pagesec b {
    color: var(--ctma-title-color);
    font-weight: 700;
}


.default_pagesec a {
    color: var(--ctma-deep-green);
    text-decoration: none;
    transition: 0.3s ease;
}

.default_pagesec a:hover {
    color: var(--ctma-golden);
}


.so-widget-sow-editor h1 {
    text-align: center;
}

.siteorigin-widget-tinymce.textwidget h3 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--ctma-title-color);
}

.siteorigin-widget-tinymce.textwidget ul li h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ctma-deep-green);
}

.intro-cont p {
    margin-bottom: 15px;
}

::marker {
    font-size: 24px;
    font-weight: 500;
}

/* =====================================
   CTMA ASSISTANCE SECTION
===================================== */

.ctma-assistance-section {
    background: var(--ctma-bg);
}

.ctma-section-title {
    color: var(--ctma-title-color);
    font-weight: 700;
}

.ctma-section-subtext {
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.ctma-assist-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.ctma-assist-card h5 {
    font-size: 1.6rem;
    color: var(--ctma-title-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.ctma-assist-card p {
    color: var(--ctma-title-color);
    font-size: 1rem;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ctma-assist-icon {
    width: 55px;
    height: 55px;
    background: var(--ctma-light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--ctma-deep-green);
}

.ctma-assist-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =====================================
   WHY JOIN CTMA SECTION
===================================== */

.ctma-whyjoin-section {
    background: var(--ctma-bg);
}

.ctma-sticky-title {
    position: sticky;
    top: 50%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.ctma-sticky-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--ctma-title-color);
}

.ctma-card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards */
.ctma-why-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
}

.ctma-why-card h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ctma-deep-green);
    margin-bottom: 10px;
}

.ctma-why-card p {
    font-size: 15px;
    color: var(--ctma-title-color);
    line-height: 1.6;
}

/* Hover */
.ctma-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* =====================================
   WHO SHOULD JOIN CTMA
===================================== */

.ctma-join-section {
    background: var(--ctma-bg);
}

/* Section Title */
.ctma-join-title {
    color: var(--ctma-title-color);
    font-weight: 700;
    font-size: 38px;
}

/* Card */
.ctma-join-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
}

/* Icon Box */
.ctma-join-icon {
    width: 65px;
    height: 65px;
    background: var(--ctma-light-green);
    color: var(--ctma-deep-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 12px;
    font-size: 26px;
}

/* Heading */
.ctma-join-heading {
    margin: auto !important;
    text-align: center;
    width: 80%;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ctma-title-color);
    margin: 0;
}

/* Hover Effect */
.ctma-join-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.w-we-provide{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
}

.ctma-leader-role {
    font-size: 1.2rem;
}


    /* ===============================
   DESKTOP ONLY LOGO OVERLAP
================================ */
/* @media (min-width: 992px) {


    /* .ctma-navbar {
        position: relative;
    }

        .ctma-logo {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 20%;
        transform: translate(-50%, -30%);
        z-index: 10;
        justify-content: center;
    }

        .ctma-logo img.logo {
        height: 130px;
        width: auto;
        background: #ffffff;
        padding: 0px;
        border-radius: 50%;
    }

    .ctma-nav-links {
        width: 100%;
        justify-content: space-between;
        padding: 0 120px;
    } */
/* ===============================
   CTMA NAVBAR BEHAVIOR
================================ */
@media (min-width: 992px) {

        .ctma-navbar
 {
        width: 98.5%;
        position: relative;
        max-width: 100vw;
        transition: all 0.4s ease;
        z-index: 100;
    }
    /* ===== TOP STATE ===== */
    .ctma-logo {
        padding-top: 0px;
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -40px;
        z-index: 999;
        transition: all 0.4s ease;
        justify-content: center;
    }

    .ctma-logo img {
        width: 130px;
        /* background: #fff; */
        padding: 0;
        border-radius: 50%;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
    }

    /* ===== AFTER SCROLL ===== */
    .ctma-navbar.scrolled {
        position: fixed;
        top: 0;
        left: 0;
        background: #ffffff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        /* padding-top: 10px; */
        /* padding-bottom: 10px; */
    }

    .ctma-navbar.scrolled .ctma-logo {
        /* position: relative; */
        top: 0;
        /* transform: translateX(-50%) scale(0.8); */
    }

    .ctma-navbar.scrolled .ctma-logo img {
        width: 70px;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }
        .ctma-badge-top, .ctma-badge-bottom {
        position: static;
        transform: none;
        display: inline-block;
        margin: 0;
    }
    .ctma-affiliation-section {
    padding: 25px 0;
    text-align: center;
}
}

span.topbar-contact {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}






.ctma-member-grid-section{
background:#3b1e05;
padding:80px 0;
color:#fff;
}

.ctma-member-header{
margin-bottom:50px;
}

.ctma-subtitle{
color:#FFBB1A;
font-size:14px;
display:block;
margin-bottom:10px;
}

.ctma-title{
font-size:42px;
font-weight:500;
}

/* GRID */

.ctma-member-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

/* CARD */

.ctma-member-card{
background:var(--ctma-light-green);
border:1px solid rgba(255,255,255,0.15);
border-radius:16px;
padding:25px;
transition:all .3s ease;
backdrop-filter:blur(6px);
}

.ctma-member-card:hover{
border-color:#C7F08E;
transform:translateY(-6px);
background: var(--ctma-deep-green);
}
.ctma-member-card:hover .ctma-member-services span {
    color: var(--ctma-golden);
    background: #ffffff0d;
}

.ctma-member-grid-section .ctma-title{
    color: #fff !important;
}

/* NAME */

.ctma-member-name {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: var(--ctma-title-color);
    font-weight: 500;
}

/* ADDRESS */

.ctma-member-address{
font-size:14px;
opacity:.85;
margin-bottom:18px;

display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
color: var(--ctma-title-color);
}

/* SERVICES */

.ctma-member-services{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:18px;
}

.ctma-member-services span{
background:#253D03;
color:#C7F08E;
padding:4px 10px;
font-size:12px;
border-radius:20px;
}

/* CTA */

.ctma-member-cta{
color:var(--ctma-title-color);
text-decoration:none;
font-size:14px;
display:inline-flex;
align-items:center;
gap:6px;
transition:.3s;
}

.ctma-member-card:hover .ctma-member-cta{
    color: #fff !important;
}
.ctma-member-card:hover .ctma-member-address{
    color: #fff !important;
}
.ctma-member-card:hover .ctma-member-name{
    color: #fff !important;
}

a.ctma-member-cta {
    font-size: 1rem !important;
}
.ctma-member-cta i{
font-size:12px;
}

.ctma-member-cta:hover{
color:#C7F08E;
}

/* VIEW ALL BUTTON */

.ctma-member-view-all{
margin-top:40px;
}

.ctma-view-btn{
background:#C7F08E;
color:#253D03;
padding:12px 28px;
border-radius:30px;
text-decoration:none;
font-weight:500;
display:inline-block;
transition:.3s;
}

.ctma-view-btn:hover{
background:#FFBB1A;
color:#3D2205;
}

/* RESPONSIVE */

@media (max-width:1200px){

.ctma-member-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media (max-width:992px){

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

}

@media (max-width:600px){

.ctma-member-grid{
grid-template-columns:1fr;
}

.ctma-title{
font-size:32px;
}

}