/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#fff;
    color:#333;
    overflow-x:hidden;
    padding-top:110px;
}

/* =========================
   COLORS
========================= */

:root{
    --blue:#102E7D;
    --orange:#FF5A00;
    --green:#198754;
    --dark:#111;
    --white:#fff;
}

/* =========================
   TOP HEADER
========================= */

.top-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:var(--blue) !important;
    color:#fff;
    z-index:9999;
    padding:8px 0;
    transition:.4s;
}

.top-header a{
    color:#fff !important;
    text-decoration:none;
    font-size:14px;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar{
    position:fixed;
    top:42px;
    left:0;
    width:100%;
    background:#fff !important;
    z-index:9998;
    transition:.4s;
    border-bottom:3px solid var(--orange);
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.navbar-brand{
    display:flex;
    align-items:center;
}

/* LOGO */

.logo{
    height:45px !important;
    width:auto;
}

/* BRAND */

.brand-text{
    font-size:20px;
    font-weight:700;
    color:var(--blue) !important;
}

/* NAV LINKS */

.nav-link{
    color:#222 !important;
    font-weight:600;
    margin:0 6px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:var(--orange) !important;
}

/* MOBILE MENU */

.navbar-collapse{
    background:#fff;
    padding:15px;
}

/* DROPDOWN */

.dropdown-menu{
    border:none !important;
    border-top:3px solid var(--orange) !important;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.dropdown-item{
    padding:10px 15px;
}

.dropdown-item:hover{
    background:var(--blue);
    color:#fff;
}

/* =========================
   HERO
========================= */

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

#heroSlider{
    width:100%;
    height:100vh;
}

.hero-slide{
    width:100%;
    height:100vh;
    background-size:cover !important;
    background-position:center !important;
    background-repeat:no-repeat !important;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

.hero-content{
    width:100%;
    padding:20px;
    z-index:2;
}

.hero-content h1{
    font-size:75px;
    font-weight:800;
    line-height:1.2;
    text-shadow:0 5px 20px rgba(0,0,0,0.5);
}

.hero-content p{
    font-size:22px;
    max-width:750px;
    margin:auto;
    color:#f1f1f1;
}

.hero-content .btn{
    border-radius:50px;
    padding:14px 35px;
    transition:0.4s;
}

.hero-content .btn:hover{
    transform:translateY(-5px);
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:3rem;
    height:3rem;
}

@media(max-width:768px){

    #heroSlider,
    .hero-slide{
        height:100vh;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:16px;
    }

}


/* =========================
   BUTTONS
========================= */

.btn-danger,
.btn-success,
.btn-custom{
    background:var(--orange) !important;
    border:none !important;
    color:#fff !important;
    border-radius:30px;
    padding:10px 25px;
    transition:.3s;
}

.btn-danger:hover,
.btn-success:hover,
.btn-custom:hover{
    background:var(--blue) !important;
}

/* =========================
   CARDS
========================= */

.card,
.service-card,
.event-card,
.mission-card-white,
.impact-card{
    border:none !important;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card:hover,
.service-card:hover,
.event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.card{
    height:100%;
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-body{
    min-height:180px;
}

/* =========================
   ICONS
========================= */

.icon{
    width:70px;
    height:70px;
    margin:auto;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--blue),
        var(--orange)
    );

    color:#fff !important;
}

/* =========================
   FAQ
========================= */

.faq-section{
    background:#fff;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.custom-faq .accordion-button{
    background:#fff;
    color:#111;
    font-weight:600;
}

.custom-faq .accordion-button:not(.collapsed){
    background:var(--blue);
    color:#fff;
}

.custom-faq .accordion-body{
    background:#f8f9fa;
}

/* =========================
   CONTACT
========================= */

.main-card{
    border-radius:20px;
}

.form-control{
    border-radius:10px;
    padding:12px;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:var(--orange);
}

/* MAP */

.map-wrapper iframe{
    width:100%;
    height:100%;
    min-height:500px;
    border:0;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#fff !important;
    color:#111 !important;
}

footer p,
footer a,
footer h5{
    color:#111 !important;
}

footer a:hover{
    color:var(--orange) !important;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff !important;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    z-index:99999;

    text-decoration:none;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    body{
        padding-top:85px;
    }

    .top-header{
        display:none;
    }

    .custom-navbar{
        top:0;
    }

    .logo{
        height:35px !important;
    }

    .brand-text{
        font-size:14px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .nav-link{
        padding:10px 0;
    }

    .map-wrapper iframe{
        min-height:300px;
    }
}
/* ====================================
   FINAL FORCE THEME FIX
==================================== */

/* GLOBAL COLORS */
.bg-dark{
    background:#102E7D !important;
}

.bg-light{
    background:#ffffff !important;
}

.text-success{
    color:#FF5A00 !important;
}

.btn-danger{
    background:#FF5A00 !important;
    border:none !important;
}

.btn-danger:hover{
    background:#102E7D !important;
}

.btn-outline-success{
    border:2px solid #FF5A00 !important;
    color:#FF5A00 !important;
}

.btn-outline-success:hover{
    background:#FF5A00 !important;
    color:#fff !important;
}

.btn-outline-light:hover{
    background:#FF5A00 !important;
    border-color:#FF5A00 !important;
}

/* HERO */
.hero{
    background:
    linear-gradient(
        rgba(13,43,255,.75),
        rgba(255,90,0,.55)
    ),
    url('images/images/1.jpg') center/cover no-repeat !important;
}

/* NAVBAR */
.custom-navbar{
    background:#fff !important;
    border-bottom:4px solid #FF5A00 !important;
}

.nav-link{
    color:#102E7D !important;
    font-weight:600;
}

.nav-link:hover,
.nav-link.active{
    color:#FF5A00 !important;
}

/* BRAND */
.brand-text{
    color:#102E7D !important;
}

/* CARDS */
.card{
    border:none !important;
    border-top:4px solid #FF5A00 !important;
    border-radius:15px !important;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-5px);
    transition:.3s;
}

/* ICONS */
.icon,
.icon-box{
    background:linear-gradient(
        135deg,
        #102E7D,
        #FF5A00
    ) !important;

    color:#fff !important;
}

/* FOOTER */
footer{
    background:#102E7D !important;
    color:#fff !important;
}

footer *{
    color:#fff !important;
}

footer a:hover{
    color:#F5B400 !important;
}

/* FAQ */
.faq-section{
    background:#fff !important;
}

.accordion-button{
    background:#fff !important;
    color:#102E7D !important;
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:#FF5A00 !important;
    color:#fff !important;
}

/* TEAM SECTION */
.team-section,
section[style*="#121212"]{
    background:#102E7D !important;
}

/* BLOG SECTION */
section[style*="#0f0f0f"]{
    background:#102E7D !important;
}

/* CONTACT */
.contact-section{
    background:#f8f9fa !important;
}

/* WHATSAPP */
.whatsapp-float{
    background:#FF5A00 !important;
}

.whatsapp-float:hover{
    background:#102E7D !important;
}

/* =========================
   UMEED RISE FOUNDATION THEME
   Blue + Orange Theme
========================= */

body{
    font-family: 'Poppins', sans-serif;
    background:#f8f9fa;
    overflow-x:hidden;
}

/* =========================
   TOP HEADER
========================= */

.top-header{
    background: linear-gradient(90deg,#0033cc,#ff6600);
    position:fixed;
    top:0;
    width:100%;
    z-index:9999;
    transition:0.4s;
}

.top-header a{
    text-decoration:none;
    transition:0.3s;
}

.top-header a:hover{
    color:#ffd700 !important;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar{
    background:#fff;
    position:fixed;
    top:42px;
    width:100%;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    transition:0.4s;
}

.logo{
    width:55px;
    height:55px;
    object-fit:contain;
}

.brand-text{
    font-weight:700;
    font-size:22px;
    color:#0033cc;
}

.navbar-nav .nav-link{
    color:#222 !important;
    font-weight:600;
    margin-left:10px;
    transition:0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#ff6600 !important;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,51,204,0.75),
    rgba(255,102,0,0.55)),
    url('images/images/m10.jpeg');
    background-size:cover;
    background-position:center;
    padding-top:130px;
}

.hero h1{
    font-size:55px;
    font-weight:800;
}

.hero p{
    font-size:18px;
}

.btn-danger{
    background:#ff6600 !important;
    border:none;
}

.btn-danger:hover{
    background:#e65c00 !important;
}

.btn-success{
    background:#0033cc !important;
    border:none;
}

.btn-success:hover{
    background:#002699 !important;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
    background:#ffffff !important;
    color:#222 !important;
}

.about-section h2{
    color:#0033cc !important;
}

.about-section .text-success{
    color:#ff6600 !important;
}

.about-section p{
    color:#555 !important;
}

.about-section .card{
    background:#f8f9fa !important;
    border:none;
    border-radius:15px;
    transition:0.3s;
}

.about-section .card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* =========================
   SERVICE CARDS
========================= */

.service-card{
    border-radius:20px;
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card .icon{
    color:#0033cc !important;
}

.service-card h4{
    color:#ff6600;
}

/* =========================
   IMPACT SECTION
========================= */

.impact-section{
    background:linear-gradient(135deg,#0033cc,#001a66);
}

.impact-card{
    background:#fff;
    border-radius:20px;
    color:#222;
    transition:0.3s;
}

.impact-card:hover{
    transform:scale(1.05);
}

.counter{
    color:#ff6600 !important;
    font-weight:800;
}

/* =========================
   MISSION SECTION
========================= */

.mission-section h2{
    color:#0033cc;
}

.mission-section .text-success{
    color:#ff6600 !important;
}

.mission-box{
    border-radius:20px;
}

.mission-card-white{
    background:#fff;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.mission-card-white:hover{
    transform:translateY(-8px);
}

.mission-card-white h4{
    color:#0033cc !important;
}

/* =========================
   EVENT SECTION
========================= */

.event-card{
    border-radius:20px;
    overflow:hidden;
    transition:0.3s;
}

.event-card:hover{
    transform:translateY(-8px);
}

.event-card h5{
    color:#0033cc;
}

/* =========================
   TEAM SECTION
========================= */

.team-section{
    background:#f5f7ff;
}

.team-section h2{
    color:#0033cc;
}

.team-section .text-success{
    color:#ff6600 !important;
}

/* =========================
   BLOG SECTION
========================= */

.blog-section{
    background:#ffffff;
}

.blog-section h2{
    color:#0033cc;
}

/* =========================
   FAQ SECTION
========================= */

.faq-section{
    background:#f8f9fa;
}

.faq-section h2{
    color:#0033cc !important;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
}

.custom-faq .accordion-button{
    background:#0033cc;
    color:#fff;
    font-weight:600;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#ff6600;
    color:#fff;
}

.custom-faq .accordion-body{
    background:#fff;
    color:#333;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    background:#f8f9fa !important;
}

.main-card{
    border-radius:20px;
}

.contact-section h2{
    color:#0033cc;
}

.contact-section .text-success{
    color:#ff6600 !important;
}

.form-control{
    border-radius:10px;
    padding:12px;
    border:1px solid #ddd;
}

.form-control:focus{
    box-shadow:none;
    border-color:#0033cc;
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    min-height:500px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#0033cc !important;
    color:#fff !important;
}

footer h5{
    color:#fff;
}

footer .text-success{
    color:#ffcc00 !important;
}

footer a{
    color:#fff !important;
    transition:0.3s;
}

footer a:hover{
    color:#ffcc00 !important;
}

footer .text-muted{
    color:#ddd !important;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:20px;
    right:20px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    text-align:center;
    font-size:30px;
    z-index:999;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .brand-text{
        font-size:15px;
    }

    .hero h1{
        font-size:35px;
    }

    .hero{
        padding-top:140px;
    }

    .top-header{
        display:none;
    }

    .custom-navbar{
        top:0 !important;
    }

    .map-wrapper iframe{
        min-height:300px;
    }
}
html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

/* HERO SLIDER */
#heroSlider{
    width:100%;
    height:100vh;
}

/* FULL HEIGHT */
#heroSlider .carousel-inner,
#heroSlider .carousel-item{
    height:100vh;
}

/* HERO SLIDE */
.hero-slide{
    width:100%;
    height:100vh;

    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

/* OVERLAY */
.hero-slide::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

/* CONTENT */
.hero-content{
    position:relative;
    z-index:2;

    text-align:center;
    color:#fff;

    max-width:900px;
    padding:20px;
}

/* TITLE */
.hero-content h1{
    font-size:75px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
    text-shadow:0 5px 15px rgba(0,0,0,0.5);
}

/* TEXT */
.hero-content p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:30px;
    color:#f1f1f1;
}

/* BUTTONS */
.hero-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btns .btn{
    border-radius:50px;
    padding:14px 35px;
    font-weight:600;
    transition:0.4s;
}

.hero-btns .btn:hover{
    transform:translateY(-5px);
}

/* INDICATORS */
.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:3rem;
    height:3rem;
}

/* MOBILE */
@media(max-width:768px){

    #heroSlider,
    #heroSlider .carousel-inner,
    #heroSlider .carousel-item,
    .hero-slide{
        height:100vh;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-btns{
        flex-direction:column;
        align-items:center;
    }

}

/* FULL HERO SLIDER */

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

/* NAVBAR HEIGHT FIX */
.custom-navbar{
    position: relative;
    z-index: 999;
}

/* HERO SLIDER */
#heroSlider{
    width:100%;
}

/* FULL SCREEN */
#heroSlider .carousel-item{
    height:calc(100vh - 0px);
}

/* SLIDE */
.hero-slide{
    width:100%;
    height:100vh;

    background-size:cover !important;
    background-position:center !important;
    background-repeat:no-repeat !important;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

/* OVERLAY */
.hero-slide::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

/* CONTENT */
.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    padding:20px;
}

.hero-content h1{
    font-size:70px;
    font-weight:800;
    color:#fff;
}

.hero-content p{
    font-size:22px;
    color:#fff;
}

/* MOBILE */
@media(max-width:768px){

    .hero-slide{
        height:100vh;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }
}



.google-form iframe{
    width:100%;
    height:1200px;
    border:none;
    border-radius:15px;
}

@media(max-width:768px){
    .google-form iframe{
        height:1600px;
    }
}
