/* COLOR VARIABLES */
:root {
    --orange-red: #e85625;
    --blue: #0089e0;
    --purple: #320c6c;
    --yellow: #f9d200;
    --orange: #f28203;
}

/* TOP BAR */
body .opcswt-top-bar {
    background: linear-gradient(90deg, #6f42c1, #007bff);
    color: white;
    padding: 8px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}
body .opcswt-contact-info {
    display: flex;
    gap: 18px;
}
body .opcswt-contact-item i {
    font-size: 17px;
    margin-bottom: -3px;
    color: var(--yellow);
    margin-right: 6px;
}
body .opcswt-social-links a {
    color: white;
    margin-left: 15px;
    transition: 0.3s;
}
body .opcswt-social-links a:hover {
    color: var(--yellow);
}

/* NAVBAR */
body .opcswt-navbar {
    background: white;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--orange-red);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* LOGO + NAME */
body .opcswt-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.opcswt-org-main-name {
    font-size: 22px;
    font-weight: bold;
    color: var(--orange-red);
}
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
body .opcswt-org-trust-name {
    font-size: 14px;
    color: #545454;
    font-weight:500 !important;
    letter-spacing: 1px;
}
body .opcswt-contact-item a{
    font-size:15px !important;
}

/* NAV MENU */
body .opcswt-nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    font-weight: 600;
}
body .opcswt-nav-menu a {
    color: var(--purple);
    padding: 8px 4px;
    transition: 0.3s;
     font-size:15px;
    position: relative;
    text-decoration: none !important;
}

/* HOVER UNDERLINE EFFECT */
body .opcswt-nav-menu a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-red), var(--yellow));
    transition: 0.3s;
}
body .opcswt-nav-menu a:hover:after {
    width: 100%;
}

/* SUBMENU */
body .opcswt-submenu {
    position: absolute;
    background: white;
    list-style: none;
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 12px;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 99;
}

/* Show submenu when Nav Item has "active" class (CLICK) */
.opcswt-nav-item.active > .opcswt-submenu {
    display: block !important;
}
/* Add arrow only to items that have submenu */
.opcswt-nav-item.has-submenu > .opcswt-nav-link a::after {
    content: "\f078"; /* FontAwesome chevron-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 6px;
    font-size: 12px;
    transition: 0.3s;
}

/* Rotate arrow when submenu is open */
.opcswt-nav-item.active > .opcswt-nav-link a::after {
    transform: rotate(180deg);
}

 

body .opcswt-submenu li a {
    display: block;
    font-size:14px !important;
    padding: 8px 10px !important;
}
body .opcswt-submenu li a:hover {
    background-color: var(--blue);
    color: white;
}

/* DONATE BUTTON */
body .opcswt-cta-button {
    background: linear-gradient(90deg, var(--yellow), var(--orange-red));
    padding: 10px 20px !important;
    color: #320c6c !important;
    font-size:15px;
    color:#fff !important;
    border-radius: 6px;
    font-weight: 700;
}
body .opcswt-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* MOBILE MENU */
body .opcswt-menu-toggle {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    body .opcswt-nav-menu {
        display: none;
    }
    body .opcswt-menu-toggle {
        display: block;
        cursor: pointer;
    }
    body .opcswt-menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--orange-red);
        margin: 5px 0;
    }
}




/* HERO MAIN */
.ngo-hero {
    position: relative;
    width: 100%;
    height: 95vh;
    background: url('https://aiondemo.in/html/om_prakash/assets/images/new/banner.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    padding: 0 6%;
    color: #fff;
    overflow: hidden;
}

/* DARK OVERLAY */
.ngo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.80), rgba(0,0,0,0.05));
    z-index: 1;
}

/* CONTENT */
.ngo-hero-content {
    margin-bottom:40px;
    position: relative;
    z-index: 5;
    max-width: 720px;
    animation: fadeSlideUp 1.1s ease-out forwards;
}

@keyframes fadeSlideUp {
    0% {opacity: 0; transform: translateY(35px);}
    100% {opacity: 1; transform: translateY(0);}
}

.ngo-hero h1 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.22;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
.ngo-hero h1 span {
    background: linear-gradient(45deg, #ffb347, #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 18px rgba(255, 200, 80, 0.55); /* soft glow */
}


.ngo-hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: .95;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* BUTTONS */
.ngo-hero-buttons .btn {
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    margin-right: 14px;
    transition: .3s ease-out;
    font-weight: 600;
}

/* Primary */
.btn-primary {
    background: linear-gradient(45deg,#f07f2f,#ff9a3c);
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(240,127,47,0.45);
}
.btn-primary:hover {
    transform: translateY(-4px);
}

/* Secondary */
.btn-secondary {
    background: linear-gradient(45deg, var(--purple), var(--blue)); 
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(0,137,224,0.45);
}
.btn-secondary:hover {
    transform: translateY(-4px);
}

/* Outline */
.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* TOP SHAPE */
.ngo-shape-top {
    position: absolute;
    top: -90px;
    left: -110px;
    width: 280px;
    height: 280px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.37;
    z-index: 2;
    filter: blur(35px);
}

/* BOTTOM ORANGE SHAPE */
.ngo-shape-bottom {
    position: absolute;
    bottom: -10px;
    right: -150px;
    width: 330px;
    height: 330px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.50;
    filter: blur(40px);
    z-index: 2;
}

/* LEFT GLOW */
.ngo-glow-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 380px;
    height: 380px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(90px);
    z-index: 2;
}

/* RIGHT GREEN GLOW */
.ngo-glow-right {
    position: absolute;
    top: 18%;
    right: -120px;
    width: 450px;
    height: 450px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.37;
    filter: blur(100px);
    z-index: 2;
}

/* TRIBAL ART FLOATING ELEMENT */
.ngo-tribal-art {
    position: absolute;
    right: 5%;
    bottom: 12%;
    width: 280px;
    height: 280px;
    background: url('https://aiondemo.in/html/om_prakash/assets/images/new/tribal.png') no-repeat center/contain;
    opacity: 0.30;
    z-index: 4;
    animation: floatArt 5s ease-in-out infinite alternate;
}

@keyframes floatArt {
    0% { transform: translateY(0); opacity: 0.25; }
    100% { transform: translateY(-20px); opacity: 0.38; }
}

/* WAVE */
.ngo-wave {
    position: absolute;
    bottom: -20px;
    left: 0px; 
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f8faff" d="M0,256C240,300,480,300,720,256C960,212,1200,212,1440,256V320H0Z"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 3;
} 



.about-section {
    padding: 80px 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

.about-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 90px;
}

.about-left h5 {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #e76d43;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-left h2 {
    font-size: 31px;
    color: #222;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    position: relative;
}

.about-left h2 span { 
    background: linear-gradient(45deg, #ffb347, #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 18px rgba(255, 200, 80, 0.55); /* soft glow */
 

}

/* Stylish animated underline */
.about-left h2::after {
    content: "";
    width: 75px;
    height: 5px;
    background: linear-gradient(90deg, #e76d43, #ff9d6e);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 10px;

    /* Animation */
    animation: underlineGrow 1.2s ease forwards;
    transform: scaleX(0);
    transform-origin: left;
}

/* Animation keyframes */
@keyframes underlineGrow {
    to {
        transform: scaleX(1);
    }
}

 
.about-text {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-info p {
    background: #fff;
    padding: 10px 15px;
    border-left: 4px solid #e76d43;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,137,224,0.2);
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--purple), var(--blue)); 
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: linear-gradient(45deg, var(--purple), var(--blue));
     color: white;
}
.about-right {
    position: relative;
    width: 420px;
    padding-top: 30px;
}

/* Main big image */
.about-right .img1 {
    width: 350px;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.18);
    position: relative;
     border:4px solid #f28203;
    z-index: 4;
    top: -45px;
    right: -5px;
    transition: 0.4s ease;
}

/* Hover effect for premium feel */
.about-right .img1:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* Behind rotated soft image */
.about-right .img2 {
    width: 280px;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    position: absolute;
    border:4px solid #f7d794;
    bottom: -5px;
    right: -40px;
    transform: rotate(6deg);
    z-index: 5;
    opacity: 0.75;
    transition: 0.4s ease;
}

/* Slight movement on hover */
.about-right:hover .img2 {
    transform: rotate(4deg) translateY(-2px);
    opacity: 0.9;
}

 
 

/* Background soft circle shape */
.shape-circle {
    width: 360px;
    height: 360px;
    background: linear-gradient(135deg, #ffd8c2, #ffece2);
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 1;
    filter: blur(2px);
}

@media(max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-right img {
        width: 80%;
    }

    .about-info p {
        text-align: left;
    }
}


/* SECTION */
.focus-section {
    padding: 80px 5%;
    background: #fff;
    position: relative;
}

/* Section Glow Decoration */
.focus-section::before {
    content: "";
    position: absolute;
    top: 50px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255,165,90,0.25);
    border-radius: 50%;
    filter: blur(80px);
}

/* HEADER */
.focus-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.focus-header h5 {
    font-size: 15px;
    font-weight: 600;
    color: #e76d43;
    text-transform: uppercase;
    letter-spacing: 1px;
   margin-bottom: 11px
}

.focus-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 10px;
}

.focus-header h2 span {
    background: linear-gradient(90deg, #e76d43, #ffb067);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.focus-header p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}
 

/* GRID */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

/* CARD DESIGN */
.focus-card {
    background: rgba(255, 255, 255, 0.80);
    padding: 25px 25px;
    border-radius: 18px;
    text-align: center;
     border: 1px solid rgba(0,137,224,0.8);
    backdrop-filter: blur(6px);
    transition: 0.35s;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* ICON */
.focus-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 16px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:6px solid #f9d200;

    background: linear-gradient(135deg, #ff914d, #ffbe6f);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255,145,77,0.7);
    transition: 0.4s;
}

.focus-card:hover .focus-icon {
    transform: scale(1.12) rotate(3deg);
}

/* TITLE */
.focus-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

/* TEXT */
.focus-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* BUTTON */
.focus-button {
    margin: 50px auto 0;
    display: block;
    padding: 14px 32px;
    font-size: 17px;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--purple), var(--blue));
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 6px 18px rgba(0,137,224,0.35);
}

.focus-button i {
    margin-left: 8px;
    transition: 0.3s;
}

.focus-button:hover i {
    transform: translateX(4px);
}

.focus-button:hover {
    transform: translateY(-3px);
}




.trust-compliance {
    padding: 70px 0;
    background: linear-gradient(to bottom right, #ffffff, #f4f8ff);
}

.trust-heading {
    text-align: center;
    margin-bottom: 40px;
}

.trust-heading h5 {
    text-transform: uppercase;
    font-size: 15px;
    color: #e76d43;
    font-weight: 600;
   margin-bottom: 11px
}

.trust-heading h2 {
    font-size: 30px;
    font-weight: 800;
}

.trust-heading p {
    max-width: 700px;
    margin: 10px auto;
    font-size: 15px;
    color: #555;
}

/* 5 cards in one row */
.trust-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: auto;
}

/* Individual card */
.trust-card {
    text-align: center;
    position: relative;
    padding: 25px 15px;
    background: rgba(255,255,255,0.6);
    border-radius: 14px;
    border: 1px solid rgba(0,137,224,0.8);
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Ribbon */
.trust-ribbon {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e76d43;
    color: #fff;
    padding: 3px 14px;
    font-size: 11px;
    border-radius: 4px;
}

.trust-ribbon.blue {background:#3c8aff;}
.trust-ribbon.green {background:#28b463;}
.trust-ribbon.gold {background:#c79f35;}
.trust-ribbon.purple {background:#8e44ad;}

/* Icon */
.trust-icon {
    width: 65px;
    height: 65px;
    margin: 18px auto 12px;
    border-radius: 50%;
     border:6px solid #f9d200;
    background: linear-gradient(135deg, #e76d43, #ffaa7a);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 27px;
    box-shadow: 0 10px 20px rgba(231,109,67,0.28);
}

.trust-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.trust-card p {
    font-size: 14px;
    color: #666;
}

/* Button */
.trust-btn-box {
    text-align: center;
    margin-top: 40px;
}

.trust-btn { 
    color: #fff;
    padding: 12px 38px;
   border-radius: 8px;
    background: linear-gradient(45deg, var(--purple), var(--blue));
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.trust-btn:hover { 
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,137,224,0.3);
}




.projects-section {
  padding: 60px 0 90px;
  background: #eaf7ff;
}

.projects-header {
  text-align: center;
  margin-bottom: 40px;
}

.projects-header h5 {
    text-transform: uppercase;
  color: #d35400;
  font-weight: 600;
  margin-bottom: 11px
  font-size: 15px;
}

.projects-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
}

.projects-header p {
  color: #555;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.project-card {
  background: #fff;
  border-radius: 15px;
  border-bottom:4px solid #f9d200;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: .3s;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.project-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.project-card h3 {
  font-size: 20px;
  margin: 15px 25px;
  font-weight: 600;
  color: #333;
}

.project-card p {
  font-size: 15px;
  margin: 0 25px 35px 25px;
  color: #666;
  line-height: 1.6;
}

.projects-btn {
  text-align: center;
  margin-top: 35px;
}

.project-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #d35400;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.project-btn:hover {
  background: #c0392b;
}
.counter-section {
  position: relative;
  padding: 90px 0;
  background: url('https://aiondemo.in/html/om_prakash/assets/images/new/ab2.jpeg')
    no-repeat center center/cover;
  color: #fff;
}

.counter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(3px);
}

.counter-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  z-index: 2;
}

.counter-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 20px;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.counter-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  background: rgba(255, 255, 255, 0.18);
}

.counter-item h2 {
  font-size: 30px;
  color:#f9d200;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
.counter-item h2::after {
  content: "+";
  margin-left: 3px;
  font-weight: 900;
  font-size: 32px;
  color: #f9d200;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.counter-item p {
  font-size: 17px;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .counter-container {
    grid-template-columns: 1fr;
  }
}




.support-left-section {
    padding: 90px 0;
    background: #fff;
}

.support-wrapper {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
    position: relative;
}

/* Curved Shape Behind Image */
.support-image-block {
    position: relative;
}

.support-shape {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 430px;
    height: 430px;
    border:15px solid #f7d794;
    background: linear-gradient(135deg, #ffb75e, #ff8c00);
    border-radius: 50% 40% 60% 40%;
    z-index: 1;
    filter: blur(2px);
}

.support-image-block img {
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    object-fit: cover;
}

/* Right Content */
.support-content h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 0px;
    color: #222;
}

.support-intro {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.support-list {
    margin-bottom: 30px;
}

.support-item {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-item i {
        width: 32px;
    text-align: center;
    font-size: 14px;
    color: #ff8c00;
    border:1px solid #bcdff4;
    background: #fff;
    padding: 7px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255,140,0,0.3);
}

.support-main-btn {
    display: inline-block;
    padding: 12px 32px;
       background: linear-gradient(45deg, var(--purple), var(--blue));
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.support-main-btn:hover {
     color: #fff;
       background: linear-gradient(45deg, var(--purple), var(--blue));
}

/* Responsive */
@media (max-width: 992px) {
    .support-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .support-item {
        justify-content: center;
    }

    .support-image-block {
        margin-bottom: 30px;
    }

    .support-shape {
        left: 50%;
        transform: translateX(-50%);
    }
}



body .opcsw-footer{
        margin-top: 0px;
        border-top: 4px solid var(--orange-red);
        background: linear-gradient(90deg, #6f42c1, #007bff);
}
body .opcsw-tagline { 
    font-size: 14px;
}
body .opcsw-contact-text {
    font-size: 14px;
}
body .opcsw-copyright{
    font-size: 14px;
}
body .opcsw-footer-column h3{
     font-size: 16px;
}

body .opcsw-footer-container {
    max-width: 1350px;
}














body .opcsw-news-section {
    padding: 80px 80px;
    background: #f8faff;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

 
.news-header h5 {
    text-transform: uppercase;
  color: #d35400;
  font-weight: 600;
  margin-bottom: 11px
  font-size: 15px;
}

.news-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
}
.news-header p {
    width: 60%;
    margin: 10px auto 0;
    font-size: 17px;
    color: #555;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.news-card {
    border-bottom:4px solid #0089e0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.news-img {
    position: relative;
}

.news-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.news-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #e76d3b;
    padding: 6px 12px;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.news-content {
    padding: 20px 25px 25px;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.news-btn {
    color: #e76d3b;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.news-btn i {
    margin-left: 5px;
}

 

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}



.contact-section-new {
    position: relative;
    padding: 68px 0;
    background: #fafafa;
    overflow: hidden;
}

/* --- SHAPES --- */
.shape-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.55;
}

/* Main gradient blob */
.shape1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #ff9a3c, #ff5e00);
    top: -80px;
    left: -120px;
}

/* Right side soft yellow */
.shape2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ffe29f, #ffcc00);
    bottom: -60px;
    right: -100px;
}

/* Middle soft glow */
.shape3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffd5b5, #ff9b47);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CONTAINER */
.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 0 30px;
    position: relative;
    z-index: 3;
}

/* LEFT INFO */
.contact-left h5 {
    color: #ff6a00;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-left h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 10px 0 25px;
    line-height: 1.3;
    color: #222;
}

.contact-left h2 span {
    color: #ff6a00;
}

/* CONTACT LIST */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.contact-list li {
    font-size: 15px;
    margin-bottom: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 500;
    color: #333;
    background: #ffffffc5;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.09);
    transition: all 0.3s ease;
    border-left: 5px solid #0089e0;
}

.contact-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 25px rgba(255, 136, 0, 0.18);
    background: #fff7ed;
}

/* Gradient Icon Style */
.contact-list i {
    width:20px;
    font-size: 22px;
    background: linear-gradient(45deg, #ff6a00, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 2px;
}


/* BUTTONS */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-btn-new {
    padding: 16px 25px;
    background: linear-gradient(45deg, #320c6c, #0089e0);
    color: #fff;
    font-size: 18px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255, 122, 0, 0.3);
    transition: 0.3s ease;
}

.contact-btn-new:hover {
     background: linear-gradient(45deg, #320c6c, #0089e0);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.45);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-list li {
        justify-content: center;
    }
    .contact-right {
        max-width: 300px;
        margin: auto;
    }
}

.about-info p{
    font-size: 15px;
}
.opcsw-footer-column a{
    font-size:15px !important;
}




/*new css*/
   :root {
            --orange-red: #e85625;
            --blue: #0089e0;
            --purple: #320c6c;
            --yellow: #f9d200;
            --orange: #f28203;
            --white: #ffffff;
            --light-gray: #f5f5f5;
        }

        /* Breadcrumb Wrapper */
        .ngo-breadcrumb-wrapper {
            min-height: 320px;
            background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Decorative Background Patterns */
        .ngo-breadcrumb-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .ngo-breadcrumb-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.15), transparent);
            pointer-events: none;
        }

        /* Floating Shapes */
        .ngo-floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: ngo-float 20s infinite ease-in-out;
        }

        .ngo-floating-shape:nth-child(1) {
            width: 80px;
            height: 80px;
            background: var(--yellow);
            top: 10%;
            left: 15%;
            animation-delay: 0s;
        }

        .ngo-floating-shape:nth-child(2) {
            width: 60px;
            height: 60px;
            background: var(--blue);
            top: 60%;
            right: 20%;
            animation-delay: 5s;
        }

        .ngo-floating-shape:nth-child(3) {
            width: 40px;
            height: 40px;
            background: var(--orange-red);
            bottom: 20%;
            left: 25%;
            animation-delay: 10s;
        }

        @keyframes ngo-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .ngo-breadcrumb-container {
            max-width: 1200px;
            width: 100%;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }

        /* Breadcrumb Navigation */
        .ngo-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
            opacity: 0;
            animation: ngo-fadeInUp 0.8s ease forwards 0.2s;
        }

        @keyframes ngo-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .ngo-breadcrumb-item {
            display: flex;
            align-items: center;
            font-size: 15px;
            font-weight: 500;
        }

        .ngo-breadcrumb-link {
            color: var(--white);
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ngo-breadcrumb-link:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .ngo-breadcrumb-link:focus {
            outline: 3px solid var(--white);
            outline-offset: 3px;
        }

        .ngo-breadcrumb-link:active {
            transform: translateY(-1px) scale(1.02);
        }

        /* Home Icon */
        .ngo-breadcrumb-home-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .ngo-breadcrumb-link:hover .ngo-breadcrumb-home-icon {
            transform: scale(1.2) rotate(-5deg);
        }

        /* Separator */
        .ngo-breadcrumb-separator {
            color: rgba(255, 255, 255, 0.6);
            font-size: 20px;
            margin: 0 4px;
            user-select: none;
            font-weight: 300;
        }

        /* Current Page */
        .ngo-breadcrumb-current {
            color: var(--white);
            font-weight: 700;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            cursor: default;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        /* Page Title Section */
        .ngo-page-title {
            text-align: center;
            padding-top: 24px;
            border-top: 2px solid rgba(255, 255, 255, 0.25);
            opacity: 0;
            animation: ngo-fadeInUp 0.8s ease forwards 0.4s;
        }

        .ngo-page-title h2 {
            font-size: 3rem;
            color: var(--white);
            font-weight: 700;
            text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .ngo-page-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
        }

        /* Impact Badge */
        .ngo-impact-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            color: var(--purple);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            animation: ngo-pulse 2s infinite;
        }

        @keyframes ngo-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
   /* Our Journey Section */
        .journey-section {
            background-color: var(--white);
            border-radius: 10px;
            padding: 3rem;
            margin: 3rem auto;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            color: var(--purple);
            margin-bottom: 1.5rem;
            font-size: 2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--orange-red), var(--orange));
            border-radius: 2px;
        }
        
        
        .section-title1 {
                font-weight: 600;
    color: var(--purple);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
    text-align: center;   /* Center text */
}

.section-title1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;             /* Move to center */
    transform: translateX(-50%);  /* Perfect center */
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--orange-red), var(--orange));
    border-radius: 2px;
}


        .journey-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .registration-info {
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 2rem;
            margin-top: 2rem;
        }

        .registration-info h3 {
            color: var(--blue);
            margin-bottom: 1.5rem;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
        }

        .info-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: var(--purple);
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(50, 12, 108, 0.1);
        }

        .info-content strong {
            color: var(--purple);
        }

        /* Timeline */
        .journey-section .timeline {
            margin-top: 3rem;
            position: relative;
        }

        .journey-section .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--blue), var(--purple));
            border-radius: 2px;
        }

        .journey-section .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 60px;
        }

        .journey-section .timeline-year {
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--orange);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            z-index: 1;
        }

        .journey-section .timeline-content {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .journey-section .timeline-content h4 {
            color: var(--purple);
            margin-bottom: 0.5rem;
        }
        
        
        
          .gallery-section {
  padding: 60px 20px;
  background: #f9fafb;
}
 

/* Filter Buttons */
.gallery-filters {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px 18px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(45deg, #ff7a18, #af002d);
  color: #fff;
  border-color: transparent;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 260px);
  gap: 25px;
  justify-content: center;   /* Center items */
}

/* Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Zoom Effect */
.gallery-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

/* Show Title */
.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  margin: 0;
  font-size: 18px;
}
         .reports-section .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

         .reports-section .section-title {
            font-size: 2.5rem;
            color: var(--purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

         .reports-section .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--orange);
        }

         .reports-section .section-intro {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #555;
        }

         .reports-section .reports-controls {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 30px;
        }

       
         .reports-section .reports-list {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

         .reports-section .report-header {
            display: grid;
            grid-template-columns: 3fr 2fr 1fr 1fr;
            padding: 15px 20px;
            background-color: var(--purple);
            color: var(--white);
            font-weight: 600;
        }

         .reports-section .report-row {
            display: grid;
            grid-template-columns: 3fr 2fr 1fr 1fr;
            padding: 20px;
            border-bottom: 1px solid #eee;
            align-items: center;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

         .reports-section .report-row.visible {
            opacity: 1;
            transform: translateY(0);
        }

         .reports-section .report-row:hover {
            background-color: rgba(50, 12, 108, 0.03);
        }

         .reports-section .report-title {
            font-weight: 600;
            color: var(--purple);
            margin-bottom: 5px;
        }

         .reports-section .report-purpose {
            color: #666;
            font-size: 0.9rem;
        }

         .reports-section .report-year {
            display: inline-block;
            padding: 4px 10px;
            background-color: var(--light-gray);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--purple);
        }

         .reports-section .file-icon {
            font-size: 1.8rem;
            color: var(--orange-red);
        }

         .reports-section .download-btn {
            padding: 8px 15px;
            background-color: var(--blue);
            color: var(--white);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            justify-self: end;
        }

         .reports-section .download-btn:hover {
            background-color: #0070c0;
        }

         
         

        @media (max-width: 768px) {
             .reports-section .report-header {
                display: none;
            }

             .reports-section .report-row {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 20px;
            }

             .reports-section .report-row > div {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

             .reports-section .report-row > div::before {
                content: attr(data-label);
                font-weight: 600;
                color: var(--purple);
            }

             .reports-section .file-icon,  .reports-section .download-btn {
                justify-self: start;
            }

             .reports-section .reports-controls {
                justify-content: center;
            }

           
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.reports-section {  
            padding: 60px 20px;
        }




  .contact-section {
  padding: 60px 20px;
  background: #f4f8f6;
  font-family: Arial, sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1d3c34;
}

.contact-header p {
  color: #555;
  max-width: 600px;
  margin: auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2a7a6b;
}

.btn-primary {
  background: #2a7a6b;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #225e53;
}
.privacy-note {
  font-size: 12px;
  color: #777;
  margin-top: 12px;
}
.contact-right h5 {
    color: #ff6a00;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.contact-right h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 10px 0 10px;
    line-height: 1.3;
    color: #222;
}
.contact-right h2 span {
    color: #ff6a00;
}
.contact-right p{
    margin-bottom:20px;
}
        
           /* Mission & Vision Section */
        .mission-vision-section {
            background-color: var(--white);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
                margin-top: 41px;

        }

        .mission-vision-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, 
                var(--orange-red) 0%, 
                var(--blue) 25%, 
                var(--purple) 50%, 
                var(--yellow) 75%, 
                var(--orange) 100%);
        }
 

        /* MV Grid - Split Layout */
        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .mission-block, .vision-block {
            background: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .mission-block:hover, .vision-block:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .mission-block {
            border-left: 5px solid var(--blue);
        }

        .vision-block {
            border-left: 5px solid var(--purple);
        }

        .mv-icon {
            font-size: 3rem;
            width: 80px;                  /* Fixed width */
    height: 80px;  
    text-align: center;
            margin-bottom: 0px;
            display: inline-block;
            padding: 15px;
            border-radius: 50%;
            background: rgba(0, 137, 224, 0.1);
            color: var(--blue);
        }

        .vision-block .mv-icon {
            background: rgba(50, 12, 108, 0.1);
            color: var(--purple);
        }

        .mv-block h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .mv-block p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        /* Trust Row */
        .mission-vision-section .trust-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .mission-vision-section .trust-card {
            background: var(--white);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--orange);
        }

        .mission-vision-section .trust-card:nth-child(2) {
            border-top-color: var(--blue);
        }

        .mission-vision-section .trust-card:nth-child(3) {
            border-top-color: var(--orange-red);
        }

        .mission-vision-section .trust-card:nth-child(4) {
            border-top-color: var(--yellow);
        }

        .mission-vision-section .trust-card:nth-child(5) {
            border-top-color: var(--purple);
        }

        .mission-vision-section .trust-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .mission-vision-section .trust-ribbon {
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--orange);
            color: white;
            padding: 5px 35px;
            transform: rotate(45deg);
            font-size: 0.7rem;
            font-weight: bold;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .mission-vision-section .trust-ribbon.blue {
            background: var(--blue);
        }

        .trust-ribbon.green {
            background: var(--orange-red);
        }

        .mission-vision-section .trust-ribbon.gold {
            background: var(--yellow);
            color: var(--text-dark);
        }

        .mission-vision-section .trust-ribbon.purple {
            background: var(--purple);
        }

        .mission-vision-section .trust-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--orange);
        }

        .mission-vision-section .trust-card:nth-child(2) .trust-icon {
            color: var(--blue);
        }

        .mission-vision-section .trust-card:nth-child(3) .trust-icon {
            color: var(--orange-red);
        }

        .mission-vision-section .trust-card:nth-child(4) .trust-icon {
            color: var(--yellow);
        }

        .mission-vision-section .trust-card:nth-child(5) .trust-icon {
            color: var(--purple);
        }

        .mission-vision-section .trust-card h3 {
            color: var(--purple);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .mission-vision-section .trust-card p {
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        /* Focus Areas */
        .mission-vision-section .focus-section {
            margin-top: 3rem;
        }

        .mission-vision-section .focus-title {
            color: var(--purple);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            text-align: center;
        }

       .mission-vision-section .focus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .mission-vision-section .focus-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border-left: 4px solid var(--orange-red);
        }

        .focus-card:nth-child(2) {
            border-left-color: var(--blue);
        }

        .mission-vision-section .focus-card:nth-child(3) {
            border-left-color: var(--purple);
        }

        .mission-vision-section .focus-card:nth-child(4) {
            border-left-color: var(--yellow);
        }

       .mission-vision-section .focus-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .mission-vision-section .focus-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .mission-vision-section .focus-card:nth-child(1) .focus-icon {
            color: var(--orange-red);
        }

        .mission-vision-section .focus-card:nth-child(2) .focus-icon {
            color: var(--blue);
        }

        .mission-vision-section .focus-card:nth-child(3) .focus-icon {
            color: var(--purple);
        }

        .mission-vision-section .focus-card:nth-child(4) .focus-icon {
            color: var(--yellow);
        }

        .mission-vision-section .focus-card h4 {
            color: var(--purple);
            margin-bottom: 0.5rem;
        }

        /* Values Section */
        .values-section {
            margin-top: 3rem;
            background-color: var(--light-gray);
            border-radius: 10px;
            padding: 2.5rem;
        }

        .values-title {
            color: var(--purple);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            text-align: center;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .value-item {
            text-align: center;
            padding: 1.5rem;
        }

        .value-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--blue);
        }

        .value-item h4 {
            color: var(--purple);
            margin-bottom: 0.5rem;
        }

        /* CTA */
        .cta-container {
            text-align: center;
            margin-top: 3rem;
        }

        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
            color: var(--white);
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Responsive */
        @media (max-width: 768px) { 
            .mission-vision-section {
                padding: 2rem;
            }
            
            .mv-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .trust-row {
                grid-template-columns: 1fr;
            }
            
            .focus-grid {
                grid-template-columns: 1fr;
            }
        }


     .programs-section {  
            padding: 80px 20px;
        }

       

         .programs-section .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Vertical line */
         .programs-section .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            background: var(--blue);
            border-radius: 2px;
        }

         .programs-section .timeline-item {
            position: relative;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

         .programs-section .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

         .programs-section .timeline-content {
            position: relative;
            width: calc(50% - 40px);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            background: var(--white);
        }

         .programs-section .timeline-item:nth-child(odd) .timeline-content {
            left: 0;
        }

         .programs-section .timeline-item:nth-child(even) .timeline-content {
            left: calc(50% + 40px);
        }

        /* Timeline node */
         .programs-section .timeline-node {
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            border: 4px solid var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 0 0 8px var(--light-gray);
        }

         .programs-section .timeline-node i {
            font-size: 1.2rem;
            color: var(--blue);
        }

        /* Content styling */
         .programs-section .program-title {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

         .programs-section .program-title h3 {
            font-size: 1.4rem;
            color: var(--purple);
            margin-left: 10px;
        }

         .programs-section .program-title i {
            font-size: 1.3rem;
            color: var(--orange);
        }

         .programs-section .program-description {
            color: #555;
            font-size: 1rem;
        }

        /* Background colors for alternating items */
         .programs-section .timeline-item:nth-child(odd) .timeline-content {
            background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
        }

         .programs-section .timeline-item:nth-child(even) .timeline-content {
            background: linear-gradient(135deg, #f9f9f9 0%, var(--white) 100%);
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
             .programs-section .timeline::before {
                left: 30px;
            }

             .programs-section .timeline-content {
                width: calc(100% - 80px);
                left: 80px !important;
            }

             .programs-section .timeline-node {
                left: 30px;
            }

            
        }

        @media (max-width: 480px) {
            .programs-section programs-section {
                padding: 50px 15px;
            }

             .programs-section .timeline-content {
                width: calc(100% - 60px);
                left: 60px !important;
                padding: 20px;
            }

             .programs-section .timeline-node {
                width: 40px;
                height: 40px;
            }

             .programs-section .program-title h3 {
                font-size: 1.2rem;
            }
        }
        
        
        
        
        
         .program-title h3 {
        margin-top: 7px;
    }
     .team-contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
}

.contact-btn i {
    font-size: 14px;
}

/* Email Button */
.email-btn {
    background: linear-gradient(135deg, #4e73df, #224abe);
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(34, 74, 190, 0.3);
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, #1cc88a, #13855c);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(19, 133, 92, 0.3);
}






    /* TEAM GRID */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .team-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(50, 12, 108, 0.8));
            padding: 1rem;
            color: var(--white);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .team-card:hover .card-overlay {
            transform: translateY(0);
        }

        .card-content {
            padding: 1.5rem;
        }

        .card-content h3 {
            color: var(--purple);
            margin-bottom: 0.5rem;
            font-size: 22px;
        }

        .card-role {
            color: var(--orange-red);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 15px;
        }

        .card-focus {
            display: inline-block;
            background-color: var(--yellow);
            color: var(--dark-gray);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 1rem;
        }

        .card-bio {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            color: var(--blue);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: var(--purple);
        }


     .legal-section {  
            padding: 60px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h1 {
            font-size: 2.5rem;
            color: var(--purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--orange-red);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .legal-section .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .legal-section .card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .legal-section .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .legal-section .card-icon {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(90deg, var(--yellow), var(--orange-red));
            color: white;
            font-size: 2.5rem;
        }

        .legal-section .card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .legal-section .card h3 {
            color: var(--purple);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .legal-section .card-details {
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .legal-section .card-details p {
            margin-bottom: 8px;
            color: #555;
        }

        .legal-section .card-details strong {
            color: var(--dark-gray);
        }

        .legal-section .btn {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(45deg, var(--purple), var(--blue));
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            text-align: center;
            transition: background 0.3s ease;
            text-decoration: none;
            margin-top: auto;
        }





.modal-dialog {
        max-width: 850px !important; 
    } 
/* Glassmorphism Background */
.chairman-popup {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 20px !important;
    color: #fff;
    border:5px solid #ffb347 !important;
    padding: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: popupZoom 0.5s ease;
}

/* Title */
.popup-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Text */
.popup-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Signature Wrapper */
.popup-sign {
    margin-top: 30px;
    text-align: center;
}

/* Thank you text */
.thanks-text {
    font-size: 15px;
    margin-bottom: 5px;
}

/* Warm regards */
.regards {
    font-style: italic;
    color: #f1f1f1;
    margin-bottom: 15px;
}

/* Signature Card */
.signature-box {
    margin-bottom:10px;
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}

/* Name Styling */
.sign-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

/* Title */
.sign-title {
    font-size: 14px;
    opacity: 0.85;
    margin-top: 3px;
}

/* Organization */
.sign-org {
    color: #ffde59;
    font-weight: 700;
    font-size: 13px;
    font-style: italic;
    opacity: 0.8;
    margin-top: 5px;
}


/* Button Style */
.chairman-popup .btn-light {
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.chairman-popup .btn-light:hover {
    background: #fff;
    color: #2a5298;
    transform: scale(1.05);
}

/* Animation */
@keyframes popupZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Dark background blur */
.modal-backdrop.show {
    opacity: 0.85;
}

/* Section Background */
.trustees-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f9f4, #ffffff);
}

/* Header */
.trustees-section .section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #2c7a2c;
    margin-bottom: 15px;
}

.trustees-section .section-header p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Trustee Card */
.trustees-section .trustee-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.trustees-section .trustee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Decorative Top Border */
.trustees-section .trustee-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
        background: linear-gradient(90deg, var(--yellow), var(--orange-red)); 
}

/* Trustee Info */
.trustees-section .trustee-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.trustees-section .position {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #6148C4;
    margin-bottom: 15px;
}

.trustees-section .trustee-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}




      
        
        




@media only screen and (min-width : 320px) and (max-width : 480px)  {
    .ngo-page-title h2 {
    font-size: 22px !important;
    }
    .ngo-breadcrumb-current { 
    padding: 4px 10px !important;
    }
     .ngo-breadcrumb-link { 
    padding: 4px 10px !important;
    }
    
 .trust-row { 
    grid-template-columns: repeat(2, 2fr) !important; 
    max-width: 100% !important;
 }
 .opcsw-hero-content { 
    width: 80%; 
}
 .carousel-control-next, .carousel-control-prev { 
    z-index: 99;
 }
 
 .opcsw-hero-content h1 {
    font-size: 21px !important;
 }
 .opcsw-hero-content p {
    font-size: 15px  !important;
    margin: 10px 0 20px  !important;
}
 .ngo-hero p {
    font-size: 15px !important; 
    margin-bottom: 25px !important;
 }
 .about-left h5 {
    font-size: 15px !important;
    letter-spacing: 2px !important; 
    margin-bottom: 11px !important;
}
    .about-left h2::after {
        left: 0% !important; 
    }
    .opcswt-mobile-nav-link { 
    padding: 9px 14px !important; 
    font-size: 15px !important;
    }
    .opcswt-mobile-contact-item { 
    gap: 3px !important; 
    font-size: 13px !important;
}
.opcswt-mobile-nav-header { 
    padding: 0 5px 5px !important;
}
.opcswt-mobile-contact-item i { 
    width: 30px !important;
    border-radius:5px;
    background: #f7d794 !important;
    padding: 10px 11px !important;
    margin-left: -10px !important;
}
.opcswt-mobile-social-link { 
    width: 32px !important;
    height: 32px !important;
     background: linear-gradient(90deg, var(--yellow), var(--orange-red)) !important;
}
    .opcswt-mobile-cta-button{
            background: linear-gradient(90deg, var(--yellow), var(--orange-red)) !important;
    padding: 10px 20px !important;
     font-size: 15px !important;
    }
    .about-right {
    text-align: center !important;
    }
    .about-section {
    padding: 50px 0 !important;
}
.support-left-section{
     padding: 50px 0 !important;
}
body .opcswt-brand { 
    gap: 5px !important;
}
.contact-section-new { 
    padding: 55px 0 !important;
}
.projects-section {
    padding: 50px 0 70px !important;
}
.focus-card{
        padding: 12px 10px !important;
}
.focus-section {
    padding: 50px 5% !important;
}
 .about-left h2 {
    font-size: 22px !important;
 }
 .focus-header h2{
    font-size: 22px !important; 
 }
  .focus-header h5{
     font-size: 15px !important;
    letter-spacing: 2px !important; 
    margin-bottom: 11px !important;
 }
 .projects-header h2{
       font-size: 22px !important;  
 }
 .projects-header h5{
        font-size: 15px !important;
    letter-spacing: 2px !important; 
    margin-bottom: 11px !important; 
 }
 .trust-heading h2{
     font-size: 22px !important; 
 }
  .trust-heading h5{
         font-size: 15px !important;
    letter-spacing: 2px !important; 
    margin-bottom: 11px !important;  
 }
 .news-header h2{
     font-size: 22px !important;  
 }
 .news-header h5{
     font-size: 15px !important;
    letter-spacing: 2px !important; 
    margin-bottom: 11px !important;   
 }
 .contact-left h5{
    font-size: 15px !important;
    letter-spacing: 2px !important; 
    margin-bottom: 11px !important;
 }
  .contact-left h2{
     font-size: 22px !important; 
 }
 .contact-wrapper {
    max-width: 100% !important;
    margin: 0 !important; 
    gap: 5px !important;
    padding: 0 20px !important;
 }
     .contact-list li {
             font-size: 14px !important; 
             padding: 10px 8px !important; 
             gap: 9px !important;
             justify-content: left !important;
    }
    .contact-right img{
            height: 330px !important;
    left: 0px !important; 
    margin-top: -39px !important;
    }
 .news-header p {
    width: 99% !important;
    margin: 10px auto 0 !important;
    font-size: 15px !important;
 }
 .news-content h3 {
    margin-top: 0px !important;
    font-size: 16px !important;
 }
 .news-content p {
    font-size: 14px !important;
 }
 .contact-left{
     text-align: left !important;
 }
 .news-content {
    padding: 20px 20px 20px !important;
}
 .project-card p {
    font-size: 15px !important;
    margin: 0 17px 25px 17px !important;
 }
 .project-card h3 {
         margin: 15px 17px !important;
    font-size: 17px !important;
 }
 .trust-card h3 {
    font-size: 15px !important;
 }
 .counter-item h2 {
    margin-top: 2px !important;
    font-size: 25px !important;
 }
 .counter-item p {
    font-size: 15px !important;
 }
 .support-content{
      text-align: left !important;
 }
 .support-intro{
         font-size: 15px !important;
      text-align: left !important;
 }
     .support-item {
        justify-content: left !important;
    }
 .counter-section { 
    padding: 50px 0px !important;
 }
 .counter-row { 
    gap: 9px !important;
 }
 .trust-compliance {
    padding: 40px 16px !important;
 }
 .trust-card { 
    padding: 16px 12px !important;
 }
 body .opcswt-navbar { 
    padding: 13px 28px !important;
 }
     .opcsw-footer-logo { 
        text-align: left !important;
        align-items: left !important;
    }
    .opcsw-footer-column {
        text-align: left !important;
    }
        .opcsw-footer-content { 
        gap: 6px !important;
    }
    .about-container {
        flex-direction: column;
        text-align: left !important;
    }
    .opcsw-footer-column h3::after { 
    left: 27px !important;
    bottom: -4px;
    }
 .contact-btn-new{
      font-size: 14px !important;
    padding: 8px 16px !important; 
 }
 .opcsw-btn-group .btn-warning {
     font-size: 14px !important;
    padding: 8px 16px !important; 
    margin-bottom:10px;
 }
 .opcsw-btn-group .btn-outline-light{
      font-size: 14px !important;
    padding: 8px 16px !important; 
    margin-bottom:10px;
 }
 .support-main-btn{
        font-size: 14px !important;
    padding: 8px 16px !important; 
 }
 .trust-btn{
       font-size: 14px !important;
    padding: 8px 16px !important; 
 }
 .focus-button{
           font-size: 14px !important;
    padding: 8px 16px !important;  
 }
 .about-btn { 
      font-size: 14px !important;
    padding: 8px 16px !important; 
 }
 .ngo-hero-buttons .btn {
    padding: 8px 16px !important; 
    font-size: 14px !important;
    margin-bottom: 10px !important;
 }
 .ngo-hero h1 {
    font-size: 24px !important;
 }
 .projects-grid { 
    grid-template-columns: repeat(1, 1fr) !important; 
 }
.about-right .img1 {
        width: 215px !important;
    }
.about-right .img2 {
    width: 182px !important; 
    bottom: 10px !important;
    right: 50px !important;
}
.shape-circle {
    width: 250px !important;
    height: 250px !important;
}
 body .opcsw-news-section {
    padding: 40px 20px !important;
 }
 .counter-row { 
    grid-template-columns: repeat(2, 2fr) !important; 
 }
 .support-shape { 
    width: 300px;
    height: 300px;
 }
 body .opcswt-top-bar{
     DISPLAY:NONE !important;
 }
 
}









