/* Global Styles */
* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    font-family: "Lato", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 30%;
    right: 0.1%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 10px;
    z-index: 1000;
    transition: all 0.3s;
    padding-top: 5px;
}

/* Icon styling */
.icon {
    width: 60px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
    background-color: rgba(0, 82, 82, 0.532);
    border-radius: 5px;
}

/* Image inside the icon */
.icon img {
    width: 60%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
}

/* Hover effect on the icon */
.icon:hover {
    transform: scale(1.2);
    /* Enlarge on hover */
}

/* Media Query for Small Screens (<= 768px) */
@media (max-width: 768px) {
    .sidebar {
        top: 30%;
        /* Move the sidebar higher for better visibility */
        right: 0.2%;
        /* Increase the distance from the right edge for smaller screens */
        padding-top: 10px;
        /* Add more space for the sidebar elements */
    }

    .icon {
        width: 50px;
        /* Reduce icon size */
        height: 40px;
    }

    .icon img {
        width: 50%;
        /* Reduce image size inside the icon */
        height: 60%;
    }
}

/* Media Query for Smaller Screens (<= 480px) */
@media (max-width: 480px) {
    .sidebar {
        top: 35%;
        /* Move the sidebar higher for very small screens */
        right: 0.5%;
        /* Increase the space on the right */
    }

    .icon {
        width: 45px;
        /* Further reduce icon size */
        height: 35px;
    }

    .icon img {
        width: 45%;
        /* Further reduce image size inside the icon */
        height: 55%;
    }
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: rgb(10, 187, 172);
    padding: 10px 20px;
    transition: background-color 0.3s ease, height 0.3s ease;
    z-index: 1000;
    font-family: "Spectral", serif;
    height: 50px;
    /* Default height */
}

.navbar.transparent {
    background-color: rgba(0, 0, 0, 0.685);
}

/* Logo Section */
.logo-section {
    flex: 40%;
    display: flex;
    align-items: center;
    gap: 25px;
    font-family: "Spectral", serif;
}

.logo {
    height: 40px;
    border-radius: 50%;
}

.logo-section h1 {
    font-size: 20px;
    margin: 0;
    animation: fadeIn 5s infinite;
    text-transform: capitalize;
    font-family: "Spectral", serif;
    letter-spacing: 3px;
}

/* Menu Section */
.menu-section {
    flex: 60%;
    /* display: flex; */
    /* justify-content:space-evenly;
    align-items: center; */
}

.menu-section ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
}

.menu-section li {
    margin: 0 10px;
}

.menu-section a {
    text-decoration: none;
    color: rgb(10, 187, 172);
    font-size: 19px;
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: 4px;
    text-transform: capitalize;
    font-family: "Spectral", serif;

}

.menu-section ul li a:hover {
    color: #05857a;
    transform: scale(1.1) translateY(-5px);
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-section ul li a {
    display: inline-block;
}

/* Hover Effects */
.logo:hover,
h1:hover {
    color: #0b846b;
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeIn {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* Hamburger Button */
.hamburger {
    display: none;
    /* Will be displayed in smaller screens through media queries */
    flex-direction: column;
    justify-content: space-between;
    width: 27px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    /* Use absolute positioning */
    top: 30px;
    /* Adjust the vertical position */
    right: 20px;
    /* Align to the right corner */
    z-index: 2000;
    /* Ensure it's above other elements */
    background: none;
    /* Remove any background */
    border: none;
    /* Remove border if any */
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: rgb(10, 187, 172);
    /* Bar color */
    border-radius: 3px;
    /* Smooth corners for bars */
    transition: all 0.3s ease;
}


/* Hamburger Button Hover Effect */
.hamburger:hover .bar {
    background-color: #05857a;
    /* Change color on hover */
    transform: scale(1.1);
    /* Slight enlargement on hover */
}

/* Media Query for screens <= 1069px */
@media (max-width: 1069px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        height: 70px;
        /* Navbar height remains constant before the menu is toggled */
    }

    .logo-section {
        flex: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .logo-section h1 {
        /* font-size: 18px; */
        text-align: left;
        font-size: 15px;
        /* Reduce font size for smaller screens */
        letter-spacing: 2px;
        /* Adjust spacing */
        /* max-width: 70%; */
    }

    .menu-section {
        flex: 100%;
        display: none;
        /* Hide the menu by default */
        transition: max-height 0.3s ease-in-out;
    }

    .menu-section.active {
        display: block;
        max-height: 300px;
        /* Adjust as necessary */
    }

    .menu-section ul {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }

    .menu-section li {
        margin: 5px 0;
    }

    .menu-section a {
        font-size: 15px;
    }

    /* Show the hamburger button */
    .hamburger {
        display: flex;
    }

    /* Increase navbar height when the menu is active */
    .navbar.active {
        height: 250px;
        /* Adjust the height when the menu is active */
    }
}

@media (max-width: 440px) {

    /* Logo adjustments */
    .navbar {
        width: 93%;
        margin: 0 auto;
    }

    .logo {
        height: 30px;
        /* Reduce logo size */
        top: 60px;
    }

    /* H1 tag adjustments */
    .logo-section h1 {
        font-size: 12px;
        /* Reduce font size */
        letter-spacing: 1px;
        /* Adjust letter spacing */
        text-align: left;
    }

    /* Hamburger adjustments */
    .hamburger {
        width: 25px;
        /* Reduce size of the hamburger icon */
        height: 22px;
        top: 60px;
        /* Adjust vertical position */
        right: 15px;
        /* Adjust horizontal position */
    }

}

@media (max-width: 375px) {
    .navbar {
        width: 92%;
    }
}


/* Hero Section */
.bgr_1st_sec {
    background-color: black;
}

.bgr_1st_sec {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-overlay {
    position: relative;
    color: rgb(29, 248, 230);
    text-align: center;
    top: 70%;
    transform: translateY(-50%);
    text-transform: uppercase;
    font-optical-sizing: auto;
    /* border: 2px solid white; */
}

#motivational-line {
    font-size: 2.8rem;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out;
    font-family: "Spectral", serif;
    letter-spacing: 8px;
    text-shadow:
        1px 1px 0 #00000085,
        -1px -1px 0 #00000085,
        1px -1px 0 #00000085,
        -1px 1px 0 #00000085;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .content-overlay {
        top: 70%;
        font-size: 1.5rem;
    }

    #motivational-line {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .background-video {
        object-fit: cover;
    }

    .content-overlay {
        top: 70%;
        padding: 10px;
    }

    #motivational-line {
        font-size: 1.8rem;
        letter-spacing: 3px;
        text-shadow:
            1px 1px 0 #00000085,
            -1px -1px 0 #00000085,
            1px -1px 0 #00000085,
            -1px 1px 0 #00000085;
    }
}

@media (max-width: 480px) {
    .content-overlay {
        top: 70%;
        font-size: 1rem;
    }

    #motivational-line {
        font-size: 1.5rem;
        letter-spacing: 2px;
        text-shadow:
            1px 1px 0 #00000085,
            -1px -1px 0 #00000085,
            1px -1px 0 #00000085,
            -1px 1px 0 #00000085;
    }
}

/* About Us Section */
.about_us {
    padding: 50px 20px;
    background-color: #f5eaea;
    color: #333;
    text-align: center;
    padding: 6%;
    padding-left: 8%;
    padding-right: 8%;
    font-family: 'Raleway', sans-serif;
}

.about_us h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #222;
    font-family: 'Raleway', sans-serif;
}

.about_us .heading-agileinfo {
    font-weight: 600;
    letter-spacing: .8px;
    font-size: 60px;
    text-align: center;
    color: #042845c9;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
}

.about_us p {

    font-size: 20px;
    color: #000;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

/* Experience Section */
.experience {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background-image: url('Images/exprnc_bckgrnd.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: rgba(255, 255, 255, 0.938);
    height: 50vh;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    letter-spacing: 5px;
}

.experience .srvc_overlay {
    /* padding-top: 90px; */
    height: 95%;
    background-color: rgba(5, 5, 5, 0.489);
    width: 85%;
    border-radius: 15px;
    font-family: 'Raleway', sans-serif;
}

.experience h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.experience p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-family: 'Raleway', sans-serif;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: bold;
}

.stat-item span {
    font-size: 1.5rem;
    margin-top: 10px;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Services Section */
.services {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.services h2 {
    color: rgb(49, 130, 124);
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    letter-spacing: .8px;
    font-size: 30px;
    letter-spacing: 10px;
    padding-bottom: 30px;
}

.services .srvc_Row {
    display: flex;
    align-items: flex-start;
    /* Align elements to the top */
    justify-content: space-between;
    flex-wrap: wrap;
}

.services .frst_Elmnt,
.scnd_Elmnt,
.thrd_Elmnt,
.frth_Elmnt {
    background-color: white;
    flex: 1;
    margin: 15px;
    padding: 15px;
    min-width: 250px;
    height: 250px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.services .srvc_Row .srvc_logo_img {
    width: 230px;
    height: 130px;
    margin-bottom: 8px;
    border-radius: 10px;
}

.services h3 {
    font-weight: bold;
    color: rgba(4, 41, 86, 0.868);
    letter-spacing: 4px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    font-size: 18px;
    z-index: 1;
    text-transform: uppercase;
}

.services p {
    font-size: 14px;
    font-weight: bold;
    color: black;
    letter-spacing: 1px;
    text-transform: none;
    opacity: 0;
    /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
    position: absolute;
    bottom: 10px;
    /* Adjust position slightly closer to h3 */
    left: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    /* Add a background for readability */
    z-index: 0;
    /* Ensure it stays below h3 when visible */
}

.services .frst_Elmnt:hover,
.services .scnd_Elmnt:hover,
.services .thrd_Elmnt:hover {
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.475);
    transform: scale(1.05);
    /* Slight zoom effect */
    transition: all 0.3s ease-in-out;
}

.services .frst_Elmnt:hover p,
.services .scnd_Elmnt:hover p,
.services .thrd_Elmnt:hover p {
    opacity: 1;
    /* Make text visible on hover */
    z-index: 1;
    /* Bring the text to the top */
}


/* Gallery Section */
.gallery {
    padding: 50px 20px;
    background-color: #f5eaea;
    text-align: center;
}

.gallery h2 {
    color: rgb(49, 130, 124);
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 5px;
    font-size: 50px;
    margin-bottom: 50px;
    padding-bottom: 18px;
    display: inline-block;
    position: relative;
    border-bottom: 4px dashed rgb(49, 130, 124);
}


.gallery .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.gallery .carousel-container .carousel-wrapper {
    width: 100%;
    /* Full width of the container */
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.gallery .carousel-container .carousel-wrapper .carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.gallery .carousel-wrapper .carousel img {
    height: 250px;
    width: 400px;
    flex-shrink: 0;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery .carousel-container .carousel-wrapper .carousel img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery .carousel-container button {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.703);
    border: none;
    font-size: 60px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 10px;
    border-radius: 50%;
    font-family: "Spectral", serif;

}

.gallery .carousel-container button:hover {
    background-color: rgba(0, 0, 0, 0.208);
}

.gallery .carousel-container .prev-btn {
    left: 10px;
}

.gallery .carousel-container .next-btn {
    right: 10px;
}


.gallery .explr {
    margin-top: 40px;
    padding: 10px 20px;
    background-color: transparent;
    color: black;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.gallery .explr a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bolder;
    font-size: 20px;
    font-family: "Spectral", serif;
}

.gallery .explr:hover {
    background-color: rgba(0, 0, 0, 0.091);
}


/* Why Us section */
.WhyUs {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150vh;
    background-image: url(Images/why_us_bckgrnd.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 20px;
}

.WhyUs .overlay {
    background: rgba(0, 0, 0, 0.703);
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    height: 60vh;
}

.WhyUs h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 67px;
    padding-bottom: 40px;
}

.WhyUs p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.WhyUs ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.WhyUs ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.WhyUs ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: rgba(0, 255, 255, 0.79);
    font-size: 1.2rem;
}

/* Footer */
.cmpny_footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #333;
    color: white;
    padding: 20px;
}

.footer-section {
    flex: 1;
    margin: 10px;
    padding: 10px;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px dotted rgb(10, 179, 179);
    display: inline-block;
    font-family: "Spectral", serif;
    font-weight: 700;
    /* Use 400 or 700 as per preference */
    text-transform: capitalize;
}

.footer-section p,
.footer-section a {
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
    text-decoration: none;
    padding-bottom: 25px;
    padding-top: 15px;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-section.right iframe {
    border: none;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav_list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .cmpny_footer {
        flex-direction: column;
        align-items: center;
    }
}



/*Experience section media query*/
/* Medium screens (tablets and smaller laptops) */
@media (max-width: 1024px) {
    .experience {
        padding: 60px 15px;
        height: auto;
        text-align: center;
    }

    .experience h2 {
        font-size: 2.5rem;
    }

    .experience p {
        font-size: 1.2rem;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item span {
        font-size: 1.2rem;
    }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
    .experience {
        padding: 40px 10px;
        height: auto;
        text-shadow: none;
        letter-spacing: 3px;
    }

    .experience h2 {
        font-size: 2rem;
    }

    .experience p {
        font-size: 1rem;
    }

    .experience .srvc_overlay {
        width: 95%;
        border-radius: 10px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item span {
        font-size: 1rem;
    }
}

/* Extra small screens (narrow mobile devices) */
@media (max-width: 480px) {
    .experience {
        padding: 20px 5px;
        letter-spacing: 2px;
    }

    .experience h2 {
        font-size: 1.5rem;
    }

    .experience p {
        font-size: 0.9rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item span {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}


/*Why us section media query*/
/* Medium screens (tablets and smaller laptops) */
@media (max-width: 1024px) {
    .WhyUs {
        background-attachment: scroll;
        /* Avoid fixed background issues */
        height: auto;
        /* Adjust height to content */
        padding: 30px 15px;
        /* Maintain spacing */
    }

    .WhyUs .overlay {
        max-width: 90%;
        height: auto;
        padding: 15px;
    }

    .WhyUs h2 {
        font-size: 2rem;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .WhyUs p {
        font-size: 1rem;
    }

    .WhyUs ul {
        font-size: 1rem;
        line-height: 1.6;
    }

    .WhyUs ul li {
        font-size: 1rem;
        padding-left: 15px;
    }

    .WhyUs ul li::before {
        font-size: 1rem;
    }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
    .WhyUs {
        background-attachment: scroll;
        /* Ensure smooth scrolling on mobile */
        height: auto;
        padding: 20px 10px;
        /* Adjust padding for smaller screens */
        text-align: center;
        /* Align text for readability */
    }

    .WhyUs .overlay {
        padding: 10px;
        max-width: 95%;
        border-radius: 8px;
    }

    .WhyUs h2 {
        font-size: 1.8rem;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .WhyUs p {
        font-size: 0.9rem;
    }

    .WhyUs ul {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .WhyUs ul li {
        padding-left: 10px;
    }

    .WhyUs ul li::before {
        font-size: 0.9rem;
    }
}

/* Extra small screens (narrow mobile devices) */
@media (max-width: 480px) {
    .WhyUs {
        padding: 15px 5px;
        height: auto;
    }

    .WhyUs .overlay {
        padding: 10px;
        border-radius: 5px;
    }

    .WhyUs h2 {
        font-size: 1.5rem;
        padding-top: 20px;
        padding-bottom: 15px;
    }

    .WhyUs p {
        font-size: 0.8rem;
    }

    .WhyUs ul {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .WhyUs ul li {
        padding-left: 8px;
    }

    .WhyUs ul li::before {
        font-size: 0.8rem;
    }
}


/*Gallery section media query*/
/* Medium screens (tablets and smaller laptops) */
@media (max-width: 1024px) {
    .gallery {
        padding: 30px 15px;
    }

    .gallery h2 {
        font-size: 24px;
        letter-spacing: 10px;
        margin-bottom: 40px;
    }

    .gallery .carousel-container {
        flex-direction: column;
    }

    .gallery .carousel-container .carousel-wrapper {
        width: 90%;
    }

    .gallery .carousel-wrapper .carousel img {
        height: 200px;
        width: 320px;
    }

    .gallery .carousel-container button {
        font-size: 40px;
        padding: 5px;
    }

    .gallery .explr {
        font-size: 0.9rem;
        letter-spacing: 5px;
    }

    .gallery .explr a {
        font-size: 18px;
    }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
    .gallery {
        padding: 20px 10px;
    }

    .gallery h2 {
        font-size: 20px;
        letter-spacing: 8px;
        margin-bottom: 30px;
    }

    .gallery .carousel-container .carousel-wrapper {
        width: 100%;
    }

    .gallery .carousel-wrapper .carousel {
        gap: 10px;
    }

    .gallery .carousel-wrapper .carousel img {
        height: 150px;
        width: 260px;
    }

    .gallery .carousel-container button {
        font-size: 35px;
    }

    .gallery .explr {
        font-size: 0.8rem;
        letter-spacing: 4px;
        padding: 8px 15px;
    }

    .gallery .explr a {
        font-size: 16px;
    }
}

/* Extra small screens (narrow mobile devices) */
@media (max-width: 480px) {
    .gallery {
        padding: 15px 5px;
    }

    .gallery h2 {
        font-size: 18px;
        letter-spacing: 5px;
        margin-bottom: 20px;
    }

    .gallery .carousel-wrapper .carousel img {
        height: 120px;
        width: 200px;
    }

    .gallery .carousel-container button {
        font-size: 30px;
    }

    .gallery .explr {
        font-size: 0.7rem;
        letter-spacing: 3px;
        padding: 6px 10px;
    }

    .gallery .explr a {
        font-size: 14px;
    }
}


/* Services section media query */
/* Medium screens (tablets and smaller laptops) */
@media (max-width: 1024px) {
    .services {
        padding: 5% 3%;
    }

    .services h2 {
        font-size: 2.5vw;
        letter-spacing: 2%;
    }

    .services .srvc_Row {
        justify-content: center;
        /* Center-align elements */
    }

    .services .frst_Elmnt,
    .services .scnd_Elmnt,
    .services .thrd_Elmnt,
    .services .frth_Elmnt {
        /* margin: 3%; */
        width: 45%;
        /* Reduced width to prevent overlap */
        height: auto;
        /* Auto height for flexible content */
    }

    .services .srvc_logo_img {
        max-width: 60%;
        max-height: 20%;
    }

    .services h3 {
        font-size: 2vw;
    }

    .services p {
        font-size: 1.8vw;
        bottom: 5%;
        left: 5%;
        right: 5%;
        padding: 3%;
    }
}

/* Small screens (up to 768px) */
@media (max-width: 768px) {
    .services .srvc_Row {
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
        /* Center-align for better presentation */
    }

    .services .frst_Elmnt,
    .services .scnd_Elmnt,
    .services .thrd_Elmnt,
    .services .frth_Elmnt {
        width: 90%;
        /* Reduce width to fit smaller screens */
        min-width: unset;
        /* Remove the min-width constraint */
        margin: 10px 0;
        /* Add vertical spacing between items */
        height: auto;
        /* Adjust height to content */
    }

    .services p {
        position: relative;
        /* Remove absolute positioning for simpler layouts */
        bottom: unset;
        left: unset;
        right: unset;
        text-align: center;
        /* Keep text centered */
        opacity: 1;
        /* Make text visible without hover */
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .services h2 {
        font-size: 24px;
        /* Adjust heading size for smaller screens */
        letter-spacing: 4px;
    }

    .services h3 {
        font-size: 18px;
        /* Adjust subheading size */
        letter-spacing: 2px;
    }
}

/* Extra small screens (up to 480px) */
@media (max-width: 480px) {
    .services h2 {
        font-size: 20px;
        /* Further reduce heading size */
        letter-spacing: 2px;
    }

    .services h3 {
        font-size: 16px;
        /* Further reduce subheading size */
    }

    .services .frst_Elmnt,
    .services .scnd_Elmnt,
    .services .thrd_Elmnt,
    .services .frth_Elmnt {
        width: 100%;
        /* Full width for small screens */
        margin: 5px 0;
        padding: 5px;
        /* Smaller padding */
    }
}

/* About Us Section Media Query */
/* Medium screens (tablets and smaller laptops) */
@media (max-width: 1024px) {
    .about_us {
        padding: 5%;
        padding-left: 6%;
        padding-right: 6%;
    }

    .about_us h2 {
        font-size: 1.5rem;
        /* Slightly smaller font for subheading */
        margin-bottom: 20px;
    }

    .about_us .heading-agileinfo {
        font-size: 4vw;
        /* Adjust heading font size based on viewport width */
    }

    .about_us p {
        font-size: 1.2rem;
        line-height: 1.6;
        padding: 4% 0;
        /* Adjust padding for better spacing */
    }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
    .about_us {
        padding: 5%;
        padding-left: 4%;
        padding-right: 4%;
    }

    .about_us h2 {
        font-size: 1.3rem;
    }

    .about_us .heading-agileinfo {
        font-size: 5vw;
        /* Smaller font for narrow screens */
    }

    .about_us p {
        font-size: 1rem;
        line-height: 1.5;
        letter-spacing: 0.5px;
        /* Reduce letter spacing */
        padding: 3% 0;
    }
}

/* Extra small screens (narrow mobile devices) */
@media (max-width: 480px) {
    .about_us {
        padding: 4%;
        padding-left: 3%;
        padding-right: 3%;
    }

    .about_us h2 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .about_us .heading-agileinfo {
        font-size: 6vw;
        /* Adjust for smaller viewport */
    }

    .about_us p {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 2% 0;
    }
}

/*Reserve Section*/
.cmpny_footer .reserve {
    display: flex;
    justify-content: center;
    /* Centers content horizontally */
    align-items: center;
    /* Centers content vertically (if needed) */
    background-color: #333;
    color: #ccc;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: small;
    text-align: center;
    /* Ensures text alignment within the flexbox */
    padding: 0;
    /* Removes unnecessary padding */
    margin: 0;
    /* Removes any unwanted margins */
    width: 100%;
    /* Ensures the section spans the full screen width */
    box-sizing: border-box;
    /* Includes padding in width/height calculations */
}

.cmpny_footer .reserve a {
    text-decoration: none;
    color: #ccc;
}

.cmpny_footer .reserve a:hover {
    text-decoration: underline;
    color: white;
}

/* Media Query for Responsive Adjustments */
@media (max-width: 768px) {
    .cmpny_footer .reserve {
        flex-direction: column;
        font-size: smaller;
        /* Adjusts text size for smaller screens */
        padding: 10px;
        /* Adds some padding for readability */
    }
}

@media (max-width: 480px) {
    .cmpny_footer .reserve {
        flex-direction: column;
        font-size: x-small;
        /* Reduces font size further */
    }
}

.ourClient {
    text-align: center;
    padding: 20px 10px;
    background-color: #f9f9f9;
    /* Soft background for better contrast */
}

.ourClient .client {
    font-weight: 600;
    letter-spacing: 5px;
    font-size: 50px;
    color: #067e89f2;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.client_glr {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Adds spacing between rows */
    align-items: center;
}

.client_glr .row {
    display: flex;
    gap: 5.7%;
    justify-content: center;
}

.client_glr img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    /* Ensures images maintain aspect ratio */
    border-radius: 10px;
    /* Adds rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.client_glr img:hover {
    transform: scale(1.1);
    /* Zoom effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Media Query for Responsive Design */

@media (max-width: 1280px) {
    .ourClient {
        padding: 15px 5px;
        /* Adjust padding for smaller screens */
    }

    .ourClient .client {
        font-size: 40px;
        /* Reduce font size for better fit */
        margin-bottom: 15px;
    }

    .client_glr {
        gap: 15px;
        /* Reduce gap between rows */
    }

    .client_glr .row {
        gap: 4%;
        /* Adjust gap between images */
    }

    .client_glr img {
        height: 70px;
        width: 70px;
        /* Adjust image size */
    }
}

@media (max-width: 1024px) {
    .client_glr .row {
        gap: 2%;
        /* Adjust gap between images */
    }
}

@media (max-width: 860px) {
    .ourClient {
        padding: 12px;
    }

    .ourClient .client {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .client_glr {
        gap: 12px;
    }

    .client_glr .row {
        gap: 3%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .client_glr img {
        height: 65px;
        width: 65px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .ourClient .client {
        font-size: 35px;
    }

    .client_glr {
        flex-direction: column;
    }

    .client_glr .row {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .client_glr img {
        height: 60px;
        width: 60px;
    }
}

@media (max-width: 480px) {
    .ourClient {
        padding: 10px;
    }

    .ourClient .client {
        font-size: 28px;
    }

    .client_glr img {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 912px) {
    .ourClient {
        padding: 14px 8px;
    }

    .ourClient .client {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .client_glr {
        gap: 14px;
        flex-direction: column;
        align-items: center;
    }

    .client_glr .row {
        gap: 3%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .client_glr img {
        height: 68px;
        width: 68px;
        margin-top: 10px;
    }
}