@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

/* ------------------ NAVBAR ------------------ */
.navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background-color: #212B5A !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}
.navbar-nav .nav-link {
    color: white !important;
}
.navbar-nav .nav-link:hover {
    color: #f8f9fa !important;
}
.navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 600;
}
.dropdown-menu .dropdown-item {
    color: #212529;
}
.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.dropdown-toggle::after {
    margin-left: 0.5em;
}

/* ------------------ BANNER ------------------ */
.banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* lock container to 16:9 */
  max-height: 600px;      /* never exceed 600px */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;     /* keeps z-index layering predictable */
}

.banner-ht300 {
    max-height:300px
}

.banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills the frame, no distortion */
  object-position: center; /* subject stays centered */
  z-index: -1;             /* push behind content */
}

.banner .content {
  position: relative;
  z-index: 1;
  max-width:50%;
  text-align: center;
  color: #fff;
}
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 30, 96, 0.6);
    z-index: 1;
}

.btn-banner {
    background: #fff;
    color: #001E60;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background: #f8f9fa;
    color: #001E60;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .banner {
        height: 300px; /* shorter hero */
    }

    .banner .content {
        font-size: 1.5rem; /* smaller headline (~32px) */
        max-width:95%;
    }

    .banner .content h1 {
        font-size: 1.5rem; /* smaller headline (~32px) */
    }

    .banner .content p {
        font-size: 1rem; /* smaller body text (~16px) */
    }

    .btn-banner {
        background: #fff;
        color: #001E60;
        border: none;
        padding: 6px 20px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .content-part-right {
        align-items: center; /* Center content horizontally */
        text-align: center;  /* Center text */
    }

    .btn-contact {
        margin-bottom: 20px; /* Space between button and image */
    }
}

/* ------------------ SECTIONS ------------------ */
.intro-section {
    padding: 50px 0 0px 0;
}
.features-section {
    background: #fff;
}
.feature-item {
    padding: 30px 20px;
    height: 100%;
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
}
.feature-icon {
    /* width: 100px;
    height: 100px;
    background: #FF8200; 
    border: 5px solid #ffb399;
    border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.feature-icon img {
    width: 70px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}
.feature-item:hover .feature-icon {
    /* background: #e55a2b; */
    transform: scale(1.1);
}
.feature-heading {
    color: #212B5A;
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 10px;
}
.feature-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Two-Part Section */
.two-part-section,
.two-part-section-alt {
    padding: 60px 0;
}
.two-part-section { background: #f8f9fa; }
.two-part-section-alt { background: #fff; }
.content-part-left { padding-right: 40px; text-align: justify; }
.content-part-right { padding-left: 40px; text-align: justify; }
.section-heading {
    color: #212B5A;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    text-align: left;
}
.section-text {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    color: #495057;
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.feature-list li i {
    color: #ff6b35;
    margin-right: 12px;
    font-size: 1.1rem;
}
.image-part {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image {
    width: 85%;
    min-height: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.section-image:hover {
    transform: scale(1.05);
}

/* ------------------ COUNTERS ------------------ */
.counter-section {
    padding: 30px 0 5px;
    background: linear-gradient(135deg, #212B5A 0%, #001E60 100%);
    color: white;
}
.counter-item {
    padding: 30px 20px;
    transition: transform 0.3s ease;
}
.counter-item:hover { transform: translateY(-10px); }
.counter-icon {
    /* width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.2);
    border: 3px solid #ff6b35;
    border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.counter-icon img {
    width: 60px;
}

.counter-icon i {
    font-size: 2rem;
    color: #ff6b35;
}
.counter-item:hover .counter-icon {
    /* background: #ff6b35; */
    transform: scale(1.1);
}
.counter-item:hover .counter-icon i {
    color: white;
}
.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}
.counter-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    letter-spacing: 1px;
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: #001E60;
    color: white;
    padding: 60px 0 0;
}
.footer-main { padding-bottom: 0; }
.footer h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
}
.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}
.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}
.footer a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}
.footer a:hover { color: #ff6b35; }

.contact-section { height: 100%; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-icon {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}
.contact-content h6 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.contact-content p,
.contact-content a {
    color: #ccc;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-content a:hover { color: #ff6b35; }

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: #001E60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align:center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    background: #212B5A;
    padding: 20px 0;
    color: #888;
    border-top: 1px solid #333;
    text-align: center;
}
.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    color: #ddd;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: #ff6b35; }


.image-part-aboutus {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem; /* space below for mobile */
}

.image-part-aboutus img {
    width: 70%;
    /* max-width: 100%; */
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Default stacking (for mobile/tablet) */
.image-part-aboutus .img-one,
.image-part-aboutus .img-two {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    margin: 0.5rem; /* small gap between them */
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 991px) {
    .content-part-left { padding: 0; }
    .content-part-right { padding: 20px 0 0; }
    .section-heading { font-size: 1.6rem; }
    .section-image { width: 95%; }
    .navbar-collapse {background: #212B5A;padding: 1rem;border-radius: 0 0 10px 10px;}
}
@media (max-width: 768px) {
    .banner-overlay h1 { font-size: 2rem; }
    .banner-overlay p { font-size: 1rem; }
    .banner-overlay { padding: 40px 20px; }
    .social-icons { justify-content: center; margin-top: 20px; }
    .image-part-aboutus img {
        width: 50%;
    }
}

/* Overlap effect only on desktop (≥992px) */
@media (min-width: 992px) {
    .image-part-aboutus .img-one {
        position: relative;
        z-index: 1;
        margin: 0;
    }

    .image-part-aboutus .img-two {
        position: absolute;
        top: 20%;
        left: 30%;
        z-index: 2;
        margin: 0;
    }

    /* Hover effect */
    .image-part-aboutus img:hover {
        z-index: 3;
        transform: scale(1.05);
    }
}

.btn-contact {
    display: inline-block;
    padding: 12px 0;
    text-align:center;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #212B5A;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width:300px
}

.btn-contact:hover {
    background: #3b4ba8;
    box-shadow: 0 0 15px rgba(59,75,168,0.6);
}

.cta-section {
  background: linear-gradient(135deg, #212B5A, #4A5FC1);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1000px;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #0d6efd;
  color: #fff;
}

.btn-primary:hover {
  background: #e6c200;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #666;
}

.text-orange {
  color: #ff6600 !important; /* Bright orange */
}

.loggedin-banner {
    position: relative;
    background-color: transparent !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #212B5A !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-recaptcha {
  display: inline-block;
  margin: 0 auto;
}

.contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.copyright-section {
    color: #DDD
}