﻿.logoWidthHeightSet{
    max-width:150px !important;
    max-height:70px !important;
}

.AboutUsImgHeight{
    height: 80% !important;
}

.zoom {
    transition: transform .2s; /* Animation */
}

    .zoom:hover {
        transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    }

/* Ensure the nested dropdown appears only on hover */
.dropdown-menu .dropdown-submenu {
    position: relative;
}

    .dropdown-menu .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        display: none;
        position: absolute;
    }

    .dropdown-menu .dropdown-submenu:hover .dropdown-menu {
        display: block;
    }

@media (max-width: 991px) {
    /* Ensure submenus open below the parent */
    .dropdown-menu .dropdown-submenu .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        display: none;
    }

        /* Show submenu when it's active */
        .dropdown-menu .dropdown-submenu .dropdown-menu.show {
            display: block;
        }
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 2px solid #003366;
    color: #003366;
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
}

.step-icon {
    font-size: 40px;
    color: #003366;
    margin-bottom: 15px;
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    color: #666;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
}

.process-card {
    flex: 1;
    text-align: center;
    border: 1px solid #ddd;
    padding: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Make cards full width on small screens */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column; /* Stack items vertically */
    }

    .process-card {
        width: 100%; /* Full width */
        max-width: 400px; /* Optional: Limit max width */
        margin: 0 auto; /* Center align */
    }
}

/* Hover effect */
.process-card:hover {
    transform: translateY(-10px); /* Moves card up slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
    border-color: #003366; /* Change border color */
}

    /* Step circle hover effect */
    .process-card:hover .step-circle {
        background: #003366;
        color: #fff;
    }

    /* Icon hover effect */
    .process-card:hover .step-icon {
        color: #003366;
        transform: scale(1.1); /* Slightly enlarges the icon */
        transition: transform 0.3s ease, color 0.3s ease;
    }


.step-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 2px solid #007bff;
    color: #007bff;
    font-weight: bold;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.icon img {
    width: 50px; /* Adjust icon size */
    height: 50px;
    margin: 10px auto;
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 10px 0;
}

.description {
    font-size: 14px;
    color: #777;
}

.contact-link {
    text-decoration: none; /* Remove default underline */
    color: #003366; /* Default color */
    font-size: 18px;
    transition: color 0.3s ease;
}

    .contact-link:hover {
        color: #06A3DA; /* Change to any color you like */
    }


/* mission section start */

.mission-section,
.vision-section {
    background-color: #daedf5;
    border-radius: 10px;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mission and Vision Logo */
.mission-logo,
.vision-logo {
    position: absolute;
    width: 120px;
    height: auto;
    opacity: 0.1;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Logo Position */
.mission-logo {
    top: 20%;
    left: 20%;
}

.vision-logo {
    top: 20%;
    right: 20%;
}

/* Hover Effect -  */
.mission-section:hover .mission-logo,
.vision-section:hover .vision-logo {
    opacity: 0.4;
    z-index: 15;
}

/* mission section end */

/* Qualified staff start */
/* Section Styling */
.qualified-section {
    background-color: #002147; /* Dark Blue Background */
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.qualified-box {
    display: flex;
    flex-direction: column; /* Boxes ko vertical stack karega */
    gap: 20px;
    align-items: center;
}

.qualified-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    width: 100%; /* Full width ke liye */
    max-width: 700px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .qualified-item:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    }

.qualified-heading {
    color: #ffcc00; /* Mud Yellow Color */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

    .qualified-heading::after {
        content: '';
        width: 50px;
        height: 4px;
        background-color: #ffcc00;
        display: block;
        margin: 10px auto;
        border-radius: 2px;
    }

.qualified-text {
    font-size: 16px;
    line-height: 1.6;
    color: #eee;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.qualified-item:hover .qualified-text {
    opacity: 1;
}


/* Qualified staff end  */

/* our values start */
/* Section Styling */
.values-section {
    /*background-color: #e8f5e9;*/ /* Light Gray Background */
    padding: 60px 20px;
}

/* Box Container */
.values-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 30px;
    justify-content: center;
    align-items: center;
}

/* Individual Box Styling */
.value-item {
    background-color: #ffffff; /* White background for boxes */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 320px; /* ✅ Fixed height for all boxes */
    display: flex;
    flex-direction: column;
}

    /* Hover Effect */
    .value-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

/* Image Styling */
.value-image {
    width: 100%;
    height: 150px; /* ✅ Fixed height for images */
    object-fit: cover;
}

/* Heading Styling */
.value-heading {
    /*color: #ffcc00;*/ /* Mud Yellow */
    color: #06A3DA; /* Sky Blue */
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
}

/* Text Styling */
.value-text {
    color: #555;
    font-size: 16px;
    padding: 0 15px 15px;
    text-align: left;
    line-height: 1.5;
}

/* Hover Background Change */
.value-item:hover .value-heading {
    color: #002147; /* Dark Blue */
}

.value-item:hover .value-text {
    color: #002147;
}

/* Responsive Design */
@media (max-width: 992px) {
    .values-box {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .values-box {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* our values end */

/* about us bakground end */

.link-animated a {
    transition: .5s;
}

    .link-animated a:hover {
        padding-left: 10px;
    }

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.swal-button {
    background-color: #06A3DA !important;
    font-weight: bold !important;
    color: white !important;
}

.swal-title
{
    font-weight: bold !important;
}