/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
/* Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.bg-pink {
    background-color: rgb(249, 218, 223);
}

.bg-blue {
    background-color: rgb(226, 226, 249);
}

.bg-orange {
    background-color: rgb(245, 238, 225);
}

.bg-purple {
    background-color: rgb(215, 211, 215);
}

.text-navy {
    color: rgb(40, 22, 111);
}

.text-secondary {
    color: #2f2f54 !important;
}

.text-info {
    color: rgb(23, 95, 88) !important;
}

.btn {
    background-color: rgb(40, 22, 111) !important;
}

.btn:hover {
    background-color: #0967cb !important;
    color: rgb(241, 238, 234);
}

a {
    text-decoration: none;
}

input:hover {
    border: 1px solid rgb(40, 22, 111) !important;
    border-radius: 5px;
}

input:focus {
    box-shadow: 2px 4px salmon;
}

.top-header {
    background-color: rgb(40, 22, 111);
    border-bottom: 1px solid #ddd;
    z-index: 1001;
    position: relative;       
}

.top-header .contact-info a {
    color: #eae2e2;
    margin-right: 10px;
    font-size: 0.8rem;
    text-decoration: none;
}

.top-header .contact-info a i {
    margin-right: 5px;
}

.top-header .social-links a {
    color: #333;
    margin: 0 2px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.top-header .social-links a:hover {
    color: #b71c1c;
}

.top-header .action-links a {
    color: whitesmoke;
    margin-left: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
}

.top-header .action-links a:hover {
    color: #b71c1c;
}

.header {
    background-color: rgb(254, 248, 248);
    padding: 10px 0;
    transition: transform 0.3s ease;
    z-index: 1000;
    position: relative;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    animation: slideDown 0.3s ease forwards;
}

.navbar-placeholder {
    height: 0;
}

MATH navbar-placeholder.sticky {
    height: auto;
}

.navbar-nav .nav-link {
    padding: 12px 15px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #1f0606 !important;
}

.navbar-toggler ion-icon {
    font-size: 28px;
    color: #ffffff;
}

.dropdown-hover {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-hover:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom {
    list-style: none;
    margin: 0;
}

.dropdown-icon {
    font-size: 20px;
    margin-top: 4px;
}

.dropdown-menu-custom li {
    padding: 8px 20px;
}

.dropdown-menu-custom li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-menu-custom li a:hover {
    background-color: #5a98d6;
    color: #ffffff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 400 !important;
    font-size: 16px !important;
}

.logo {
    width: 250px;
}

h5.ms-5 {
    position: relative !important;
    left: 33px !important;
}

@media (min-width: 992px) {
    .nav-item.dropdown .nav-link::after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 8px;
        vertical-align: middle;
        border-top: 5px solid;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-item.dropdown:hover .nav-link::after {
        border-top-color: #5a98d6;
        transform: rotate(180deg);
    }

    .nav-item.dropdown .dropdown-menu {
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        position: absolute;
        top: 100%;
        left: 0;
    }
    .product-section img{
        height: 400px;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        color: #333;
        font-size: 14px;
        font-weight: 500;
        padding: 8px 20px;
        text-transform: capitalize;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: #5a98d6;
        color: #ffffff;
    }

    .col-lg-6.text-start.mb-4.mb-lg-0.px-4.pb-4 {
        position: relative;
        bottom: 25px;
    }
}

@media (max-width: 991px) {
    .sidebar-nav .navbar-collapse {
        position: fixed;
        top: 38px;
        right: 0;
        width: 280px;
        height: 100%;
        background: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding: 20px;
        transform: translateX(100%);
    }

    .sidebar-nav .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        background-color: #ffffff;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
        width: 100%;
        color: #333 !important;
    }
    

    .nav-item.dropdown .nav-link::after {
        content: '';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 6px solid #333;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-item.dropdown.active .nav-link::after {
        transform: translateY(-50%) rotate(180deg);
        border-top-color: #5a98d6;
    }

    .navbar-nav .nav-item.dropdown .dropdown-menu {
        display: none;
        width: 100%;
        padding: 0 0 0 20px;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .navbar-nav .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        font-size: 1rem;
        padding: 8px 0;
        color: #333;
        cursor: pointer;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: #5a98d6;
        color: #ffffff;
    }

    .navbar-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .top-header .social-links {
        display: none;
    }

    .top-header .container {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }

    .top-header .contact-info {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        font-size: 0.75rem;
    }

    .top-header .action-links {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        font-size: 0.75rem;
    }

    .top-header .action-links a {
        margin-left: 8px;
    }

    .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(0, 0, 0, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 24px;
        height: 24px;
    }
}

.wapp-section {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    width: auto;
}

.w-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: shine 2s infinite alternate;
    cursor: pointer;
}

.w-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}

@keyframes shine {
    0% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 1);
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(40, 22, 111);
    text-shadow: 0 6px 8px rgba(0, 0, 0, 0.9);
    width: 90%;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-content .btn {
    font-size: 1rem;
    padding: 10px 20px;
}

.about {
    background-image: url('../images/background/bg-img-3.jpg');
    background-size: cover;
    /* Scales image to cover the section */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
}

.about-img {
    max-width: 80%;
}


/* -------counter section----- */

.bg-gradient {
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
}



section.counter-section.pt-0.pb-5.bg-gradient {
    position: relative;
    bottom: 55px;
}

.impact-section{
    position: relative;
    bottom: 60px;
}

.bg-gradient {
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

.product-section img {
    transition: transform 0.3s ease-in-out;
}

.product-section img:hover {
    transform: scale(1.05);
}

h5.display-5.fw-bold.text-navy.mb-4.text-center {
    font-size: 35px;
}

.read-more-btn {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.read-more-btn .arrow {
    display: inline-block;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s;
    margin-left: 5px;
}

.read-more-btn:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.read-more-btn:hover {
    background-color: #004080;
}

.impact-item {
    transition: transform 0.3s ease;
    width: 265px;
    cursor: pointer;
}

.impact-item:hover {
    transform: scale(1.05);
}

.more-content {
    transition: all 0.3s ease;
}
/* ------testimonial section----- */

.bg-gradient {
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

.testimonial-section .carousel-item {
    transition: transform 0.5s ease-in-out;
}

.testimonial-section iframe {
    border-radius: 0.5rem;
}

.blockquote {
    font-size: 1.25rem;
}

.blockquote-footer {
    color: #6c757d;
}

.k-12-img{
    width: 500px;
    height: 300px;
    align-items: center;
}
/* -----contact----- */.parallax {
    background: radial-gradient(circle at center, rgba(200, 200, 220, 0.3) 0%, rgba(40, 60, 120, 0.5) 100%), url('../images/background/contact-bg.jpg');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 20px;
    position: relative;
    z-index: 2;
}

.contact-left {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.contact-left.slide-in-left {
    animation: slideInFromLeft 1s ease-out forwards;
}

.contact-left.fade-out {
    transform: translateX(-50px);
    opacity: 0;
}

.company-info {
    background: linear-gradient(135deg, #f5def3 0%, #d4ddf6 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    min-height: 520px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    transition: box-shadow 0.3s ease;
}

.company-info:hover {
    box-shadow: 0 8px 25px rgba(0, 120, 215, 0.3);
}

.company-info h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #1a3c5e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.info-block {
    display: flex;
    align-items: flex-start;
    margin: 43px 0;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-block:nth-child(2) { animation-delay: 0.2s; }
.info-block:nth-child(3) { animation-delay: 0.4s; }
.info-block:nth-child(4) { animation-delay: 0.6s; }
.info-block:nth-child(5) { animation-delay: 0.8s; }

.info-block .icon {
    font-size: 1.4em;
    color: rgb(0, 120, 215);
    margin-right: 12px;
    margin-top: 5px;
}

.info-block h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.info-block h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: rgb(0, 120, 215);
    transition: width 0.3s ease;
}

.info-block:hover h3::after {
    width: 50px;
}

.info-block p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.info-block a {
    color: rgb(0, 120, 215);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.info-block a:hover {
    color: rgb(40, 22, 111);
    text-decoration: underline;
    transform: scale(1.05);
}

.contact-right {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.contact-right.slide-in-right {
    animation: slideInFromRight 1s ease-out forwards;
}

.contact-right.fade-out {
    transform: translateX(50px);
    opacity: 0;
}

.contact-container {
    background: linear-gradient(135deg, #f2ebf4 0%, #f5e8f4 100%) !important;
    text-align: center;
    padding: 18px 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    min-height: 520px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.contact-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a3c5e;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.form-group {
    position: relative;
    margin: 12px 0;
    opacity: 0;
}

.form-group.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.3s; }
.form-group:nth-child(3) { animation-delay: 0.4s; }
.form-group:nth-child(4) { animation-delay: 0.5s; }
.form-group:nth-child(5) { animation-delay: 0.6s; }
.form-group ~ .btn.animate { animation-delay: 0.7s; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1.5px solid #666;
    border-radius: 6px;
    color: #333;
    font-size: 0.95em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgb(0, 120, 215);
    box-shadow: 0 0 8px rgba(0, 120, 215, 0.4);
    transform: scale(1.02);
    outline: none;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #888;
    font-size: 0.95em;
    transition: all 0.2s ease;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not(:placeholder-shown) + label {
    top: -18px;
    left: 8px;
    font-size: 1.25em;
    color: rgb(32, 42, 132);
    background: #fff;
    padding: 0 4px;
}

.btn {
    background: linear-gradient(90deg, rgb(0, 120, 215), rgb(40, 22, 111));
    color: #fff !important;
    padding: 10px 30px !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 1em !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    font-family: 'Poppins', sans-serif !important;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 120, 215, 0.5);
}

.btn.animate {
    animation: pulse 2s infinite;
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-left {
        margin-bottom: 30px;
    }

    .company-info {
        max-width: 100%;
        min-height: 450px;
    }

    .contact-container {
        max-width: 100%;
        min-height: 450px;
    }

    .contact-logo {
        width: 250px !important;
        height: 80px;
    }
    .product-section img{
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .company-info {
        padding: 20px;
        min-height: 400px;
    }

    .company-info h2 {
        font-size: 1.5em;
    }

    .info-block h3 {
        font-size: 1.1em;
    }

    .info-block p {
        font-size: 0.9em;
    }

    .info-block .icon {
        font-size: 1.2em;
    }

    .contact-container {
        padding: 20px 15px;
        min-height: 400px;
    }

    .contact-container h1 {
        font-size: 1.6em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 8px;
        font-size: 0.9em;
    }

    .form-group label {
        top: 8px;
        font-size: 0.9em;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label,
    .form-group select:focus + label,
    .form-group select:not(:placeholder-shown) + label {
        top: -8px;
        font-size: 0.7em;
    }
}
.slide-in {
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 1s ease-in forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    max-width: 700px;
    margin: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.thank-you-container h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffd700;
}

.thank-you-container p {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.1em;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
    transform: scale(1.05);
}

.social-links a i {
    font-size: 1.2em;
}

.back-home {
    color: #ffd700;
    font-size: 1.1em;
    text-decoration: none;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: #fff;
}

/* Old form styles (preserved for compatibility) */
form {
    padding: 0 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

input,
textarea {
    width: calc(100% - 20px);
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #555;
}


.footer {
    background-color: #002147;
    /* Navy blue */
    color: #fff;
    padding: 60px 20px 20px;
    font-size: 0.9em;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.footer-section h2 {
    font-size: 1.4em;
    color: #ffd700;
    /* Gold */
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin: 10px 0;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
    /* Gold hover */
    text-decoration: underline;
}

.social-media {
    font-size: 1.8em;
    margin-top: 10px;
}

.social-media a {
    margin-right: 15px;
    color: #fff;
}

.social-media a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444d33;
    margin-top: 40px;
    color: #ccc;
}

.footer-bottom a {
    color: rgb(40, 22, 111) !important;
    padding: 0 5px;
}

.footer-bottom a:hover {
    color: #ffd700 !important;
}


.footer-bottom a:hover {
    color: #fff;
}

.footer-column ul {
    padding-left: 0; /* Remove default padding */
    margin-left: 0; /* Remove default margin */
    list-style: none; /* Remove default list bullets */
    text-align: left; /* Ensure text is aligned to the left */
}

.footer-column li {
    text-align: left; /* Ensure list items are aligned to the left */
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin: 20px 0;
    }

    .social-media a {
        margin: 0 10px;
    }
}

/* Old form styles (preserved for compatibility) */
form {
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
}

input,
textarea {
    width: calc(100% - 20px);
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #555;
}

.footer {
    background-color: rgba(176, 171, 198, 0.279) !important ;
    /* Navy blue background */
    color: #fff;
    padding: 40px 20px 40px;
    width: 100%;
    min-height: 500px;
    /* Big footer */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}


.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-logo img {
    width: 50%;
    /* background-color: #fff; */
    padding: 5px;
}

.footer-logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00aaff, #fff);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1340px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 0 25px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: rgb(40, 22, 111);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: #00aaff;
}

.footer-column p {
    color: #00aaff;
    text-align: justify;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin: 12px 0;
}

.footer-column ul li a {
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00aaff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgb(40, 22, 111);
    padding-right: 15px;
    margin-top: 20px;
}

.social-icons {
    gap: 15px;
}

.social-icons a {
    color: #ddd;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00aaff;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    margin-top: 3px;
    margin-left: 15px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00aaff;
}

.footer-column ul {
    list-style: none;
    position: relative;
}

.footer-social{
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 1.1em;
    text-decoration: none;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
    padding: 10px 0;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 20px;
}
.footer-social-links{
    font-size: 28px;
}
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }

    .footer-column {
        margin: 20px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .hero {
        height: 50vh;
        max-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 40vh;
        max-height: 300px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .fa-4x {
        font-size: 2.5rem;
        position: relative;
        top: 8px;
    }

    h5.ms-5 {
        font-size: 1rem !important;
        position: relative !important;
        left: 7px !important;
    }
    
}

@media (max-width: 430px) {
    .social-links {
        display: none !important;
    }

    .action-links {
        display: none !important;
    }

    .top-header .contact-info a {
        font-size: 10px;
    }
}

@media (min-width: 1400px) {
    .counter-item {
        margin-right: 40px;
    }
}

@media (max-width: 1399px) {
    .d-flex.flex-row.flex-wrap.justify-content-center.gap-4{
        gap: 10px !important;
    }
    .impact-item{
        width: 264px in !important;
    }
}