/* ============================================================
   BASE RESET & VARIABLES
   ============================================================ */
:root {
    --green: #2e7d32;
    --green-light: #e8f5e9;
    --gold: #f4b400;
    --blue: #3498db;
    --dark: #0f172a;
    --gray: #4b5563;
    --nav-h: 70px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: ' Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #151a1e;
    background: #fff;
    overflow-x: hidden;
    width: 100%;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
img { max-width: 100%; display: block; }
p { margin: 0; padding: 0; }


/* ============================================================
   SIDEBAR MENU
   ============================================================ */
.menu-sec {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    background: #fff;
    height: 100%;
    width: 300px;
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(.77,0,.175,1);
    overflow-y: auto;
    padding-bottom: 30px;
    box-shadow: none;
}

@media (max-width: 350px) {
    .menu-sec { width: 100%; }
}

.toggle-menu.menu-sec {
    transform: translateX(0);
    box-shadow: 20px 0 80px rgba(0,0,0,0.15);
}

.menu-togller-sec {
    position: sticky;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #fff;
    z-index: 10;
    padding: 0 15px;
    border-bottom: 1px solid #f0f0f0;
}

.menu-togller-sec button {
    width: 80px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #E2DEF8;
    background: #fff;
    border-radius: 4px;
    transition: background 0.2s;
}

.menu-togller-sec button:hover { background: #f5f5f5; }
.menu-togller-sec button i { margin-left: 6px; }

.menu-sec ul {
    padding: 10px 15px 20px;
}

.menu-sec ul li a {
    display: flex;
    align-items: center;
    padding: 18px 0;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: #202121;
    border-bottom: 1px solid #f0f0f0;
    transition: letter-spacing 0.4s ease;
}

.menu-sec ul li a:hover { letter-spacing: 0.2em; }

/* Overlay */
.menu-body {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1500;
    display: none;
    cursor: pointer;
}

.toggle-menu.menu-body { display: block; }


/* ============================================================
   FIXED NAV
   ============================================================ */
.fixed-nav {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: var(--nav-h);
    top: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 500px) {
    .fixed-nav { height: 60px; }
}

.def-nav,
.addbg-nav.fixed-nav,
.addbg-nav1.fixed-nav {
    background: #fff;
    color: #454545;
    border-color: #EBECEF;
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.site-container {
    position: relative;
    width: 90%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Left nav */
.l-nav {
    position: absolute;
    left: 0;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.l-nav li {
    position: relative;
    height: 100%;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.l-nav .togller-sec {
    border-right: 1px solid rgba(255,255,255,0.3);
}

.def-nav .l-nav .togller-sec,
.addbg-nav.fixed-nav .l-nav .togller-sec,
.addbg-nav1.fixed-nav .l-nav .togller-sec {
    border-color: #EBECEF;
}

.toggler-main {
    position: relative;
    width: 20px;
    height: 30px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.toggler-main span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.def-nav .toggler-main span,
.addbg-nav.fixed-nav .toggler-main span,
.addbg-nav1.fixed-nav .toggler-main span {
    background: #454545;
}

.toggler-main span:nth-child(1) { transform: translateY(-7px); }
.toggler-main span:nth-child(3) { transform: translateY(7px); }

.ttgl-mnu {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.call-btn a {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-btn i { font-size: 18px; }

/* Brand */
.nav-brand {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.nav-brand img { width: 140px; }

.nav-brad-2 { display: none; }

.def-nav .nav-brad-2,
.addbg-nav.fixed-nav .nav-brad-2,
.addbg-nav1.fixed-nav .nav-brad-2 { display: inline-flex; }

.def-nav .nav-brad-1,
.addbg-nav.fixed-nav .nav-brad-1,
.addbg-nav1.fixed-nav .nav-brad-1 { display: none; }

/* Right nav */
.r-nav {
    position: absolute;
    right: 0;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.r-nav li {
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 13px;
    text-transform: uppercase;
    user-select: none;
}

.r-nav .community-btn {
    border-left: 1px solid rgba(255,255,255,0.3);
    padding: 0;
}

.def-nav .r-nav .community-btn,
.addbg-nav.fixed-nav .r-nav .community-btn,
.addbg-nav1.fixed-nav .r-nav .community-btn {
    border-color: #EBECEF;
}

.r-nav .community-btn a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    color: #fff;
    position: relative;
}

.def-nav .r-nav .community-btn a,
.addbg-nav.fixed-nav .r-nav .community-btn a,
.addbg-nav1.fixed-nav .r-nav .community-btn a {
    color: #454545;
}

.cmmt-2 { display: none; width: 28px; }

.def-nav .cmmt-2,
.addbg-nav.fixed-nav .cmmt-2,
.addbg-nav1.fixed-nav .cmmt-2 { display: inline-flex; }

.def-nav .cmmt-1,
.addbg-nav.fixed-nav .cmmt-1,
.addbg-nav1.fixed-nav .cmmt-1 { display: none; }

.r-nav .community-btn a i {
    background: var(--blue);
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 50%;
    margin-top: -5px;
    border-radius: 50%;
    font-size: 9px;
    color: #fff !important;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url("public/frontend/programs/ourprograms/images/softicuprogramsbanner.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
}

.office-tag {
    background: rgba(52,152,219,0.85);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 22px;
    border-radius: 30px;
    letter-spacing: 0.03em;
}

.hero-container h1 {
    font-family:"Poppins"  sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

/* Word cycle */
.word-cycle-wrap {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.word-cycle {
    position: relative;
    height: 90px;
    width: 100%;
}

.word-cycle span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--gold);
    opacity: 0;
    animation: fadeWordInOut 12s infinite;
    white-space: nowrap;
}

.word-cycle span:nth-child(1) { animation-delay: 0s; }
.word-cycle span:nth-child(2) { animation-delay: -3s; }
.word-cycle span:nth-child(3) { animation-delay: -6s; }
.word-cycle span:nth-child(4) { animation-delay: -9s; }

@keyframes fadeWordInOut {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
    5%, 22%  { opacity: 1; transform: translateX(-50%) translateY(0); }
    25%      { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

.hero-p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    line-height: 1.7;
}

.btn {
    padding: 16px 40px;
    background: var(--blue);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    width: auto;
    display: inline-block;
    margin-top: 10px;
}

.btn:hover { background: #2980b9; transform: translateY(-2px); }


/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 80px 5%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 350px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-weight: 600;
}

.tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    border: 1px solid var(--green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--dark);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 14px;
}

.buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.about-btn {
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.primary { background: var(--gold); color: #fff; }
.primary:hover { opacity: 0.88; transform: translateY(-2px); }

.secondary {
    background: transparent;
    border: 1px solid var(--green);
    color: var(--green);
}

.secondary:hover { background: var(--green-light); }


/* ============================================================
   GOALS
   ============================================================ */
.goals {
    background: #f5f5f5;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.goal {
    text-align: center;
    max-width: 700px;
}

.goal h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0;
    line-height: 1.2;
}

.goal p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}

.card-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}

.left { display: flex; flex-direction: column; gap: 20px; }

.card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.card h4 {
    font-size: 11px;
    letter-spacing: 2px;
    color: #9ca3af;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.card p {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.6;
}

.icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.green  { background: #2ecc71; }
.yellow { background: #f1c40f; }
.orange { background: #f39c12; }
.blue   { background: var(--blue); }
.pink   { background: #e84393; }

.right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid transparent;
    transition: border-color 0.25s;
}

.stat-card:hover { border-color: #d1d5db; }

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 13px;
    color: #9ca3af;
    margin: 8px 0 4px;
    line-height: 1.4;
}

.stat-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1b4332;
}


/* ============================================================
   PROGRAMS
   ============================================================ */
.support-goaltag {
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.support-goal {
    text-align: center;
    max-width: 680px;
}

.support-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    border: 1px solid #9ca3af;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.support-goal h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.support-goal p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

.second-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1100px;
}

.second-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 1px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
}

.second-card:hover {
    transform: translateY(-6px);
    border-color: #d1d5db;
}

.image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--green-light);
    color: var(--green);
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.content { padding: 20px; }

.content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.content-btn {
    padding: 10px 18px;
    border: 1px solid #c8e6c9;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    color: var(--green);
    font-weight: 700;
    transition: 0.3s;
}

.content-btn:hover {
    background: var(--green-light);
}

.view-btn {
    display: flex;
    justify-content: center;
}

.second-card-btn {
    padding: 16px 36px;
    border: 1px solid #9ca3af;
    background: transparent;
    border-radius: 10px;
    font-size: 16px;
    color: var(--green);
    font-weight: 600;
    transition: 0.3s;
}

.second-card-btn:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}


/* ========== EXTRA CARDS (hidden until revealed) ========== */
.extra-card {
    display: none;
}
.extra-card.show {
    display: block;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: url(images/Screenshot\ 2025-12-02\ 055722.png) center/cover no-repeat;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-top {
    text-align: center;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    border: 1px solid #9ca3af;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.contact-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.contact-section > .contact-top p {
    color: rgba(255,255,255,0.88);
    font-size: 17px;
    line-height: 1.6;
}

.wrapper-div {
    display: flex;
    gap: 28px;
    background: #f3f4f6;
    border-radius: 16px;
    padding: 28px;
    width: 100%;
    max-width: 900px;
    align-items: stretch;
}

.wrapper-divimg {
    flex: 1;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
}

.wrapper-divimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.wrapper {
    display: flex;
    border-left: 5px solid var(--gold);
    border-radius: 12px;
    padding-left: 8px;
}

.contact-card {
    width: 300px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 500px;
}

.contact-card h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info h4 {
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
    font-weight: 600;
}

.info div {
    display: flex;
    flex-direction: column;
    /* flex: 1; */
}

.info input {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #6b7280;
    outline: none;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.2s;
}

.info input:focus { border-color: var(--blue); }

.info textarea {
    width: 100%;
    padding: 12px;
    height: 100px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    outline: none;
    color: #374151;
    transition: border-color 0.2s;
    display: block;
    margin: 0 auto;
    text-align: left;
}

.info textarea:focus { border-color: var(--blue); }

.icon-email {
      width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
   
    background: linear-gradient(135deg, #ff4d4d, #ff6b6b); 
}
.icon-phone { 
    background: linear-gradient(135deg, #2563eb, #3b82f6);
      width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0
 }

 .icon-message {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
}

.social-section { margin-top: 4px; }

.social-title {
    font-size: 11px;
    letter-spacing: 2px;
    color: #9ca3af;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.social-icons { display: flex; gap: 10px; }

.social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: opacity 0.2s;
}

.social:hover { opacity: 0.82; }

.twitter   { background: #111827; }
.facebook  { background: #1877f2; }
.linkedin  { background: #0a66c2; }
.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b); }

.contact-btn {
    padding: 14px;
    background: var(--gold);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: opacity 0.3s, transform 0.2s;
    margin-top: auto;
}

.contact-btn:hover { opacity: 0.9; transform: translateY(-2px); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #0A142F;
    color: #fff;
    padding: 60px 5% 28px;
    text-align: left;
}

.footer-div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-table-row .contact h4,
.footer-unordered-list h4,
.footer-unordered-list-2 h4,
.footer-logo h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-table-row .contact address {
    font-style: normal;
    font-size: 14px;
    line-height: 2;
    color: #9ca3af;
}

.footer-unordered-list ul li,
.footer-unordered-list-2 ul li {
    margin-bottom: 12px;
}

.footer-unordered-list ul li a,
.footer-unordered-list-2 ul li a {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-unordered-list ul li a:hover,
.footer-unordered-list-2 ul li a:hover {
    color: #fff;
}

.footer-logo img {
    width: 140px;
    margin-bottom: 16px;
    filter: brightness(1.5);
}

.footer-logo p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.8;
}

.social-media-logo {
    display: flex;
    gap: 14px;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.facebook-logo,
.twitter-logo,
.instagram-logo,
.linkedin-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    cursor: pointer;
}

.facebook-logo:hover,
.twitter-logo:hover,
.instagram-logo:hover,
.linkedin-logo:hover {
    background: rgba(255,255,255,0.3);
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Tablet: max 1024px ---- */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-box { min-height: 280px; }

    .about-content h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }

    .card-container {
        grid-template-columns: 1fr;
    }

    .right {
        grid-template-columns: repeat(2, 1fr);
    }

    .second-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-table-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .wrapper-div {
        flex-direction: column;
    }

    .wrapper-divimg {
        max-height: 200px;
    }

    .contact-card {
        width: 100%;
    }
}

/* ---- Mobile landscape: max 768px ---- */
@media (max-width: 768px) {
    :root { --nav-h: 60px; }

    .hero { padding: 100px 20px 60px; min-height: 90vh; }

    .word-cycle-wrap { height: 70px; }
    .word-cycle { height: 70px; }

    .about { padding: 60px 5%; }

    .goals { padding: 60px 5%; gap: 40px; }

    .support-goaltag { padding: 60px 5%; }

    .second-container {
        grid-template-columns: 1fr;
    }

    .second-card-btn { width: auto; padding: 14px 30px; }

    .contact-section { padding: 60px 5%; }

    .wrapper-div {
        padding: 20px;
        gap: 20px;
    }

    .footer { padding: 50px 5% 24px; }

    .footer-table-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .buttons { flex-direction: column; }
    .about-btn { width: 100%; text-align: center; }

    .nav-brand img { width: 120px; }

    .ttgl-mnu { display: none; }
}

/* ---- Mobile portrait: max 500px ---- */
@media (max-width: 500px) {
    .hero { padding: 80px 16px 50px; }

    .hero-container h1 { font-size: 1.8rem; }

    .word-cycle-wrap { height: 60px; }
    .word-cycle { height: 60px; }
    .word-cycle span { font-size: 2.2rem; }

    .hero-p { font-size: 0.95rem; }

    .btn { padding: 14px 28px; font-size: 0.95rem; }

    .about { padding: 50px 4%; }

    .goals { padding: 50px 4%; }

    .goal h1 { font-size: 1.6rem; }

    .support-goaltag { padding: 50px 4%; }

    .support-goal h1 { font-size: 1.5rem; }

    .card-container { grid-template-columns: 1fr; }

    .right { grid-template-columns: 1fr; }

    .stat-card h2 { font-size: 22px; }

    .second-container { grid-template-columns: 1fr; }

    .contact-section { padding: 50px 4%; }

    .contact-section h1 { font-size: 1.7rem; }

    .wrapper-div {
        flex-direction: column;
        padding: 16px;
    }

    .wrapper-divimg { display: none; }

    .contact-card { width: 100%; min-height: auto; padding: 16px 8px; }

    .footer-table-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .r-nav .community-btn a { padding: 0 12px; }
    .r-nav .community-btn a i { right: 10px; }

    .l-nav li { padding: 0 10px; }
    .l-nav .togller-sec { border-right: none; }

    .nav-brand img { width: 110px; }
}

/* ---- Very small: max 360px ---- */
@media (max-width: 360px) {
    .hero-container h1 { font-size: 1.5rem; }
    .word-cycle span   { font-size: 1.8rem; }
    .nav-brand img     { width: 95px; }
}