
/* ================= ROOT COLORS ================= */
:root {
    --royal-blue: #002347;
    --dark-blue: #001931;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --light-gray: #f8f9fa;
--dark-blue: #001931;
    --royal-blue: #003366;
    --gold: #D4AF37;
    --yellow: #ffcc00;
}

body { 
    font-family: 'Poppins', sans-serif; overflow-x: hidden;  
}

h1, h2, .navbar-brand { 
    font-family: 'Montserrat', sans-serif; letter-spacing: -1px;  
}

/* ================= UTILITIES ================= */
.bg-dark-blue { background-color: var(--dark-blue); }
.bg-gold { background-color: var(--gold); }
.bg-light-gray { background-color: var(--light-gray); }
.text-gold { color: var(--gold); }
.border-gold { border: 2px solid var(--gold); }
.text-yellow { color: var(--yellow); }
.bg-yellow { background-color: var(--yellow); }
.ls-2 { letter-spacing: 2px; }

.section-title { 
    position: relative; 
    display: inline-block; 
    padding-bottom: 15px; 
}
.section-title::after {
    content: '';
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    width: 60px; 
    height: 4px; 
    background: var(--gold);
}
/* Responsive Navbar Logo */
.navbar-logo{
    height:70px;
    width:auto;
    transition:0.3s ease;
}
/* ================= BUTTONS ================= */
.btn-gold { 
    background-color: var(--gold); 
    color: white; 
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-gold:hover { 
    background-color: #bfa030; 
    color: white; 
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.glow-btn {
    box-shadow: 0 0 15px var(--gold-glow);
}

/* ================= NAVBAR ================= */
.glass-nav {
    background: rgba(0, 25, 49, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: 0.3s;
}

/* ================= HERO SECTION ================= */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.hero-bg-animated {
    position: absolute;
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.highlight-line {
    border-left: 3px solid var(--gold);
    padding-left: 15px;
    margin-bottom: 5px;
}

/* ================= HERO MULTI-SLIDER ================= */
.hero-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-wrapper .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}
#testimonialSlider .carousel-item {
    height: auto;
    padding: 40px 0;
}


.overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(0,25,49,0.95), transparent);
}

.hero-content {
    position: absolute;
    top: 55%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 100%; 
    z-index: 10;
}

.h-stat { 
    border-left: 3px solid var(--gold); 
    padding-left: 12px; 
}

/* ================= GLASS FORM ================= */
.glass-form,
.glass-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.form-control, 
.form-select {
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 12px;
    font-size: 0.9rem;
}

/* ================= SELECTOR & TABS ================= */
.selector-card { 
    border-radius: 15px; 
    background: #fdfdfd; 
    border: 1px solid #eee; 
}

.custom-tabs .nav-link { 
    color: #666; 
    font-weight: 600; 
    border-radius: 0; 
    border: none; 
    padding: 12px 25px; 
}
.custom-tabs .nav-link.active { 
    border-bottom: 4px solid var(--gold); 
    color: var(--dark-blue); 
    background: none; 
}

.nav-pills .nav-link {
    color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
    margin: 0 5px;
}
.nav-pills .nav-link.active {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}
.btn-gold {
    background-color: var(--gold) !important;
    color: #fff !important;
    border: none;
}

.btn-gold:hover {
    background-color: #bfa030 !important;
    color: #fff !important;
}
.nep-list li{
    margin-bottom: 10px;
    line-height: 1.6;
}

.sgu-card{
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.sgu-card:hover{
    transform: translateY(-5px);
}

.icon-circle{
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
}
/* ================= CARDS ================= */
.dean-card { 
    border-radius: 15px; 
    border-top: 5px solid var(--gold); 
}

.stat-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: 0.3s;
}
.stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.sgu-card {
    border: none;
    border-radius: 15px;
    transition: 0.5s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.sgu-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.program-card {
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.3s;
}
.program-card:hover {
    border-color: var(--gold);
}

/* ================= ICONS ================= */
.icon-circle {
    width: 70px; 
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    margin: 0 auto;
}

/* ================= RECRUITER MARQUEE ================= */
.recruiter-marquee { 
    background: var(--light-gray); 
    padding: 40px 0; 
    display: flex; 
    white-space: nowrap; 
}

.marquee-content { 
    display: inline-block; 
    animation: marquee 30s linear infinite; 
}

.r-logo { 
    font-size: 2rem; 
    font-weight: 800; 
    color: #ccc; 
    margin: 0 60px; 
    letter-spacing: 2px; 
}

@keyframes marquee { 
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}



.carousel-indicators.bottom-out { 
    bottom: -60px; 
}

/* ================= SOCIAL LINKS ================= */
.social-link {
    width: 40px; 
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.social-link:hover {
    background: var(--gold);
    color: var(--dark-blue);
}


/* Tagline World Effect */
.main-tagline { font-size: 2.2rem; color: #555; }
.world-icon {
    display: inline-block;
    width: 32px; height: 32px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/2/22/Earth_Western_Hemisphere.png');
    background-size: cover;
    color: transparent;
}

/* BRANDING SECTION & TESTIMONIALS (Based on Image) */
.main-tagline { font-weight: 800; font-size: 2.2rem; color: #555; }
.world-icon {
    display: inline-block; width: 32px; height: 32px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/2/22/Earth_Western_Hemisphere.png');
    background-size: cover; vertical-align: middle; margin-top: -5px; color: transparent;
}

.testimonials-branding-section {
    background: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.university-backdrop {
    background: #fff;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}

.backdrop-text {
    font-size: 18rem;
    font-weight: 900;
    color: #f6f6f6;
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -60%);
    width: 100%; z-index: 1; letter-spacing: 20px;
}

.skyline-container {
    position: relative; z-index: 2;
    display: flex; justify-content: center; align-items: flex-end;
    margin-top: -100px;
}

.sun-circle {
    width: 320px; height: 320px;
    background: #ffcc00;
    border-radius: 50%;
    position: absolute; bottom: 60px; z-index: -1;
}

.skyline-silhouette-wrapper { position: relative; bottom: 0; }
.skyline-silhouette { max-width: 90%; filter: brightness(0.18); }

.testimonial-card-v2 {
    display: flex; text-align: left;
    background: rgba(255,255,255,0.02);
    padding: 10px; border-radius: 15px;
    align-items: flex-start;
}

.img-box-wrap { position: relative; min-width: 140px; }
.img-box-wrap img { width: 140px; height: 140px; border-radius: 12px; object-fit: cover; border: 3px solid rgba(255,255,255,0.1); }
.quote-icon-yellow {
    width: 45px; height: 45px;
    background: var(--yellow);
    color: #fff; border-radius: 8px;
    position: absolute; bottom: -5px; right: -5px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.placed-text { color: var(--yellow); font-size: 0.95rem; }
.testimonial-para { color: #cbd5e0; font-size: 0.88rem; font-style: italic; line-height: 1.6; }

/* Control Icons */
.nav-btn-circle {
    width: 45px; height: 45px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s; color: #fff;
}
.nav-btn-circle:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Recruiter Marquee */
.marquee-wrap { overflow: hidden; background: #fff; padding: 40px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.marquee-content { display: flex; animation: scrollMarquee 35s linear infinite; }
.marquee-content span { font-weight: 800; color: #e2e8f0; font-size: 2.2rem; margin: 0 60px; white-space: nowrap; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Footer */
.social-btn {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
    color: #fff; display: flex; align-items: center; justify-content: center;
    transition: 0.3s; text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: #fff; }
.footer-links li { margin: 10px 0; }
.footer-links li a { color: #adb5bd; text-decoration: none; transition: 0.2s; font-size: 0.9rem; }
.footer-links li a:hover { color: var(--gold); }

.carousel-item2 {
    height: 55vh;
   
}
/* =========================================
   MOBILE RESPONSIVE CSS
========================================= */

@media (max-width: 768px){

    html,
    body{
        overflow-x:hidden;
    }

    body{
        font-size:14px;
    }

    .container{
        padding-left:15px;
        padding-right:15px;
    }
    .navbar-logo{
        height:70px;
    }
    /* ================= NAVBAR ================= */

    .glass-nav{
        padding:8px 0 !important;
        background:rgba(0,25,49,0.95) !important;
    }

    .navbar-brand img{
        height:52px !important;
        max-width:180px;
        object-fit:contain;
    }

    .navbar-toggler{
        border:1px solid rgba(255,255,255,0.2);
        padding:6px 10px;
        box-shadow:none !important;
    }

    .navbar-collapse{
        background:rgba(0,25,49,0.98);
        margin-top:12px;
        padding:15px;
        border-radius:14px;
    }

    .navbar-nav .nav-link{
        padding:12px 0;
        font-size:15px;
    }

    /* ================= HERO ================= */

    .hero-wrapper{
        position:relative;
        height:100vh;
        min-height:100vh;
        overflow:hidden;
    }

    .hero-wrapper .carousel-item{
        height:100vh;
        min-height:100vh;
        background-size:cover !important;
        background-position:center center !important;
    }

    .overlay{
        background:linear-gradient(
            to bottom,
            rgba(0,25,49,0.82),
            rgba(0,25,49,0.55)
        );
    }

    .hero-content{
        position:absolute;
        top:52%;
        left:50%;
        transform:translate(-50%, -50%);
        width:100%;
        z-index:10;
        padding:0 14px;
    }

    .hero-content .row{
        flex-direction:column;
    }

    /* ================= HERO TEXT ================= */

    .hero-content h1{
        font-size:2rem !important;
        line-height:1;
        margin-bottom:10px !important;
        text-align:left;
    }

    .hero-content .lead{
        font-size:12px;
        line-height:1;
        margin-bottom:8px !important;
        text-align:left;
    }

    .text-gold{
        display:block;
    }

    /* ================= HERO STATS ================= */

    .d-flex.gap-3{
        gap:10px !important;
        flex-wrap:wrap;
    }

    .h-stat{
        min-width:90px;
        padding-left:10px;
    }

    .h-stat h3{
        font-size:1.5rem;
        margin-bottom:2px;
    }

    .h-stat small{
        font-size:12px;
        line-height:1.3;
        display:block;
    }

    /* ================= FORM ================= */

    .glass-form{
        margin-top:24px;
        padding:22px 18px;
        border-radius:24px;
        background:rgba(255,255,255,0.16);
        backdrop-filter:blur(16px);
        box-shadow:0 15px 40px rgba(0,0,0,0.35);
    }

    .glass-form h4{
        font-size:1.8rem;
        margin-bottom:22px !important;
    }

    .form-control,
    .form-select{
        height:54px;
        border-radius:10px;
        font-size:14px;
        margin-bottom:14px !important;
        padding-left:14px;
    }

    .btn-gold{
        width:100%;
        height:54px;
        border-radius:10px;
        font-size:16px;
        font-weight:700;
    }

    /* ================= GENERAL SECTIONS ================= */

    section{
        overflow:hidden;
    }

    .py-5{
        padding-top:3rem !important;
        padding-bottom:3rem !important;
    }

    /* ================= TITLES ================= */

    h2,
    .section-title{
        font-size:2rem !important;
        line-height:1.3;
    }

    .section-title::after{
        width:45px;
        height:3px;
    }

    /* ================= CARDS ================= */

    .sgu-card,
    .program-card,
    .stat-box,
    .dean-card{
        margin-bottom:18px;
    }

    .stat-box{
        padding:20px 18px;
    }

    .sgu-card:hover{
        transform:none;
    }

    /* ================= ICONS ================= */

    .icon-circle{
        width:60px;
        height:60px;
        line-height:60px;
    }

    /* ================= PROGRAM SECTION ================= */

    .selector-card{
        padding:18px !important;
    }

    .custom-tabs{
        overflow-x:auto;
        flex-wrap:nowrap;
        white-space:nowrap;
        padding-bottom:10px;
    }

    .custom-tabs .nav-link{
        font-size:13px;
        padding:10px 16px;
    }

    /* ================= TESTIMONIAL ================= */

    .testimonial-card-v2{
        flex-direction:column;
        text-align:center;
        padding:20px;
    }

    .img-box-wrap{
        margin:0 auto 18px;
    }

    .img-box-wrap img{
        width:120px;
        height:120px;
    }

    .testimonial-para{
        font-size:13px;
    }

    /* ================= BACKDROP ================= */

    .main-tagline {
        font-size: 1.2rem !important;
        line-height: 1.5;
        padding: 0 10px;
    }

    .world-icon {
        width: 22px;
        height: 22px;
    }

    .university-backdrop {
        padding-top: 80px;
    }

    .backdrop-text {
        font-size: 4rem !important;
        letter-spacing: 5px !important;
        top: 40%;
    }

    .skyline-container {
        margin-top: -10px;
    }

    .sun-circle {
        width: 120px;
        height: 120px;
        bottom: 15px;
    }

    .skyline-silhouette {
        max-width: 100%;
    }

    /* ================= MARQUEE ================= */

    .marquee-wrap{
        padding:25px 0;
    }

    .marquee-content span{
        font-size:1.2rem;
        margin:0 25px;
    }

    /* ================= RECRUITERS ================= */

    .recruiter-marquee{
        padding:25px 0;
    }

    .r-logo{
        font-size:1.2rem;
        margin:0 25px;
    }

    /* ================= FOOTER ================= */

  
    footer{
        text-align:center;
        overflow:hidden;
    }

    footer .container{
        padding-left:40px;
        padding-right:40px;
    }

    /* LOGO */
    footer img{
        max-width:auto;
        height:auto;
        margin:auto;
        display:block;
    }

    /* BIG SGU TEXT */
    footer h1,
    footer .footer-logo-text{
        font-size:3.2rem !important;
        line-height:1;
        margin-bottom:10px;
        word-break:break-word;
    }

    /* PARAGRAPH */
    footer p{
        font-size:14px;
        line-height:1.6;
    }

    /* SOCIAL ICONS */
    .social-links,
    .footer-social{
        justify-content:center;
        gap:12px;
        flex-wrap:wrap;
        margin-top:18px;
    }

    .social-btn,
    .social-link{
        width:38px;
        height:38px;
        font-size:14px;
    }

    /* HEADINGS */
    footer h3,
    footer h4{
        font-size:1.7rem;
        margin-top:28px;
        margin-bottom:20px;
    }

    /* CONTACT ITEMS */
    .contact-item,
    .footer-contact li{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
        gap:8px;
        margin-bottom:20px;
    }

    .contact-item i,
    .footer-contact i{
        margin-right:0 !important;
        font-size:18px;
    }

    /* QUICK LINKS */
    .footer-links{
        padding-left:0;
        text-align:center;
    }

    .footer-links li{
        list-style:none;
        margin-bottom:10px;
    }

    .footer-links li a{
        font-size:14px;
    }

    .social-btn{
        margin:auto;
    }

     #scholarship .row{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:25px;
        text-align:center;
    }

    #scholarship .r-logo{
        width:100%;
        max-width:140px;
        height:auto !important;
        margin:auto;
        display:block;
        object-fit:contain;
    }

}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width: 480px){

    .hero-content{
        top:54%;
    }

    .hero-content h1{
        font-size:2rem !important;
    }

    .hero-content .lead{
        font-size:10px;
    }

    .glass-form{
        padding:18px 14px;
        border-radius:20px;
    }

    .glass-form h4{
        font-size:1.6rem;
    }
 .navbar-logo{
        height:50px;
    }

    .form-control,
    .form-select{
        height:50px;
        font-size:13px;
    }

    .btn-gold{
        height:50px;
        font-size:15px;
    }

    .h-stat h3{
        font-size:1.3rem;
    }

    .h-stat small{
        font-size:11px;
    }

    .section-title{
        font-size:1.7rem !important;
    }

    .backdrop-text{
        font-size:3.5rem;
    }


    .img-box-wrap img{
        width:100px;
        height:100px;
    } #scholarship .row{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:35px;
        text-align:center;
    }

    #scholarship .col-lg-3,
    #scholarship .col-md-3,
    #scholarship .col-6{
        width:100%;
        max-width:260px;
        flex:0 0 100%;
        margin:auto;
        text-align:center;
    }

    #scholarship img{
        width:auto;
        max-width:140px;
        height:auto;
        margin:0 auto 15px;
        display:block;
    }

    #scholarship h4,
    #scholarship p,
    #scholarship small{
        text-align:center;
        margin:auto;
    }
 
  
}


