/* COLOR VARIABLES */
:root {
    --orange-red: #e85625;
    --blue: #f5203b;
    --purple: #ffa01d;
    --yellow: #EEE91B;
    --orange: #EEE91B;
}

/* TOP BAR */
body .opcswt-top-bar {
    background: linear-gradient(90deg, var(--purple), var(--blue));
    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 .opcswt-org-trust-name {
    font-size: 14px;
    color: var(--purple);
    letter-spacing: 1px;
}

/* 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: #F5203B;
    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, #F5203B, #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 #F5203B;
    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: 820px;
    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 #EEE91B;
    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;
       border:15px solid #f7d794;
    opacity:0.4;
    background: linear-gradient(135deg, #ffb75e, #ff8c00);
    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: #F5203B;
    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, #F5203B, #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;
}
 
body .opcswt-social-links a {
    background: rgba(255, 255, 255, 0.4);
    width: 30px;
    height: 30px;
    padding: 4px;
    text-align: center;
    border-radius: 50%;
}
/* 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);
    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: 50%;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:6px solid #eee91b;

    background: linear-gradient(135deg, #ffa01d, #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: #F5203B;
    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: #F5203B;
    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 #02aef4;
    background: linear-gradient(135deg, #F5203B, #02aef4);
    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: 28px;
    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 #02aef4;
  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:#02aef4;
  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: #02aef4;
  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: 330px;
    height: 330px;
    border:15px solid #f7d794;
    opacity:0.4;
    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;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.support-item {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    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);
} 

@media (min-width: 768px) {
    .support-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
.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, var(--purple), var(--blue));
}
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 #ccc;
    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;
}

@media only screen and (min-width : 320px) and (max-width : 480px)  {
 .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: 200px;
    height: 200px;
 }
 .support-list {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
.footer-cta { 
    padding: 48px 20px;
}
.footer-cta .cta-text h2 {
    font-size: 25px !important; 
}
.footer-cta .cta-btn { 
    padding: 10px 27px !important;
}

 body .opcswt-top-bar{
     DISPLAY:NONE !important;
 }
 
}









