
* { 
    font-family: poppins, sans-serif; 
}
        

/* top bar */
.top-bar {
    background: #1f2a44;   
    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: #4fa3d1;   
}

/* 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: #333;
    font-weight: 500;
    margin-left: 25px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect */
.main-navbar .nav-link:hover {
    color: #4fa3d1;
}

/* 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: #0f2b63;
    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: #3b3f8c;
    color: white;
    padding: 10px 30px;
    border-radius: 75px;
    font-weight: 500;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: #4fa3d1;
    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: #4fa3d1 !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: #3b3f8c;
    font-size: 14px;
}

.top-right a {
    color: #fff;
    margin-left: 12px;
    font-size: 18px;
    transition: 0.3s;
    padding: 10px;
}

.top-right a:hover {
    color: #98c1d9;
}

@media (max-width: 768px) {
    .top-right {
        margin-top: 5px;
    }
}

/* orange banner */
.about-hero {
    background:linear-gradient(#4fa3d1,#3b3f8c);
    padding: 50px 0; 
    position: relative; 
    border-bottom-right-radius: 80px; 
}

.page-title {
    font-size: 32px;   
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 5px, 5px, 10px, #000;
}

.breadcrumb-text {
    font-size: 14px;
    margin: 0;
}

.breadcrumb-text a {
    color: white;
    text-decoration: none;
}

.breadcrumb-text a:hover {
    text-decoration: underline;
}

/* About Main Section */
.about-main {
    background: #ffffff;
}

.about-text h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0d1b2a;
}

.about-text p {
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
}

.about-image {
    max-width: 100%;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: 0.5s ease;
}

.about-image:hover {
    transform: scale(1.03);
}


.about-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 1.2s ease forwards;
}

.about-image {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 1.2s ease forwards;
    animation-delay: 0.4s;
}

/* 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: #1B1F5E;                
            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 {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.6s ease;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transform: translateY(60px);
            opacity: 0;
        } */

        .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;
            }
        }
        

/* mission-vission card */
.mission-vision-section {
    background: #ade8f4; 
    padding: 4rem 0px;
    margin-bottom: 40px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    margin-bottom: 30px;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.mv-card h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3b3f8c;
    /* text-decoration: underline #fff 3px; */
}

.mv-card p {
    color: #4fa3d1;
    line-height: 1.7;
}

.goal-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1B1F5E;                  
    margin-bottom: 60px;
    position: relative;
}

/* Underline Effect */
.goal-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #4FA3D1;             
    display: block;
    margin: 15px auto 0;
    border-radius: 5px;
}

/* footer */
.custom-footer {
    background-color: #0f2b63;
    color: #ffffff;
    font-size: 14px;
}

.custom-footer h6,
.custom-footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.custom-footer h6::after,
.custom-footer h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #1ea7c6;
    display: block;
    margin-top: 8px;
    border-radius: 5px;
}

.custom-footer p {
    color: #d6d6d6;
    line-height: 1.7;
}

.custom-footer a {
    color: #d6d6d6;
    text-decoration: none;
    transition: 0.3s ease;
}

.custom-footer a:hover {
    color: #1ea7c6;
    padding-left: 5px;
}

.custom-footer i {
    color: #1ea7c6;
    margin-right: 8px;
}

.footer-copyright {
    background-color: #0b2047;
    font-size: 13px;
}