*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
/* Page Background */
background: linear-gradient(180deg, #e8fff0 0%, #c8f7d4 100%);
  color: #ffffff;

/* Primary Dark (navbar, headings) */


/* Footer / strong sections */
background: #0b2f26;

/* Buttons */
background: #124734;
}

/* NAVBAR */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-weight:600;
    font-size:16px;
    flex-shrink:0;
}

.logo img{
    height:45px;
}

.navbar{
    position:fixed;
    width:100%;
    top:0;

    padding:10px 30px; /* reduced */
    
    display:flex;
    justify-content:space-between;
    align-items:center;

    flex-wrap:nowrap; /* 🔥 prevents multi-line */

    background:#124734;
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

/* NAV LINKS */
.nav-links{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
    white-space:nowrap;
}

.nav-links a,
.dropbtn{
    font-size:13px;
    padding:6px 8px;
    font-weight:500;
    color:#fff; /* 🔥 FIXED */
    text-decoration:none;
}

/* DROPDOWN */
/* DROPDOWN WRAPPER */
.dropdown{
    position:relative;
}

/* DROPDOWN BOX */
.dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:0;

    width:420px !important;   /* 🔥 FORCE WIDTH */
    min-width:420px !important;

    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    border-radius:8px;

    z-index:9999;

    padding:8px 0;

    overflow:visible !important; /* 🔥 IMPORTANT */
}

/* ITEMS */
.dropdown-content a{
    display:block;
    padding:12px 16px;
    font-size:14px;
    color:#222;
}

/* SHOW */
.dropdown:hover .dropdown-content{
    display:block;
}


/* BUTTON */
.btn{
    background:#ff3b3b;
    padding:12px 25px;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    display:inline-block;
    margin-top:15px;
    transition:0.3s;
}

.btn:hover{
    background:#e60023;
}

/* RIGHT SIDE BUTTON */
.listen-live-btn{
    flex-shrink:0;
    white-space:nowrap;

    background:#ff3b3b;
    padding:8px 14px;
    font-size:13px;

    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
}

.listen-live-btn:hover{
    background:#e60023;
}


/* HERO */
.hero{
    display:flex;
    margin-top:75px;
    height:420px;
}

/* HERO LEFT */
.hero-left{
    width:75%;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;

    padding:40px;   /* ✅ equal spacing all around */
    box-sizing:border-box;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;

    opacity:0;
    animation:fade 16s infinite;

    border:4px solid #D6EBFF;   /* ✅ THIS is the border */
    border-radius:14px;
    box-sizing:border-box;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    animation:fade 16s infinite;
}

.slide::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(10,37,64,0.9),
        rgba(10,37,64,0.35)
    );
}

.slide1{
    background-image:url('https://pntglobal.com/assets/img-new/pnt/pnt_banner.png');
    animation-delay:0s;
}

.slide2{
    background-image:url('https://pntglobal.com/assets/img-new/pnt/d2.jpg');
    animation-delay:4s;
}

.slide3{
    background-image:url('https://pntglobal.com/assets/img-new/pnt/SEOProgram.jpg');
    animation-delay:8s;
}

.slide4{
    background-image:url('https://pntglobal.com/assets/img-new/pnt/off6.jpg');
    animation-delay:12s;
}

@keyframes fade{
    0%{opacity:0;}
    5%{opacity:1;}
    25%{opacity:1;}
    30%{opacity:0;}
    100%{opacity:0;}
}

.hero-content{
    position:relative;
    z-index:2;
    padding:40px;   /* ✅ this controls visible spacing */
    max-width:550px;
}

.hero-content h1{
    font-size:38px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:12px;
    line-height:1.7;
}

/* HERO RIGHT */
.hero-right{
    width:25%;
    background:#0f3d2e;
    padding:25px;
    overflow-y:auto;
    border-left:1px solid rgba(255,255,255,0.08);
}

.program-box {
    color: #fff;
    text-align: center;
    padding: 20px;
}

.program-box strong {
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.program-box p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* ================= MAIN ROW ================= */

.why-text-section {
    padding: 20px 40px; /* top/bottom spacing */
    background: linear-gradient(180deg, #e8fff0 0%, #c8f7d4 100%);
}

.contact-strip {
    padding: 70px 20px;
    background: linear-gradient(180deg, #c8f7d4 0%, #e8fff0 100%);
}

/* FORM WRAPPER */

/* WRAPPER */
.my-form-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* INLINE FORM */
/* INLINE FORM */
.my-inline-form{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}

/* INPUTS */
.my-inline-form input{
    flex:1;
    min-width:180px;
    padding:10px;
}

/* SUBMIT AREA */
/* CENTER CAPTCHA + BUTTON BLOCK */
/* CENTERED SINGLE LINE SUBMIT AREA */
.submit-container{
    flex-basis:100%;
    display:flex;
    justify-content:center;   /* 🔥 center whole group */
    align-items:center;
    gap:12px;
    margin-top:10px;
    flex-wrap:nowrap;         /* 🔥 keep in one line */
}

/* TURNSTILE FIX */
.cf-turnstile{
    transform:scale(0.8);
    transform-origin:center;
    flex-shrink:0;   /* 🔥 prevents squeezing */
}

/* MAIN BOX */
.why-text-container {
    max-width: 1100px;
    margin: auto;

    text-align: center;

    padding: 60px 80px;   /* LEFT + RIGHT BIG SPACE (like 1 inch feel) */

    border: 2px solid #0f3d2e;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HEADING */
.why-text-container h2 {
    font-size: 36px;
    color: #0f3d2e;
    margin-bottom: 25px;
}

/* PARAGRAPH */
.why-text-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #2f5d4a;
    margin-bottom: 15px;
}

.main-section{
    background:#E6F2FF
    padding:30px 40px;
    border-radius:16px;
    margin:20px;
    box-shadow:0 6px 25px rgba(0,0,0,0.08);
  /*   color:#222;   /* default text becomes dark */
}

.main-row{
    display:flex;
    gap:20px;
    padding:30px 40px;
    align-items:stretch;
}

/* TRUST STRIP CONTAINER */
.trust-strip {
    margin-top: 25px;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    background: rgba(15, 61, 46, 0.08);
    border: 1px solid rgba(15, 61, 46, 0.2);
    border-radius: 12px;
}

/* EACH LOGO BOX */
/* STRIP CONTAINER */
.trust-strip {
    margin-top: 25px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background: rgba(15, 61, 46, 0.06);
    border: 1px solid rgba(15, 61, 46, 0.25);
    border-radius: 14px;
}

/* EACH LOGO BOX (WHITE CARD) */
.trust-box {
    flex: 1;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;

    padding: 10px;
    transition: 0.3s ease;
}

/* LOGO IMAGE */
.trust-box img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

/* HOVER */
.trust-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #0f3d2e;
}



/* LEFT + RIGHT (1 unit each) */
.side-box{
    flex:1;
}

/* CENTER BANNER (2 units) */
.banner-box{
    flex:2;
    position:relative;
    border-radius:14px;
    overflow:hidden;
}

/* ================= CARDS ================= */

.card{
    background:rgba(255,255,255,0.05);
    padding:20px;
    border-radius:14px;
    height:100%;
}

.card-title{
    padding:10px;
    text-align:center;
    font-weight:600;
    border-radius:8px;
    margin-bottom:15px;
}

.blue{background:#0d6efd;}
.red{background:#ff3b3b;}

.list{
    list-style:none;
    line-height:2;
}

/* ================= BANNER ================= */

.banner-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    min-height:320px;
    display:block;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(6,26,44,0.9),rgba(6,26,44,0.3));
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.overlay h2{
    font-size:34px;
    margin-bottom:10px;
}

.overlay p{
    line-height:1.6;
    margin-bottom:15px;
}

/* BUTTON */
.btn{
    background:#ff3b3b;
    padding:12px 20px;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    display:inline-block;
}

/* SECTION BACKGROUND */
.modules-section {
    padding: 20px 20px;
    background: linear-gradient(180deg, #e8fff0 0%, #c8f7d4 100%);
    text-align: center;
}

/* HEADER */
.modules-header h2 {
    font-size: 36px;
    color: #0f3d2e;
    margin-bottom: 10px;
}

.modules-header p {
    color: #2f5d4a;
    margin-bottom: 40px;
}

/* GRID */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.module-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
}

.module-card {
    text-align: center;
}

.module-card i {
    font-size: 40px;
    color: #0f3d2e;
    margin-bottom: 15px;
}

.module-card h3 {
    margin-bottom: 10px;
    color: #0f3d2e;
}

.module-card p {
    font-size: 14px;
    color: #355c4a;
}

.modules-header {
    text-align: center;
    margin-bottom: 50px;
}

.modules-header h2 {
    font-size: 36px;
    color: ##0b2f26;
    margin-bottom: 10px;
}

.modules-header p {
    color: #0b2f26;
    max-width: 600px;
    margin: 0 auto;
}

/* HOVER EFFECT */
.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}



/* SECTION */
.services-section {
    padding: 20px 20px;
    background: linear-gradient(180deg, #e8fff0 0%, #c8f7d4 100%);
}

/* HEADER */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 36px;
    color: #0f3d2e;
}

.services-header p {
    color: #2f5d4a;
    max-width: 600px;
    margin: 0 auto;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* ICON */
.service-card img {
    width: 50px;
    margin-bottom: 15px;
}

/* TITLE */
.service-card h3 {
    color: #0f3d2e;
    margin-bottom: 10px;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #355c4a;
    margin-bottom: 15px;
}

/* LINK */
.service-card a {
    color: #0f3d2e;
    text-decoration: none;
    font-weight: 600;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* OUTER BOX */
 .my-logo-slider-box {
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(180deg, #0f3d2e 0%, #081c16 100%);
}


/* TRACK */
.my-slider-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

/* LOGO BOX */
.my-slider-logo {
    width: 180px;
    height: 90px;
    margin: 0 20px;

    background-color: #ffffff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    flex-shrink: 0;

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);

    padding: 12px;

    transition: 0.3s ease;
}


/* TRACK */
.my-slider-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

/* HOVER EFFECT */
.my-slider-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ANIMATION */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ================= MOBILE ================= */

@media(max-width:900px){
    .main-row{
        flex-direction:column;
    }

    .banner-box{
        flex:1;
    }
}
/* PROGRAMS + EVENTS BOX */
.card{
    background:rgba(255,255,255,0.05);
    padding:20px;
    border-radius:14px;
}

/* titles */
.card-title{
    padding:10px;
    text-align:center;
    font-weight:600;
    border-radius:8px;
    margin-bottom:15px;
}

.blue{background:#0d6efd;}
.red{background:#ff3b3b;}

/* list styling */
.list{
    list-style:none;
    line-height:2;
}

/* ================= BANNER ================= */

.banner-box{
    position:relative;
    overflow:hidden;
    border-radius:14px;
}

.banner-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    min-height:320px;
}

/* overlay */
.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(6,26,44,0.9),
        rgba(6,26,44,0.3)
    );
    padding:25px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.overlay h2{
    font-size:28px;
    margin-bottom:10px;
}

.overlay p{
    margin-bottom:15px;
    line-height:1.6;
}

/* ================= MOBILE ================= */

@media(max-width:900px){
    .main-row{
        flex-direction:column;
    }
}

.program-box{
    background:rgba(255,255,255,0.05);
    padding:18px;
    border-radius:12px;
    margin-bottom:18px;
}

.program-box h4{
    color:#ff3b3b;
    margin-bottom:8px;
}

/* FEATURED BANNER */
.top-ad{
    padding:2px 2px;
}

.featured-banner{
    position:relative;
    max-width:1200px;
    height:400px;
    margin:auto;
    border-radius:18px;
    overflow:hidden;
}

.featured-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(6,26,44,0.92),
        rgba(6,26,44,0.35)
    );

    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px;
    max-width:550px;
}

.banner-overlay h2{
    font-size:42px;
    margin-bottom:15px;
}

.banner-overlay p{
    line-height:1.8;
    opacity:0.9;
}

/* MAIN LAYOUT */
.container{
    display:grid;
    grid-template-columns:260px 1fr 300px;
    gap:25px;
    padding:20px 40px 60px;
    align-items:start;
}

/* LEFT SIDEBAR */
.left-sidebar{
    display:flex;
    flex-direction:column;
    gap:20px;
    position:sticky;
    top:100px;
}

.side-ad{
    background:rgba(255,255,255,0.05);
    border-radius:14px;
    overflow:hidden;
    transition:0.3s;
}

.side-ad img{
    width:100%;
    display:block;
}

.side-ad:hover{
    transform:translateY(-4px);
}

/* SECTION */
.section{
    background:rgba(255,255,255,0.04);
    padding:25px;
    border-radius:16px;
    margin-bottom:25px;
}

/* WELCOME GRID */
.welcome-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:25px;
    margin-top:25px;
}

/* CARDS */
.cards{
    display:grid;
    gap:20px;
}

.card{
    background:rgba(255,255,255,0.05);
    padding:20px;
    border-radius:14px;
}

.card-title{
    padding:12px;
    border-radius:8px;
    text-align:center;
    font-weight:600;
    margin-bottom:15px;
}

.blue{
    background:#0d6efd;
}

.red{
    background:#ff3b3b;
}

/* RIGHT SIDEBAR */
.sidebar{
    position:sticky;
    top:100px;
}

.scroll-wrapper{
    height:1200px;
    overflow:hidden;
    position:relative;
}

.scroll-track{
    display:flex;
    flex-direction:column;
    gap:20px;
    animation:scrollUp 25s linear infinite;
}

.scroll-wrapper:hover .scroll-track{
    animation-play-state:paused;
}

@keyframes scrollUp{
    0%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(-50%);
    }
}

.ad{
    background:rgba(255,255,255,0.04);
    border-radius:14px;
    overflow:hidden;
}

.ad img{
    width:100%;
    display:block;
}

.ad-content{
    padding:15px;
}

.ad-content h3{
    margin-bottom:8px;
}

.ad-content p{
    opacity:0.8;
    line-height:1.6;
    font-size:14px;
}

/* ================= CLASSIC HORIZONTAL SECTION ================= */

.classic-horizontal{
    padding:30px 40px;
}

/* header */
.classic-header{
    text-align:center;
    margin-bottom:20px;
}

.classic-header h2{
    margin-bottom:5px;
}

.classic-header p{
    opacity:0.8;
}

/* horizontal row */
.classic-row{
    display:flex;
    gap:20px;
    overflow-x:auto;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
}

/* hide scrollbar (optional clean look) */
.classic-row::-webkit-scrollbar{
    height:6px;
}
.classic-row::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,0.2);
    border-radius:10px;
}

/* cards */
.ad-card{
    min-width:260px;
    background:rgba(255,255,255,0.05);
    border-radius:14px;
    overflow:hidden;
    scroll-snap-align:start;
    transition:0.3s;
}

.ad-card:hover{
    transform:translateY(-5px);
}

.ad-card img{
    width:100%;
    height:160px;
    object-fit:cover;
}

.ad-card h3{
    padding:10px 12px 0;
}

.ad-card p{
    padding:5px 12px 15px;
    font-size:14px;
    opacity:0.8;
}

/* WELCOME ROW LAYOUT */
.welcome-row{
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    gap:20px;
    align-items:start;
    margin:30px 0;
}

/* CENTER WELCOME BOX */
.welcome-box{
    background:rgba(255,255,255,0.04);
    padding:25px;
    border-radius:12px;
    line-height:1.8;
}

/* SIDE ADS */
.side-ad-box img{
    width:100%;
    border-radius:12px;
    display:block;
}


/* SPONSORS */
.sponsors{
    display:flex;
    justify-content:space-around;
    align-items:center;
    gap:20px;
    padding:40px;
    background:rgba(255,255,255,0.03);
    flex-wrap:wrap;
}

.sponsors img{
    border-radius:10px;
}

/* FOOTER */
.footer{
    background:#0a2540;
    text-align:center;
    padding:30px;
    border-top:1px solid rgba(255,255,255,0.08);
}

/* MOBILE */
@media(max-width:1100px){

    .container{
        grid-template-columns:1fr;
    }

    .hero{
        flex-direction:column;
        height:auto;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }



    .welcome-grid{
        grid-template-columns:1fr;
    }

    .left-sidebar,
    .sidebar{
        position:relative;
        top:auto;
    }

    .navbar{
        padding:15px 20px;
    }

    .nav-links{
        display:none;
    }

    .top-ad{
        padding:20px;
    }

    .banner-overlay{
        padding:30px;
    }

    .banner-overlay h2{
        font-size:30px;
    }

    .hero-content h1{
        font-size:40px;
    }

}

.top-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:25px;
}

.welcome-text{
    margin-top:10px;
}

.site-footer{
    background:#124734;   /* same as navbar */
    padding:15px 20px;
}

.footer-bottom{
    text-align:center;
    color:#fff;
    font-size:14px;
    font-weight:500;
}