* { 
    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-left-radius: 50px; */
        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;
        }

/* Contact Section Background */
.contact-section {
    background-color: #f8f9fc;
}

.contact-info-box {
    background-color: #0f2b63;   
    color: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-info-box h3 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.contact-info-box h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #1ea7c6;
    display: block;
    margin-top: 8px;
    border-radius: 5px;
}

.contact-info-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #d6d6d6;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-item i {
    color: #1ea7c6;
    font-size: 16px;
}

.contact-item strong {
    font-weight: 600;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
}

/* Form Card Box */
.contact-form-box {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-box h3 {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.contact-form-box h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #1ea7c6;
    display: block;
    margin-top: 8px;
    border-radius: 5px;
}

.contact-form-box .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    transition: 0.3s ease;
}

.contact-form-box .form-control:focus {
    border-color: #1ea7c6;
    box-shadow: 0 0 0 0.2rem rgba(30, 167, 198, 0.15);
}

.contact-form-box .btn-primary {
    background-color: #0f2b63;
    border: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;
}

.contact-form-box .btn-primary:hover {
    background-color: #1ea7c6;
    transform: translateY(-2px);
}

/* ===== Contact Section Animation ===== */

.contact-info-box {
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInLeft 1s ease forwards;
}

.contact-form-box {
    opacity: 0;
    transform: translateX(60px);
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.3s;
}

/* Contact items stagger effect */
.contact-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.contact-item:nth-of-type(1) { animation-delay: 0.5s; }
.contact-item:nth-of-type(2) { animation-delay: 0.7s; }
.contact-item:nth-of-type(3) { animation-delay: 0.9s; }

/* Keyframes */

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 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;
}