/* NAVBAR STARTS */

.top-bar {
    background: #233c8b;   
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.top-bar a:hover {
    color: #F26A0A;   
}

/* Left section */
.top-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
}

.top-left i {
    font-size: 12px;
    margin-right: 4px;
}

.divider {
    opacity: 1.5;
}

.top-right a {
    margin-left: 12px;
    font-size: 14px;
}

@media (max-width: 768px) {

    .top-bar {
        padding: 8px 0;
    }

    .top-left {
        flex-direction: column;
        gap: 4px;
        font-size: 12px;
    }

    .divider {
        display: none;   
    }

    .top-right {
        margin-top: 6px;
    }

    .top-right a {
        margin: 0 8px;
    }
}


/* Navbar */
.navbar {
    padding-top: 4px 0;
   min-height: 30px;
}

.navbar-brand {
    font-size: 14px;
    font-weight: 400;
}

.navbar-toggler {
    border: none;
    padding:2px 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Desktop spacing tighter */
.navbar-nav .nav-link {
    font-weight: 400;
    padding: 2px 8px;
    margin: 0;
    font-size: 13.5px;
}

/* Mobile View */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        padding: 2px 0;
        margin-top: 2px;
    }

    .navbar-nav {
        text-align: left;        
    }

    .navbar-nav .nav-link {
        padding: 4px 8px;
        font-size: 14px;
    }
}


/* NAVBAR CSS */
.main-navbar {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Nav Links */
.main-navbar .nav-link{
    color:#162c6b;
    font-size:15px;
    font-weight:650;
    margin-left:20px;
    transition:0.3s;
}

/* Hover Effect */
.main-navbar .nav-link:hover {
    color: #F26A0A;
}

/* Dropdown Menu Box */
.main-navbar .dropdown-menu {
    border: none;
    border-radius: 14px;
    padding: 10px 0;
    margin-top: 10px;
    min-width: 200px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: fadeInDropdown 0.25s ease;
}

/* Dropdown Items */
.main-navbar .dropdown-item {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

/* Hover Effect */
.main-navbar .dropdown-item:hover {
    background-color: #f2f6ff;
    color: #F26A0A;
    padding-left: 24px;   /* smooth slide effect */
}

/* Smooth Fade Animation */
@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Button */
.contact-btn {
    background-color: #233c8b;
    color: white;
    padding: 10px 30px;
    border-radius: 75px;
    font-weight: 500;
    transition: 0.3s;
    text-decoration: none;
}

.contact-btn:hover {
    background-color: #F26A0A;
    color: white;
}

/* Mobile Navbar Styling */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #ffffff;
    padding: 22px;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin-bottom: 15px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #333 !important;
  }

  .navbar-nav .nav-link:hover {
    color: #F26A0A !important;
  }

  /* Dropdown menu styling */
  .dropdown-menu {
    border: none;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
  }

  .dropdown-item {
    padding: 10px;
    font-size: 16px;
  }

  .dropdown-item:hover {
    background: #e9ecef;
  }

  /* Contact Button */
  .contact-btn {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    margin-top: 10px;
  }

}

/* Logo */
.logo img {
    height: 85px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}

/* Top bar social icons */
.top-bar {
    background-color: #233c8b;
    font-size: 14px;
}

.top-right a {
    color: #fff;
    margin-left: 12px;
    font-size: 18px;
    transition: 0.3s;
    padding: 10px;
}

.top-right a:hover {
    color: #F26A0A;
}

@media (max-width: 768px) {
    .top-right {
        margin-top: 5px;
    }
}

/* NAVBAR ENDS */

/* FOOTER SECTION STARTS */
.footer{
    position: relative;
    background: url('image/footer.jpg') center center/cover no-repeat;
    padding-top: 80px;
    overflow: hidden;
}

/* Dark Overlay */
.footer::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(22,44,107,0.88);
    z-index:1;
}

/* Bring Content Above Overlay */
.footer .container{
    position: relative;
    z-index: 2;
    width:90%;
    max-width:1300px;
    margin:auto;
    font-family:'Montserrat',sans-serif;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-about img{
    height:80px;
    margin-bottom:20px;
    background:#fff;
    padding:8px;
    border-radius:8px;
}

.footer-about p{
    color:#f1f1f1;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-links h3,
.footer-contact h3{
    margin-bottom:25px;
    font-size:22px;
    color:#F26A0A;
    font-weight:600;
}

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links ul li{
    margin-bottom:14px;
}

.footer-links ul li a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:#F26A0A;
    padding-left:6px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.contact-item i{
    color:#F26A0A;
    font-size:18px;
    margin-top:4px;
}

.contact-item span{
    color:#ffffff;
    line-height:1.7;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.15);
    color:#fff;
    border-radius:50%;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#F26A0A;
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.25);
    padding:25px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    margin:0;
    color:#ffffff;
    font-size:14px;
}

.footer-bottom a{
    color:#F26A0A;
    text-decoration:none;
}

.footer-bottom a:hover{
    color:#ffffff;
}

/* Responsive */

@media(max-width:992px){

    .footer-top{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .footer-about{
        grid-column:1/-1;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .contact-item{
        justify-content:center;
        text-align:left;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:480px){

    .footer-about p,
    .footer-links a,
    .contact-item span{
        font-size:14px;
    }

    .footer-links h3,
    .footer-contact h3{
        font-size:18px;
    }
}
/* FOOTER SECTION ENDS */


/* Banner */

.page-banner{
    background:
    linear-gradient(
    rgba(35,60,139,0.88),
    rgba(22,44,107,0.88)),
    url('image/banner-1.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
    padding:100px 0;
}


.page-banner h1{
    font-size:50px;
    margin-bottom:15px;
}

.page-banner p{
    font-size:18px;
}

/* Banner end */

/* about section */
.about-main{
    padding:80px 0;
    background:#fff;
}

.about-text h5{
    color:#ffffff;
    font-size:16px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:10px;
}

.about-text h2{
    font-size:42px;
    font-weight:700;
    color:#233c8b;
    margin-bottom:25px;
    line-height:1.2;
}

.about-text p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

/* Animation */

.about-text{
    opacity:0;
    transform:translateX(-50px);
    animation:slideLeft 1s ease forwards;
}

.about-image{
    opacity:0;
    transform:translateX(50px);
    animation:slideRight 1s ease forwards;
    animation-delay:.3s;
}

/* About Image */

.about-image{
    width:100%;
    max-width:500px;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:.4s;
}

.about-image:hover{
    transform:scale(1.03);
}

/* choose */
.service-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
    height:100%;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-img{
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.service-box:hover .service-img img{
    transform:scale(1.08);
}

.service-content{
    padding:25px;
    text-align:center;
}

.service-content h4{
    font-size:22px;
    color:#233c8b;
    margin-bottom:15px;
    font-weight:600;
}

.service-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.goal-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    color:#233c8b;
    margin-bottom:15px;
    position:relative;
}

.goal-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#F26A0A;
    display:block;
    margin:15px auto 0;
    border-radius:50px;
}


        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #233c8b;                
            position: relative;
        }

        .service-img img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: 0.8s ease;
            border-radius: 20px;
            display: block;
            margin: 15px auto 0;
        }

        .service-box:hover img {
            transform: scale(1.1);
        }

        .service-img img{
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: 0.8s ease; 
    }

        .service-content {
            padding: 25px;
            text-align: center;
            position: relative;
        }

        .service-number {
            font-size: 60px;
            font-weight: 700;
            color: rgba(212,175,55,0.08);
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .service-content h4 {
            font-weight: 600;
            margin-bottom: 12px;
            position: relative;
        }

        .service-content p {
            font-size: 14px;
            color: #666;
        }

        .service-box{
            border-radius: 20px;
            box-shadow:0 20px 50px rgba(0,0,0,0.08) ;
        }

        .service-number {
            font-size: 60px;
            font-weight: 700;
            color: rgba(212,175,55,0.08);
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .service-content h4 {
            font-weight: 600;
            margin-bottom: 12px;
            position: relative;
        }

        .service-content p {
            font-size: 14px;
            color: #666;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .service-wrapper {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 576px) {
            .service-wrapper {
                grid-template-columns: 1fr;
            }
            .service-img img{
                height: 200px;
            }
            .section-title{
                font-size: 26px;
            }
        }

        .service-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fdf2e8;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
}

.service-icon i{
    font-size:38px;
    color:#F26A0A;
}

.service-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-box:hover .service-icon{
    background:#F26A0A;
}

.service-box:hover .service-icon i{
    color:#fff;
}

.service-content h4{
    font-size:22px;
    margin-bottom:15px;
    color:#1e3a8a;
}

.service-content p{
    color:#666;
    line-height:1.8;
}
        
/* mv */

.mission-vision-section{
    padding:80px 0;
    margin-bottom: 40px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background:#f8f9fc;
}

.mv-card{
    background:#fff;
    padding:40px 35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.4s ease;
    height:100%;
    margin-bottom: 30px;
}

.mv-card:hover{
    transform:translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.mv-card h4{
    color:#F26A0A;
    font-size:28px;
    margin-bottom:20px;
    font-weight:700;
}

.mv-card p{
    color:#666;
    line-height:1.9;
    font-size:15px;
}

.goal-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #233c8b;                  
    margin-bottom: 60px;
    position: relative;
}

/* Underline Effect */
.goal-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #F26A0A;             
    display: block;
    margin: 15px auto 0;
    border-radius: 5px;
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@media(max-width:991px){

    .about-main{
        text-align:center;
    }

    .about-text h2{
        font-size:34px;
    }

    .about-image{
        max-width:100%;
        height:400px;
        margin-top:30px;
    }

    .goal-title{
        font-size:32px;
    }
}

@media(max-width:768px){

    .about-main{
        padding:60px 0;
    }

    .about-text h2{
        font-size:28px;
    }

    .about-image{
        height:300px;
    }

    .service-img img{
        height:220px;
    }

    .goal-title{
        font-size:28px;
    }

    .mv-card{
        margin-bottom:20px;
    }
}


.about-image{
    width:100%;
    max-width:500px;
    height:450px;
    object-fit:cover;
    border-radius:20px;
    display:block;
    margin:auto;
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 1.2s ease forwards;
    animation-delay: 0.4s;
}

.about-main{
    padding:80px 0;
}

.about-text{
    padding-right:30px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 1.2s ease forwards;
}



/* About Main Section */


.about-text h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #233c8b;
}

.about-image:hover {
    transform: scale(1.03);
}

/* Keyframes */

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

 /* Choose */
      
        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #233c8b;                
            position: relative;
        }

        .service-img img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: 0.8s ease;
            border-radius: 20px;
            display: block;
            margin: 15px auto 0;
        }

        .service-box:hover img {
            transform: scale(1.1);
        }

        .service-img img{

    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.8s ease;
}
        .service-content {
            padding: 25px;
            text-align: center;
            position: relative;
        }

        .service-number {
            font-size: 60px;
            font-weight: 700;
            color: rgba(212,175,55,0.08);
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .service-content h4 {
            font-weight: 600;
            margin-bottom: 12px;
            position: relative;
        }

        .service-content p {
            font-size: 14px;
            color: #666;
        }

        .service-box{
            border-radius: 20px;
            box-shadow:0 20px 50px rgba(0,0,0,0.08) ;
        }

        .service-number {
            font-size: 60px;
            font-weight: 700;
            color: rgba(212,175,55,0.08);
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .service-content h4 {
            font-weight: 600;
            margin-bottom: 12px;
            position: relative;
        }

        .service-content p {
            font-size: 14px;
            color: #666;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .service-wrapper {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 576px) {
            .service-wrapper {
                grid-template-columns: 1fr;
            }
            .service-img img{
                height: 200px;
            }
            .section-title{
                font-size: 26px;
            }
        }
        
.section-tag{
    display:inline-block;
    background:#F26A0A;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    font-family:'Montserrat',sans-serif; 
    margin-bottom:20px;
}


.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    text-decoration: none !important;
    width:65px;
    height:65px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    z-index:9999;

    box-shadow:
    0 10px 25px rgba(37,211,102,.35);

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,.5);
    }

    70%{
        box-shadow:
        0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }

}

