*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background: white;
}
/* scroll button*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    height: 45px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0,0,10px rgb(225, 222, 216);
    cursor: pointer;
    z-index: 9999;
}
#progress-value{
    display: block;
    height: calc(98% - 3px);
    width: calc(98% - 3px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    z-index: 9999;
}
/*styling top-footer */
.top-footer{
    background: rgb(0, 0, 0);
    height: 40px;
    z-index: 9999;
    position: relative;
}
.top-footer .box{
    position: relative;
    padding: 10px 0;
    display: flex;
    
}
.top-footer .box .icon{
    min-width: 60px;
    height: 23px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.top-footer .box .text-1{
    display: flex;
    font-size:.95rem;
    height: 10px;
    color: #ffffff;
    text-overflow: ellipsis;
}
.top-footer .box .text-1 a{
    color: white;
}
.top-footer .box .text-1 a:hover{
    color: #76cdf8;
}
.social-link-list{
    display: flex;
    margin-left: 650px;
    align-items: center;
    gap: 20px;
}
.social-link-list .social-link{
    color: #ffffff;
    font-size: 16px;
}
.social-link-list .social-link:hover{
    color: #A6C96A;
}
/*styliing the header*/
header{
    width: 100%;
    min-height: 60px;
    background-color: #3d56ff;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    position: sticky;
    top: 0;
}
header .logo{
    width: 90px;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px; 
    justify-content: center; 
    background-color: #3d56ff; 
    padding: 15px;

}
.logo-text {
    font-size: 15px;
    color: #000000;
    top: 30px;
    font-weight: 550;
}
header ul{
    position: relative;
}
header ul li{
    position: relative;
    list-style: none;
    float: left;
}
header ul li a{
    color: rgb(255, 255, 255);
    font-size: 18px;
    padding: 20px 25px;
    display: flex;
    text-decoration: none;
    justify-content: space-between;
}
header ul li a:hover{
    background: rgb(255, 254, 253);
    color: black;
}
/* Dropdown styles */
.dropdown .dropbtn {
    font-size: 18px;
    border: none;
    outline: none;
    padding: 14px 16px;
    background-color: #3d56ff;
    margin-top: 6px;  
    font-family: inherit;
    color: #fff;
}
.dropdown .dropbtn:hover{
    background: rgb(255, 254, 253);
    color: black;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #3d56ff !important; /* force theme green */
    color: #fff;
    min-width: 180px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 1000;
    text-align: left;
}
.dropdown-content li a {
    padding: 10px;
    color: #ffffff;
}
.dropdown:hover .dropdown-content {
    display: block;
}
/* styling whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
/* Overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0, 0, 0); /* dark overlay */
    z-index: 0;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.content{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 100%;
    animation: popIn 7s ease-in-out infinite;
}
@keyframes popIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
.content span{
    display: block;
}
.caption1{
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 5px 5px 5px rgb(0, 0, 0);
    background: transparent;
    position: relative;
}
.caption2{
    color: rgb(255, 255, 255);
    text-shadow: 5px 5px 5px rgb(0, 0, 0);
    font-size: 19px;
    letter-spacing: normal;
    margin-bottom: 30px;
}
.button-Contact{
    padding: 10px 26px;
    border: 2px solid transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background:#3d56ff;
}
.button-Contact:hover{
    color: white;
    border: 1px solid white;
    background: transparent;
}
/* styling hello section */
.hello{
    padding: 70px;
    border: 50px;
    background: #3d56ff;  
}
.container{
    display: flex;
    gap: 60px;   
}
.open-text{
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    text-align: left;
}
.hello-image{
    max-width: 100%;
    height: auto;
}
.info{
    text-align: left;
}
.info .invite-text{
    color: #fff;
    font-size: 16px;
    text-align: justify;
    margin-top: 30px;
}
/* styling mission */
.mission-container{
    padding: 15px 10%;
    padding-bottom: 60px;
    padding-top: 60px;
    background-color: #f4f4f4;
}
.box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 40px;
}
.box-content{
    box-shadow: 0px 1px 2px rgba(44, 43, 43, 0.368);
    background: #ffffff;
    text-align: center;
    padding: 10px 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease;
}
.box-content:hover{
    transform: translateY(-10px);
}
.box-content h3{
    color: rgb(0, 0, 0);
    font-size: 25px;
    padding: 2px 0;
}
.box-content p{
    font-size: 16px;
    line-height: 20px;
    color: black;
    margin-bottom: 20px;
}
.box-content-1{
    box-shadow: 0px 1px 2px rgba(44, 43, 43, 0.368);
    background: #ffffff;
    text-align: center;
    padding: 10px 5px;
    margin-top: 25px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease;
}
.box-content-1:hover{
    transform: translateY(-10px);
}
.box-content-1 h3{
    color: rgb(0, 0, 0);
    font-size: 25px;
    padding: 2px 0;
}
.box-content-1 p{
    font-size: 16px;
    line-height: 20px;
    color: black;
    margin-bottom: 25px;
}
.box-content-1 a{
    color: #000000;
    font-size: 18px;
    top: 20px;
}
.box-content .pic{
    width: 70px;
    padding: 10px;
    border-radius: 10px;
}
.box-content-1 .pic{
    width: 85px;
    padding: 10px;
    border-radius: 10px;
}
/* sytling impact*/
.impact-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}
.impact-image {
    flex: 1;
    min-width: 300px;
    padding: 10px;
}
.impact-image img {
    width: 100%;
    border-radius: 0px;
}
.impact-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}
.impact-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.impact-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.stat-box {
    text-align: center;
}
.stat-box i {
    font-size: 32px;
    color: #3498db;
    margin-bottom: 10px;
}
.stat-box h3 {
    font-size: 26px;
    margin: 5px 0;
}
.stat-box p {
    font-size: 18px;
    color: #666;
}
/* styling slide gallery*/
.nature{
    background: url(image/Untitled.png);
}
.title h2{
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 25px;
    padding: 20px 0;
    text-shadow: 5px 5px 5px rgb(0, 0, 0);
}
.title p{
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    text-shadow: 5px 5px 5px rgb(0, 0, 0);
}
.scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.scroll-container {
    display: flex;
    width: max-content;
    animation: scroll-left 120s linear infinite;
    margin-bottom: 10px;
}
.scroll-container:active {
    cursor: grabbing;
}
.scroll-container img {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    margin: 3px;
    border-radius: 1px;
}
/* Auto-scroll keyframes */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
/*notible events*/
.event-container{
    padding: 10px 5%;
    padding-bottom: 60px;
    padding-top: 60px;
    background-color: #d3e8f850;
}
.event-container h2{
    text-align: center;
    margin-bottom: 50px;
    font-size: 28px;
}
.eve-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 10px;
}
.box-content img{
    width: 260px;
}
 :root{
  --accent: #8b5cf6;   /* section accent (change to match your brand) */
  --youtube: #ff0000;
  --facebook: #1877f2;
  --bg: #fafbfd;
  --card-bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
}
/* our philosophy */
.our-value {
    background: #f9f9f9;
}
.core-value{
    padding: 15px 9%;
    padding-bottom: 70px;
}
.core-heading {
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}

.core-text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    line-height: 1.6;
    color: #555;
    font-size: 17px;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.box-container .box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 50px;
    color: #3d56ff;
    margin-bottom: 15px;
}

.box-container .box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.box-container.box p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

/* Responsive text */
@media (max-width: 768px) {
    .core-heading, .core-text {
        padding: 0 10px;
    }
}

/*styling news*/
.news-section {
  padding: 40px 20px;
  background: #ffffff;
}
.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}
/* Sidebar */
.news-sidebar {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 12px rgb(0, 0, 0);
}
.news-sidebar h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #000000;
}
.accordion {
    background-color: #002ec7;
    color: white;
    cursor: pointer;
    padding: 15px;
            width: 100%;
            text-align: left;
            border: none;
            outline: none;
            font-size: 18px;
            transition: background 0.3s;
    display: flex;
            align-items: center;
            margin-top: 10px;
}
.accordion::before {
    content: "\002B"; /* plus sign */
    font-weight: bold;
    margin-right: 10px;
            transition: transform 0.3s;
}
.accordion.active::before {
    content: "\2212"; /* minus sign */
}
.accordion.active {
    background-color: #3d0baf;
}
.panel {
    max-height: 0;
    overflow: hidden;
    background-color: #f7f7f7;
    transition: max-height 0.4s ease;
    padding: 0 15px;
}
.panel p {
    padding: 10px 0;
    margin: 0;
    color: black;
}
/* News Content */
.news-content {
  flex: 2;
  min-width: 280px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 12px rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.news-content img {
  width: 100%;
  height: auto;
}
.news-details h3 {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 10px;
}
.news-details p {
  color: #000000;
  line-height: 1.6;
}
/* Button */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #001679;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #0077ff;
}
/* ✅ Responsive Layout */
@media (max-width: 900px) {
  .news-container {
    flex-direction: column;
  }

  .news-sidebar, .news-content {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .news-sidebar a {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .news-details h3 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}
/* styling footer */
footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background: rgb(0, 0, 0);
    padding: 50px 20px;
}
.footer-col ul{
    list-style: none;
    text-align: left;
}
.list{
    padding: 7px;
}
.list li{
    width: auto;
    text-align: center;
    list-style-type: none;
    padding: 10px;
    position: relative;
}
.list li::before{
    content: "";
    position: absolute;
    transform: translate(-50px -50px);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: #7073ff;
    transition-duration: .5s;
}
.list li:hover::before{
    width: 70px;
}
.footer-col{
    width: 25%;
    padding: 7px;
}
.footer-col h2 {
    position: relative; /* Required for ::before to position properly */
    font-size: 23px;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffffb0;
}
.footer-col h2::before {
    content: "";
    position: absolute;
    left: 50%; /* Center the line */
    transform: translateX(-50%);
    bottom: -6px;
    background-color: #c7b8b8;
    height: 2px;
    width: 40px;
}
.footer-col p{
    color: #fff;
    width: 260px;
    margin: auto;
    padding: 10px 3px;
 }
.social-icons{
    text-align: center;
    padding: 10px;
 }
.social-icons li{
    display: inline-block;
    text-align: center;
    padding: 10px;
 }
.social-icons i{
    color: white;
    font-size: 20px;
 }
a{
    text-decoration: none;
    color: #ffffff;
 }
a:hover{
    color: #f87800;
 }
.social-icons i:hover{
    color: #f87800;
 }
.bottom-bar{
    text-align: center;
    padding: 10px 0;
    margin: auto;
    margin-top: 50px;
 }
.bottom-bar p{
    color: #ffffff;
    margin: auto;
    font-size: 18px;
    padding: 7px;
    
}
/*styling bottom-footer*/
.bottom-footer{
    text-align: center;
    background-color: #4e4d4d;
}
.craft{
    padding: 6px ;
}
.craft p{
    color: #fff;
}
.craft a{
    color: #ff7700;
}
.craft a:hover{
    color: rgb(255, 255, 255);
}
/* Auto-scroll keyframes */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
/* responsiveness */
@media (max-width: 1115px){
    .social-link-list{
        margin-left: 550px;
    }
    header .logo{
        width: 75px;
        
    }
    nav ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.3s;
    }
    .image-section-2 img{
      width: 450px;
    }
    }
@media (max-width: 1050px){
    .social-link-list{
        margin-left: 480px;
    }
    .top-footer .box .text-1{
        display: flex;
        font-size:.90rem;
        height: 10px;
        color: #ffffff;
        text-overflow: ellipsis;
    }
    .top-footer .box .icon{
        font-size: 16px;
    }
    header .logo{
        width: 45px;
        
    }
    header ul li a{
        color: rgb(255, 255, 255);
        font-size: 16px;
        padding: 9px 15px;
        margin-top: 6px;
        font-weight: 400;
        display: flex;
    }
    .dropdown .dropbtn {
        font-size: 16px;
        padding: 9px 15px;
        background-color: #3d56ff;
        margin-bottom: 6px !important; 
        font-family: inherit;
        color: #fff;
    }
    .dropdown-content {
        min-width: 150px;
    }
    .dropdown-content li a {
        padding: 10px;
        color: #ffffff;
        font-size: 16px;
    }
    .container{
        display: inline;
        gap: 240px;
    }
    .info .invite-text{
        font-size: 18px;
    }
    }
@media (max-width: 1000px){
    .social-link-list{
        margin-left: 400px;
    }
    .logo-text {
        font-size: 14px;
        color: #000000;
        top: 30px;
        font-weight: 550;
    }
    .container{
        display: inline;
        gap: 240px;
    }
    .info .invite-text{
        font-size: 18px;
    }
    }
@media (max-width: 950px){
    .social-link-list{
        margin-left: 350px;
    }
    }
@media (max-width: 900px) {
    .top-footer {
        display: none;
    }

    header {
        padding: 10px 20px;
    }

    header .logo {
        width: 75px;
    }

    /* ===== MOBILE NAV CONTAINER ===== */
    header nav {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background: #3d56ff; /* theme color */
        display: none;
        z-index: 1000;
        text-align: center;
        padding: 20px 0;
    }

    /* Show menu when header is active */
    header.active nav {
        display: block;
    }
    header.active {
        background-color: #3d56ff !important;
    }
    /* ===== NAV LIST ===== */
    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    header nav ul li {
        list-style: none;
        width: 100%;
    }

    header nav ul li a,
    .dropdown .dropbtn {
        display: block;
        width: 100%;
        color: #fff;
        font-size: 17px;
        padding: 15px 0;
        text-decoration: none;
    }

    header nav ul li a:hover {
        color: black;
        background-color: transparent;
    }

    /* ===== DROPDOWNS (MOBILE SAFE) ===== */
    .dropdown {
        position: static;
        width: 100%;
        background-color: #3d56ff !important; /* force green */
    }

    .dropdown-content {
        position: static;
        background-color: #3d56ff !important; /* force green */
        color: #fff; /* text color */
        text-align: center;
    }
    

    /* FORCE disable hover on mobile (fixes "won't close") */
    .dropdown:hover .dropdown-content {
        display: none !important;
    }

    /* Open dropdown when active (JS controlled) */
    .dropdown.active .dropdown-content {
        display: block !important;
    }

    .dropdown-content li a {
        padding: 12px 16px;
        color: #fff;
        border-top: 1px;
        font-size: 17px;
    }

    .dropdown .dropbtn {
        font-size: 18px;
        font-weight: 400;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* REMOVE mobile button grey tap/active color */
    .dropdown .dropbtn,
    .dropdown .dropbtn:focus,
    .dropdown .dropbtn:active {
        background-color: #3d56ff !important;
        color: #fff;
        outline: none;
        box-shadow: none;
    }

    /* Remove Android / iOS tap highlight */
    .dropdown .dropbtn {
        -webkit-tap-highlight-color: transparent;
    }
    /* ===== HAMBURGER TOGGLE ===== */
    .menuToggle {
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before,
    .menuToggle::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 2px;
        background: #fff;
        transition: 0.3s;
    }

    .menuToggle::before {
        transform: translateY(-10px);
        box-shadow: 0 10px #fff;
    }

    .menuToggle::after {
        transform: translateY(10px);
    }

    /* Transform to X */
    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: none;
    }

    header.active .menuToggle::after {
        transform: rotate(-45deg);
    }
    html {
        scroll-behavior: smooth;
    }
    .content span{
        display: block;
    }
    .caption1{
        font-size: 38px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 20px;
        background: transparent;
        position: relative;
        animation: text 3s 1;
        animation-iteration-count: infinite;
    }
    .caption2{
        font-size: 14px;
        text-align: center;
    }
    .container{
        display: inline;
        gap: 140px;
    }
    .hello{
        padding: 20px;
    }
    .hello-image{
        max-width: 100%;
        height: auto;
    }
    .open-text{
        font-size: 28px;
        margin-bottom: 30px;
    }
    .impact-section {
        flex-direction: column;
    }
    .title h2{
        text-align: center;
        color: rgb(255, 255, 255);
        font-size: 23px;
    }
    .title p{
        text-align: center;
        font-size: 16px;
    }
    footer{
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
    }
    .footer-col p {
        width: 100%;
    }
    .footer-col h2 {
        text-align: left;
    }
    .footer-col h2::before {
        left: 5%; /* Center the line */
    }
    .social-icons{
        text-align: left;
        padding: 7px;
    }
    .list li{
        text-align: left;
        border-bottom: 1px solid #ffffff79;
    }
    .list li::before{
        display: none;
    }
    .footer-col h2::before {
        display: none;
    }
}
@media (max-width: 600px){
    .text {
        top: 380px;
        text-align: center;
    }
    .text h1{
        font-size: 38px;
    }
    .footer-col h2::before {
        left: 10%; /* Center the line */
    }
}  
@media (max-width: 400px){
    .text {
        top: 400px;
        text-align: center;
    }
    .scroll-container {
        animation: scroll-left 40s linear infinite; /* slow auto-scroll */
    }
    .scroll-container img {
        flex: 0 0 auto;
        width: 300px;
        height: 300px;
    }
/* Auto-scroll keyframes */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
}