* { 
    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 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;
    text-decoration: none;
    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;
  }

  /* Contact Button */
  .contact-btn {
    display: block;
    text-decoration: none;
    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;
    }
}

/* hero */
#slider .carousel-item {
    height: 65vh;   
    position: relative;
}

#slider .carousel-item img {
    height: 75vh;
    object-fit: cover;
    filter: brightness(65%);
}

/* Caption */
#slider .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
    z-index: 2;
}

#slider .carousel-caption h5,
#slider .carousel-caption h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

#slider .carousel-caption p {
    font-size: 18px;
    margin-top: 15px;
    color: #f1f1f1;
}

.btn-orange {
    background-color: #3b3f8c;   
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-orange:hover {
    background-color: #4fa3d1;
    transform: scale(1.05);
}

/* Softer Arrow Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255,255,255,0.2);
    padding: 18px;
    border-radius: 50%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes */
.animate-fadeUp {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.animate-fadeRight {
    opacity: 0;
    animation: fadeRight 1.2s ease forwards;
}

/* Delay helpers */
.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}



section.py-5 { 
    padding: 100px 0;
    background: #F5F8FC; 
}


h2.fw-bold span {
    font-size: 40px;
    font-weight: 700;
    padding-left: 0 !important;
    color: #3b3f8c;
}


#aboutMore p strong {
    color: #1B1F5E;
    font-size: 16px;
}


.about-img {
    width: 500px;
    height: 800px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    margin-top: 28px;
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive Fix */
@media (max-width: 768px) {

    h2.fw-bold span {
        font-size: 28px;
    }

    section.py-5 {
        padding: 60px 0;
    }

}

/* products */
.container.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.product-animate {
    opacity: 0;
    transform: translateY(50px);
    animation: productFadeUp 2s ease forwards;
}

.product-animate:nth-child(1) { animation-delay: 1s; }
.product-animate:nth-child(2) { animation-delay: 1.8s; }
.product-animate:nth-child(3) { animation-delay: 2.3s; }

@keyframes productFadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.card {
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-img-top {
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Card Styling */
.card {
    border: 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    transition: 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* Image Styling */
.card-img-top {
    height: 220px;
    object-fit: cover;
    border-radius: 30%;
}

/* Card Body */
.card-body {
    padding: 25px;
    text-align: center;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1B1F5E;
    margin-bottom: 15px;
}

.card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

 /* Goals */
.goal-section {
    padding: 100px 0;     
    color: #c6dbef;
}

.goal-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.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;
}


.goal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;    
}                 

.goal-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    height: 100%;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.goal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3B3F8C, #4FA3D1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.goal-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1B1F5E;
    margin-bottom: 15px;
}

.goal-card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.goal-card {
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeUp 5s ease forwards;
}

.goal-card:nth-child(1) {
    animation-delay: 0.5s;
}
.goal-card:nth-child(2) {
    animation-delay: 1s;
}
.goal-card:nth-child(3) {
    animation-delay: 2s;
}
.goal-card:nth-child(4) {
    animation-delay: 2.5s;
}

@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive */
@media (max-width: 992px) {
    .goal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .goal-grid {
        grid-template-columns: 1fr;
    }

    .goal-title {
        font-size: 28px;
    }
}

/* Certificate Section */
.certificate-section {
    background-color: #f8f9fc;
    padding: 60px 0;
    text-align: center;
}

/* Section Title */
.section-title {
    font-weight: 600;
    color: #0f2b63;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: #1ea7c6;
    margin: 10px auto 0;
    border-radius: 5px;
}

.certificate-container {
    max-width: 400px;   
    margin: 0 auto;     
}

.certificate-container img {
    width: 100%;
    height: auto;
    display: block;
    align-items: center;
}


/* Hover Effect */
.certificate-card:hover {
    transform: translateY(-6px);
}

/* Whatsapp hovering */
 .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #248232;
    color: #FFF;
    transform: scale(1.1);
}

/* 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: #c4c5dc;
    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;
}
