
.navbar {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    padding-top: 70px;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
    padding:7px ;
    font-size: 15px;
}
.navbar-logo {
    height: 90px;  /* Adjust height as needed */
    width: auto;   /* Maintain aspect ratio */
    max-width: 100%;
}

.nav-link {
    color: rgb(32, 31, 31) !important;
    font-weight: 600;
}

.navbar-nav .nav-item .nav-link:hover {
    color: rgb(4, 4, 77); /* Change text color on hover */
    border-bottom: 2px solid rgb(4, 4, 77); /* Add bottom border on hover */
}
.nav-item:hover .dropdown-menu {
    display: block;
    border-radius: 0px;
    padding: 20px;
}
.dropdown-item{
    color: #adadad;
    text-decoration: none;
}
/* Dropdown Icon */
.dropdown-icon {
    font-size: 14px;
    margin-left: 5px;
    transition: transform 0.3s ease-in-out;
}

.navbar-nav .nav-link .dropdown-icon {
    color: rgba(101, 100, 100, 0.8) !important; /* Light grayish white */
    font-size: 10px;
}
.navbar-toggler {
    background-color: white; /* White background for toggle button */
    border: none; /* Remove border */
    padding: 5px 10px;
    border-radius: 5px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Rotate arrow when dropdown is open */
.nav-item.dropdown.show .dropdown-icon {
    transform: rotate(180deg);
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}
.for-more-btn {
    background: rgb(4, 4, 77);
    color: white;
    padding: 5px 10px;
    text-decoration: none;
}
.for-more-btn:hover{
    text-decoration: none;
    color: white;
    background-color: #001F5B;
}
/* Logo Styling */
.navbar img {
    height: 70px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Prevent overflow */
    object-fit: contain; /* Ensure proper fit */
}

/* Responsive Logo Size */
@media (max-width: 992px) {
    .navbar img {
        height: 50px; /* Reduce size for tablets */
    }
}

@media (max-width: 768px) {
    .navbar img {
        height: 60px; /* Smaller logo for mobile */
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }
}





.about-top {
    text-align: center;
    padding: 10px 5px;
    color: rgb(21, 21, 104);
}

.about-heading {
    font-size: 2.0em;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    animation: headingFall 0.6s ease-out forwards;
}

.about-paragraph {
    font-size: 1.0em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    animation: paragraphFall 0.6s ease-out forwards;
}

.about-content {
    display: flex;
    align-items: center;
    color: rgb(68, 65, 65);
    font-size: 16px;
}

.about-text {
    flex: 1;
    padding-right: 50px;
    padding-left: 20px;
}

.about-text p {
    line-height: 1.5;
    text-align: justify;
}

.about-text span {
    display: block;
    opacity: 0;
    transform: translateY(-50px);
    animation: fallDown 2s ease-out forwards;
    font-size: 18px;
}

@keyframes fallDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headingFall {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes paragraphFall {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.about-text p:nth-child(1) span:nth-child(1) { animation-delay: 0.1s; }
.about-text p:nth-child(1) span:nth-child(2) { animation-delay: 0.2s; }
.about-text p:nth-child(1) span:nth-child(3) { animation-delay: 0.3s; }
.about-text p:nth-child(1) span:nth-child(4) { animation-delay: 0.4s; }
.about-text p:nth-child(1) span:nth-child(5) { animation-delay: 0.5s; }
.about-text p:nth-child(1) span:nth-child(6) { animation-delay: 0.6s; }

.about-text p:nth-child(2) span:nth-child(1) { animation-delay: 0.7s; }
.about-text p:nth-child(2) span:nth-child(2) { animation-delay: 0.8s; }
.about-text p:nth-child(2) span:nth-child(3) { animation-delay: 0.9s; }
.about-text p:nth-child(2) span:nth-child(4) { animation-delay: 1.0s; }
.about-text p:nth-child(2) span:nth-child(5) { animation-delay: 1.1s; }
.about-text p:nth-child(2) span:nth-child(6) { animation-delay: 1.2s; }

.about-text p:nth-child(3) span:nth-child(1) { animation-delay: 0.7s; }
.about-text p:nth-child(3) span:nth-child(2) { animation-delay: 0.8s; }
.about-text p:nth-child(3) span:nth-child(3) { animation-delay: 0.9s; }
.about-text p:nth-child(3) span:nth-child(4) { animation-delay: 1.0s; }
.about-text p:nth-child(3) span:nth-child(5) { animation-delay: 1.1s; }
.about-text p:nth-child(3) span:nth-child(6) { animation-delay: 1.2s; }

.about-image {
    flex: 1;
    position: relative;
    transform: scale(1);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    padding: 40px;
}

.about-image img {
    width: 100%;
    height:10%;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.1);
}

/*Card section*/
.heading-section {
    text-align: center;
    margin-bottom: 20px;
}

.section-heading {
    font-size: 28px;
    font-weight: bold;
    color: rgb(11, 11, 64);
}

.card-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 10px;
}

.card {
    width: 250px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 8px 8px 8px 8px rgba(0.1, 0.1, 0.1, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #ffffff;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.0em;
}

.card-content p {
    color: #666;
    font-size: 0.9em;
}

/* Responsiveness */
@media (max-width: 960px) { /* Adjust this breakpoint as needed */
    .about-content {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center; /* Center text on smaller screens */
    }

    .about-text {
        padding: 20px; /* Adjust padding for smaller screens */
        padding-right: 20px; /* Remove extra right padding */
    }

    .about-image {
        margin-top: 20px; /* Add space between image and text */
    }

    .about-image img {
        width: 80%; /* Make image smaller on smaller screens */
    }

    .card-section {
        flex-wrap: wrap; /* Allow cards to wrap */
        justify-content: center;
    }

    .card {
        width: calc(50% - 20px); /* Two cards per row with margin */
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) { /* Adjust this breakpoint as needed */
    .card {
        width: 100%; /* One card per row */
    }

    .about-heading {
        font-size: 1.5em; /* Adjust heading size */
    }

    .about-paragraph {
        font-size: 0.9em; /* Adjust paragraph size */
    }
}



.blog-container {
    max-width: 100%;
    padding: 20px;
    background: white;
}
.blog-header {
    text-align: center;
    background:rgb(2, 18, 73);
    color: #fff;
    padding: 40px 20px;
}
.blog-header h1 {
    margin: 0;
    font-size: 32px;
}
.blog-header p {
    margin-top: 5px;
    font-size: 1.2em;
}
.blog-content {
    padding: 20px;
    text-align: left;
}
.blog-content h2 {
    color:rgb(2, 18, 73);
    margin-top: 30px;
    align-items: left;
    text-align: left;
}
.blog-content .section-heading {
    color:rgb(2, 18, 73);
    margin-top: 30px;
    font-size: 26px;
    font-weight: bold;
}
.blog-content p, .blog-content ul {
    color: #444;
    text-align: justify;
    font-size: 1.1em;
}
.blog-content ul {
    padding-left: 20px;
    font-size: 1.1em;
}
.blog-content ul li {
    margin-bottom: 10px;
}
.contact-info {
    text-align: center;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .blog-container {
        padding: 15px;
    }
}