/* Navbar with Camouflage Background */
/* Navbar Styles */
/* Navbar Styles */
.custom-navbar {
    position: relative; /* Enables absolute positioning of child elements */
    overflow: hidden; /* Ensures no overflow beyond navbar */
    justify-content: space-between;
    padding: 15px 30px;
    height: auto; /* Ensure a fixed height to see the background image */
}

/* Background Image */
.navbar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire navbar area */
    z-index: -1; /* Pushes the image behind other content */
}

/* Main Logo */
.navbar-logo {
    width: 200px; /* Logo size */
    height: auto;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 100px;
}

/* Text Styling */
.navbar-text-container {
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* width: 100%; */
    padding: 10px;
}

.navbar-text1, .navbar-text2 {
    display: block;
    text-align: center;
    font-size: 40px;
}

.navbar-text1 span, .navbar-text1 p {
    display: block;
    margin: 0;
}

.navbar-text2 {
    font-size: 25px;
    margin-top: 5px;
}

/* Container for Secondary Logos */
.container-fluid {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

/* Secondary Logos Styling */
.navbar-icon {
    height: 53px;
    width: auto;
    margin: 0 5px;
    transition: transform 0.2s ease;
    margin-bottom: 15px;
    border-radius: 10px;
}

.navbar-icon:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}


/* Tablet View */
@media (max-width: 768px) {
    .custom-navbar {
        flex-direction: column;
        padding: 10px 20px;
    }

    .navbar-logo {
        width: 120px; /* Smaller logo for tablets */
    }

    .navbar-text-container {
        margin: 15px 0;
    }

    .navbar-text1 {
        font-size: 17px;
    }

    .navbar-text2 {
        font-size: 25px;
    }

    .navbar-icon {
        width: 80px; /* Smaller icons */
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .custom-navbar {
        padding: 10px;
        justify-content: center;
        text-align: center;
    }

    .navbar-logo {
        width: 130px; /* Smaller logo for mobile */
        margin-left: 120px;
    }

    .navbar-text-container {
        margin-top: -20px;
    }

    .navbar-text1 {
        font-size: 20px; /* Smaller font size for mobile */
        /* line-height: 1.3; */
        margin-right: 10px;
    }

    .navbar-text2 {
        font-size: 18px; /* Smaller font size for mobile */
        /* line-height: 1.3; */
        margin-right: 10px;
    }

    .navbar-icon {
        width: 90px; /* Even smaller icons for mobile */
        margin: 10px 3px; /* Adjusted spacing */
        flex-direction: column;
        text-align: center;
    }
}

/* ----------------------------------- Nav Buttons ------------------------------------------------------------- */

/* Navigation Buttons */
.nav-buttons {
    display: flex; /* Aligns buttons horizontally */
    justify-content: center; /* Centers buttons */
    gap: 20px; /* Spacing between buttons */
    padding: 10px;
    background-color: rgb(185, 182, 182);
}

.nav-buttons .btn {
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #060d15;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-buttons .btn:hover {
    background-color: #eaedf1;
    border-color: #0c0707;
    color: #0e0707;
    transform: scale(1.1);
}

/* Toggle Button Styling */
.toggle-btn {
    display: none; /* Hidden on larger screens */
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 24px;
    background-color: #f0e118;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
    .nav-buttons {
        display: none; /* Hidden by default */
        flex-direction: column; /* Stacks buttons vertically */
        background-color: #f8f8f8;
        padding: 10px;
        border: 1px solid #ddd;
        position: relative;
        /* top: 300px; */
        right: 10px;
        margin-left:20px;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: calc(100% - 20px); /* Full width with margin adjustment */
        max-width: 400px; /* Prevents the dropdown from being too wide */
        justify-content: center;
    }

    .nav-buttons.active {
        display: flex; /* Show buttons when active */
    }

    .toggle-btn {
        display: block; /* Display toggle button on small screens */
    }
}

/* --------------------------------- Footer -------------------------------------- */

/* Footer General Styling */
#footer {
    color: aliceblue;
    background-color: #343a40;
    padding: 20px 0;
}

#footer .container {
    padding: 20px;
}

/* Quick Links Styling */
#footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#footer h5 {
    font-size: 1rem;
    color: #e4dcdc;
    margin-bottom: 10px;
    text-decoration: none;
}

#footer .navbar-text {
    font-size: 24px;
    width: 600px;
    text-align: left;
}

#footer h5:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Get In Touch Section */
#footer .fa {
    margin-right: 10px;
    color: aliceblue;
}

#footer a {
    color: aliceblue;
    text-decoration: none;
}

#footer a:hover {
    color: #007bff;
    text-decoration: none;
}

#footer .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: aliceblue;
}

#footer .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Responsive Design */
@media (max-width: 768px) {
    #footer .row {
        flex-direction: column;
        /* gap: 20px; */
        margin: 10px;
    }

    #footer .col-lg-5,
    #footer .col-lg-2,
    #footer .col-lg-4 {
        /* flex: 1; */
        font-size: 20px;
        /* text-align: center; */
        /* margin-left: 20px; */
    }

    #footer .navbar-text {
        font-size: 30px;
        width: 300px;
    }

    #footer .btn-primary {
        font-size: 1rem;
        padding: 10px;
    }

    #footer .footer-title {
        font-size: 20px;
    }

    #footer h4 {
        font-size: 1.4rem;
    }

    #footer h2 {
        font-size: 1rem;
    }

    #footer .navbar-logo {
        width: 200px;
        margin: 10px;
    }
}

@media (max-width: 576px) {
    #footer h3 {
        font-size: 1rem;
    }

    #footer h5 {
        font-size: 0.8rem;
    }

    #footer h2 {
        font-size: 0.9rem;
    }
}
/* ------------------------------------ Vission and Mission ----------------------------------------------- */

/* General Styles */

.vm-section {
    background-color: #13005A;
}

.container-vm {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #00337C;
    color: #ecf0f1;
}

.vm-header {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

/* Vision and Mission Alignment */
.vision{
    width: 90%; /* Each section takes 45% of the width */
    margin: 20px;
    opacity: 0; /* Initially hidden */
    position: relative;
    text-align: left;
    transform: translateX(-100%); /* Start from the left */
    background-color: #9abece;
    padding: 30px;
    border-radius: 20px 0px;
    color:#1E5128;
    margin-bottom: 20px;
    margin-left: 50px;
}

.mission {
    text-align: left;
    transform: translateX(10%); /* Start from the right */
    width: 90%; /* Each section takes 45% of the width */
    margin: 20px;
    opacity: 0; /* Initially hidden */
    position: relative;
    margin-left: 50px;
    background-color: #9abece;
    padding: 30px;
    border-radius: 0px 20px;
    color:#1E5128;
}

.vision-detail, .mission-point {
    font-size: 25px;
    line-height: 1.6;
    margin: 10px 0;
    color: #1E5128;
}

.vision h1, .mission h1{
    color: #0c2035; 
    font-size: 40px;   
}  

.vision h1 i, .mission h1 i {
    color: #0c2035; /* Icon color */
    font-size: 30px; /* Adjust icon size */
    vertical-align: middle;
}

.heading-mission {
    font-size: 30px;
    color: #1E5128;
}

.mission-pointer {
    color: #1E5128;
    font-size: 25px;
}

.mission-conclusion {
    margin-top: 20px;
    font-style: italic;
    font-size: 25px;
    color: #1E5128;
}

/* Animation Classes */
.vision.animate, .mission.animate {
    opacity: 1; /* Make visible */
    transform: translateX(0); /* Move to the center */
    transition: all 1s ease-in-out; /* Smooth animation */
}

/* Tablet View */
@media (max-width: 768px) {
    .vm-header {
        font-size: 28px; /* Adjusted for smaller screens */
    }

    .vision, .mission {
        width: 100%; /* Full-width for tablets */
        padding: 20px;
    }

    .vision h1, .mission h1 {
        font-size: 30px;
    }

    .vision-detail, .mission-point, .mission-conclusion {
        font-size: 18px;
    }

    .heading-mission {
        font-size: 24px;
    }
}

/* Mobile View */
@media (max-width: 480px) {

    .vm-header {
        font-size: 20px; /* Smaller font size for mobile */
        margin-bottom: 20px;
        overflow: hidden; /* Prevent content overflow */
        position: relative; /* Ensures the child elements stay within bounds */
    }

    .vision, .mission {
        padding: 15px;
        margin: 10px auto;
        width: 90%;
        box-sizing: border-box; /* Include padding and border in width calculation */
        will-change: transform, opacity; /* Hint the browser to optimize these properties */

    }

    .vision h1, .mission h1 {
        font-size: 25px;
    }

    .heading-mission {
        font-size: 20px;
    }

    .vision-detail, .mission-point {
        font-size: 16px;
    }

    .mission-conclusion {
        font-size: 16px;
    }

    .vision.animate, .mission.animate {
        position: relative; /* Restore flow after animation */
        opacity: 1;
        transform: translateX(0);
        transition: all 1s ease-in-out;
    }
}


/* ------------------------------------ Services ----------------------------------------------- */

.conteiner-flex {
    display: flex; /* Enables flexbox for the container */
    /*justify-content: center; Centers the content horizontally */
    flex-wrap: wrap; /* Allows wrapping to the next line */
    gap: 40px; /* Adds spacing between the items */
    padding: 20px; /* Adds padding around the container */
}

.conteiner-flex .row {
    display: flex; /* Enables flexbox for the row */
    justify-content: center; /* Centers items in the row */
    flex-wrap: wrap; /* Ensures items wrap to the next row when needed */
    max-width: 1200px; /* Limits the width of the content for better design */
    margin: 0 auto; /* Centers the entire row within the container */
}

.conteiner-flex .services {
    display: flex;
    justify-content: center; /* Centers the text horizontally */
    align-items: center; /* Centers the text vertically */
    width: 500px; /* Sets a fixed width for each service box */
    height: 100px; /* Sets a fixed height for each service box */
    background-color: #007BFF; /* Sets the background color */
    color: white; /* Sets the text color */
    text-align: center; /* Centers the text within the box */
    font-size: 30px; /* Adjusts the font size */
    font-weight: bold; /* Makes the text bold */
    border-radius: 10px; /* Adds rounded corners */
    text-decoration: none; /* Removes underline from links */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
    margin: 30px;
}

.conteiner-flex .services:hover {
    transform: scale(1.1); /* Slightly enlarges the box on hover */
    background-color: #0056b3; /* Darkens the color on hover */
}

.conteiner-flex a {
    text-decoration: none; /* Removes the underline for links */
    color: inherit; /* Ensures the link inherits the color */
}

/* Media Query for responsiveness */
@media (max-width: 768px) {
    .conteiner-flex .services {
        width: 100%; /* Makes the service boxes span full width on small screens */
        margin-bottom: 10px; /* Adds spacing between rows on small screens */
    }
}

/* ---------------------------------- Web_Docs ------------------------------------------ */

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 10px;
}

/* Background Styling for Documents Section */
.doc_web_bg {
    background-color: #9AA6B2;
    padding: 50px 0;
}

/* Container Styling */
.container-doc-web {
    max-width: 1360px;
    margin-left: 50px;
    background: #BCCCDC;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(226, 221, 221, 0.952);
}

/* Header Styling */
.doc-web-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #e1e5eb;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: #060d15;
    border-radius: 20px 5px;
    padding: 10px;
}

.doc-section {
    border-radius: 40px;
    padding: 20px;
    margin: 20px;
    background-color: #D9EAFD;
    width: 1280px;
}

/* Document Name Styling */
.doc_name {
    font-size: 28px;
    margin: 20px 0 10px;
    color: #222;
    text-align: left;
}

/* Button Styling */
.check-out {
    /* display: block; */
    margin: 10px auto;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #1a3552;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    /* margin-left: 230px; */
}

/* Button Hover Effect */
.check-out:hover {
    background-color: #ec0a0a;
    color: white;
    transform: scale(1.05);
}

/* Link Styling */
.check-link {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 600px) {
    .doc-web-heading {
        font-size: 15px;
    }

    .container-doc-web {
        max-width: 300px;
    }

    .doc-section {
        border-radius: 40px;
        padding: 20px;
        margin: 20px;
        background-color: #D9EAFD;
        width: 200px;
    }

    h1 {
        font-size: 2rem;
    }

    .doc_name {
        font-size: 14px;
    }

    .check-out {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Slider Container */
.slider {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Slide Images */
.slides {
    /* display: flex; */
    width: 1500px;
    height: 1200px;
    transition: 0.6s;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Radio Button Navigation */
input[type="radio"] {
    display: none;
}

/* Navigation Auto */
.navigation-auto {
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation-auto div {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: auto-slider 9s infinite;
}

.navigation-auto .auto-btn1 {
    animation-delay: 0s;
}

.navigation-auto .auto-btn2 {
    animation-delay: 3s;
}

.navigation-auto .auto-btn3 {
    animation-delay: 6s;
}

/* Keyframes for Auto Navigation */
@keyframes auto-slider {
    0% {
        background: rgba(255, 255, 255, 0.6);
    }
    50% {
        background: white;
    }
    100% {
        background: rgba(255, 255, 255, 0.6);
    }
}

/* Navigation Manual */
.navigation-manual {
    position: absolute;
    width: 100%;
    bottom: 10px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid white;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
    transition: background 0.3s;
}

.manual-btn:hover {
    background: white;
}

/* Image Slider Movement */
#img1:checked ~ .slides {
    transform: translateX(0%);
}

#img2:checked ~ .slides {
    transform: translateX(-100%);
}

#img3:checked ~ .slides {
    transform: translateX(-200%);
}

/*---------------------------------- trans_plan ----------------------------------------- */

/* General styling */
.trans_plan {
    text-align: center;
    margin-bottom: 20px;
}

.trans_plan_container {
    display: flex;
    flex-direction: row; /* Arrange images in a column */
    align-items: center; /* Center align images */
    gap: 15px; /* Add spacing between images */
    background-color: #b9c9e1;
    padding: 20px;
    flex-wrap: wrap;
}

.image_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trans_plan_img {
    width: 250px; /* Small size initially */
    cursor: pointer;
    transition: transform 0.3s ease; /* Smooth scaling effect */
    margin-left: 25px;
    margin-bottom: 10px;
    border: solid;
    border-radius: 10px;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.download_btn, .share_btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

.download_btn:hover, .share_btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.trans_plan_img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Dim background */
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 50%; /* Restrict maximum size */
    max-height: 100%; /* Restrict maximum height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trans_plan_container {
        flex-direction: column; /* Stack images vertically */
        align-items: center; /* Center align images */
    }

    .trans_plan_img {
        width: 80%; /* Adjust width for smaller screens */
        margin: 15px 0; /* Add vertical spacing */
    }

    .modal-content {
        max-width: 70%; /* Allow modal to take up more space on small screens */
    }
}

@media (max-width: 480px) {
    .trans_plan_img {
        width: 80%; /* Further adjust width for very small screens */
    }

    .modal-content {
        max-width: 70%; /* Allow modal to take up more space on small screens */
    }
}
