
/*Contact*/
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

section {
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 900px;
    width: 90%;
    padding: 0 15px;
    box-sizing: border-box;
}

.contactInfo {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333333;
}

.contactInfo h2 {
    margin-bottom: 20px;
    color: #ffffff;
    background-color: #005f6b;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}

.info {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: center;
}

.info li {
    margin-bottom: 15px;
    color: #555555;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
}

.info li img {
    width: 24px;
    margin-right: 10px;
    filter: brightness(0.7);
}

.info li span {
    color: #333333;
    font-weight: bold;
    text-align: center;
}

.sms-option {
    margin-top: 20px;
    text-align: center;
}

.sms-link {
    display: inline-block;
    background-color: #005f6b;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

.sms-link:hover {
    background-color: #004956;
    color: #ffffff;
}

.linkstyle {
    color: #005f6b;
    text-decoration: none;
}

.linkstyle:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .contactInfo {
        padding: 15px;
    }

    .contactInfo h2 {
        font-size: 16px;
        padding: 8px 12px;
    }

    .info {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: center;
}

    .info li {
        margin-bottom: 15px;
    color: #555555;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }

    .info li img {
        width: 24px;
    margin-bottom: 10px;
    filter: brightness(0.7);
    display: block; /* Ensures the image is treated as a block element */
    margin-left: auto; /* These two margin properties */
    margin-right: auto;
        
    }

    .sms-link {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .info li {
        flex-direction: column;
        align-items: center;
    }

    .info li img {
        margin-bottom: 5px;
    }
}
/*Contact end*/


/*Branches*/
   .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
   :root {
    --primary-color: #005f6b;
    --secondary-color: #6c757d;
    --background-color: #f8f9fa;
    --text-color: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-radius: 10px; /* Added border-radius to header */
}

h1 {
    margin: 0;
    font-size: 2.5rem;
}

.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab {
    background-color: #e9ecef;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

.tab:hover {
    background-color: #ddd;
}

.tab.active {
    background-color: var(--primary-color);
    color: white;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

table {
    width: 100%;
    border-collapse: separate; /* Changed from collapse to separate */
    border-spacing: 0; /* Added to maintain spacing between cells */
    margin-bottom: 1rem;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px; /* Added border-radius to table */
    overflow: hidden; /* Ensures the border-radius is applied correctly */
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
}

/* Add border-radius to the first and last cells of the first and last rows */
tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e6f2ff;
}

.search-container {
    margin-bottom: 1rem;
}

#searchInput {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.location-link {
    color: var(--primary-color);
    text-decoration: none;
}

.location-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    table {
        font-size: 0.8rem;
    }

    th, td {
        padding: 8px 10px;
    }
}
/*Branches end*/
body {
    overflow-x: hidden;
}


.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 5em; /* Increased from 1.5rem to 2.5rem */

}

.linkstyle{
    text-decoration: none; 
color:rgb(116, 112, 112);

}
.custom-navbar {
    background-color: #2c7a7a;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-brand img {
    width: 150px;
    height: auto;
}

.custom-navbar .navbar-nav .nav-item {
    margin-left: 20px;
}

.custom-navbar .navbar-nav .nav-link {
    color: #00788C;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover {
    color: #ffffff;
    background-color: #00788C;
    border-radius: 5px;
}

.custom-navbar .navbar-nav .nav-link.active {
    color: #005f6b;
    border-radius: 5px;
    
}

.custom-navbar .navbar-toggler {
    border: none;
}

.custom-navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Banner (HOME) */
.Banner {
    background-image: url("../img/img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.Banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.Banner .container {
    position: relative;
    z-index: 2;
}

.Banner-h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.Banner-p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-in-out;
}
.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.banner-btn {
    background-color: #00788C;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner-btn:hover {
    background-color: #005f6b;
    transform: scale(1.05);
    opacity: 0.9;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Section */
.welcome {
    padding: 30px 0;
    background-color: #f9f9f9;
}


.wel-row {
    align-items: center;
}



.wel-p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
    text-align: justify; /* Center the paragraph text */
    max-width: 800px; /* Limit the width for better readability */
    margin-left: auto; /* Center the paragraph block */
    margin-right: auto;
}
}

.wel-img-container {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.wel-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.wel-img:hover {
    transform: scale(1.05);
}

/* Center .wel-h1 for larger devices */
/* General styling for wel-h1 and wel-p */
.wel-h1, .wel-p {
    text-align: justify;
    margin: 0;
    padding: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .wel-h1, .wel-p {
        font-size: 1.2rem; /* Adjust font size for readability on smaller screens */
        line-height: 1.5;
    }
    .wel-h1 {
        font-weight: 700;
    }
    .wel-p {
        font-weight: 400;
    }
}

/* Last Banner */
.last-b {
    background-color: #00788C;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.last-b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 120, 140, 0.8) 0%, rgba(0, 120, 140, 0.5) 100%);
    z-index: -1;
}

.last-b .container {
    position: relative;
    z-index: 2;
}

.lst-h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.lst-p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #fff;
}

.lst-btn {
    background-color: #fff;
    color: #0dcaf0;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lst-btn:hover {
    background-color: #f8f9fa;
    color:#0dcaf0;
}

/* Animation */
@keyframes scaleInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.lst-btn {
    animation: scaleInOut 1.5s infinite ease-in-out;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

.footer-base {
    text-align: center;
    padding: 20px 0;
}

.footer-links-color {
    color:white;
}
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
  
}

.footer-links a {
  
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00788C;
}

.footer-links .divider {
    display: inline-block;
    margin: 0 5px;
    color: var(--secondary-color);
}

.service ul {
    list-style-type: none;
    padding-left: 0;
}

.service ul li {
    color: #ccc;
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.btn-locate {
    background-color: #00788C;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.btn-locate:hover {
    background-color: #005f6b;
    color: white;
}
/*Footer end*/
/*logo footer*/
.footer-nav-logo {
    height: 180px; /* Increased from 30px to 120px (4 times larger) */
    margin-right: 20px; /* Increased margin for better spacing */
    vertical-align: middle;
}
.footer-nav-logo-container {
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap; /* Added to allow wrapping if needed */
}
.footer-text {
    margin: 0;
    font-size: 0.875rem;
    color: #ccc;
}
  /*footer address*/
  .footer-address {
    font-size: 0.875rem;
    color: #ccc;
    margin-top: 10px;
    line-height: 1.4;
}
/* footer "our service"*/
h4 {
    color: #00788C;
    font-size: 1.1rem;
    margin-bottom: 10px;
}


.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
}

.contact-info ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info ul li a:hover {
    color: #00788C;
}

.hr-line {
    border-top: 1px solid #555;
    margin: 20px 0;
}


.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00788C;
}

/*services*/
.our-services {
    background-color: #f8f9fa;
}

.services-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.services-list li {
    margin: 10px;
    padding: 10px 20px;
    background-color: #005f6b;
    border-radius: 5px;
}

.services-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.services-list a:hover {
    text-decoration: underline;
}
/*services end*/
/* CARD sec start(services) */
.card img {
    width: 150px;
    margin: -65px;
    margin-left: 60px;

}

.card-body {
    margin-top: 20px;
}

.card {
    width: 260px;
    height: 325px;
    margin-top: 125px;
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 0px;
    min-height: 300px;

}

.card-h2 {
    margin-top: 60px;
    font-size: 21px;
    color: #00788C;
    display: flex;
    justify-content: center;
}

.card-sec {
    background-color: #F7F7F7;
    min-height: 500px;
}

.card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;

}

.col-card {
    padding: 0px;
}

.card-text {
    font-size: 15px;
    font-family: sans-serif;
}
/* cards end  */

/*banner section(Index)*/

.tracking-btn {
    background-color: #f0a500;
    color: black;
    text-decoration: none;
    display: inline-block;
}
.learn-more-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    border-top: 3px solid #00788C;
    border-bottom: 3px solid #00788C;
  }

  .learn-more-section h2 {
    color: #00788C;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .learn-more-section h3 {
    color: #005f6b;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .learn-more-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
  }

  .learn-more-section ul {
    list-style-type: none;
    padding-left: 0;
  }

  .learn-more-section ul li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
  }

  .learn-more-section ul li::before {
    content: '✓';
    color: #00788C;
    position: absolute;
    left: 0;
    top: 0;
  }

  .learn-more-btn {
    background-color: #005f6b;
    color: white;
}

/*slider welcome(index)*/
.welcome-slider-container {
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* This creates a 4:3 aspect ratio. Adjust as needed */
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Add border radius to the container */
    transition: transform 0.3s ease;}

#welcomeSlider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px; /* Add border radius to the slider */
    overflow: hidden; /* Ensure the border radius is applied to the content */
}

#welcomeSlider .carousel-inner,
#welcomeSlider .carousel-item {
    width: 100%;
    height: 100%;
    border-radius: 15px; /* Add border radius to carousel items */
    overflow: hidden; /* Ensure the border radius is applied to the content */
}

#welcomeSlider img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 15px; /* Add border radius to images */
}

/* Ensure the carousel controls are visible and respect the border radius */
#welcomeSlider .carousel-control-prev,
#welcomeSlider .carousel-control-next {
    display: none; 
   
}

#welcomeSlider .carousel-control-prev-icon,
#welcomeSlider .carousel-control-next-icon {
    width: 30px;
    height: 30px;

}

/*hover (Index)*/
#welcomeSlider .carousel-item img {
    transition: transform 0.2s ease;
}
.welcome-slider-container:hover {
    transform: scale(1.02); /* Slightly enlarges the entire slider container */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);}

#welcomeSlider:hover .carousel-item img {
    transform: scale(1.1); /* Zooms in the image */
}


/*CLient satisfaction (Index)*/
.client-satisfaction {
    background-color: #ffffff;
    padding: 60px 0;}

.client-satisfaction h2 {
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
}

.satisfaction-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 0 15px;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.satisfaction-rating {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 20px;
}

.satisfaction-quote {
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.satisfaction-author {
    color: #60b4d2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

#clientSatisfactionSlider .carousel-control-prev,
#clientSatisfactionSlider .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: #60b4d2;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

#clientSatisfactionSlider .carousel-control-prev {
    left: -25px;
}

#clientSatisfactionSlider .carousel-control-next {
    right: -25px;
}

#clientSatisfactionSlider .carousel-control-prev-icon,
#clientSatisfactionSlider .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Video Section Styles (Index) */
.video-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.video-section h2 {
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    padding-bottom: 42.1875%; /* 16:9 aspect ratio for 75% width */
    height: 0;
    overflow: hidden;
    max-width: 75%; /* Make the video container smaller */
    margin: 0 auto; /* Center the video container */
    border-radius: 15px; /* Add border radius */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px; /* Add border radius to the iframe as well */
}
/*Media Query for video (Index*/
@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }
    
    .video-container {
        max-width: 90%; /* Slightly larger on smaller screens */
        padding-bottom: 50.625%; /* Maintain 16:9 aspect ratio for 90% width */
    }
}

/* Media Query for Card (Services)- Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 370px) {
    .col-card {
        display: flex;
        justify-content: center;
        align-items: center;
        justify-items: center;

    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/*Media Query for Card-Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .card img {
        width: 150px;
        margin: -65px;
        margin-left: 30px;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Media Queries for Banner, welcome and list(Index) */
@media (max-width: 768px) {
    .Banner-h1 {
        font-size: 2.5rem;
    }

    .Banner-p {
        font-size: 1.25rem;
    }

    .wel-row {
        flex-direction: column;
        align-items: center;
    }

  .wel-h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #00788C;
        text-align: center;
        font-size: 1.5rem;
        background-image: url("../img/hero-img.jpg");
        background-size: cover;
        background-position: center;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        padding: 20px;
        border-radius: 10px;
        font-size: 2.5em;
    
}
    .wel-p {
        font-size: 0.875rem;
    }

    .lst-h2 {
        font-size: 1.5rem;
    }

    .lst-p {
        font-size: 0.875rem;
    }

    .lst-btn {
        font-size: 0.875rem;
    }
}

/*media query for footer - Adjust spacing for smaller screens */
@media (max-width: 768px) {
    .footer-nav-logo {
        height: 80px; /* Slightly smaller on mobile devices */
        margin-right: 10px;
        margin-bottom: 10px; /* Add some bottom margin for better spacing when wrapped */
    }
    
    .footer-links {
        justify-content: flex-start; /* Align to the start on smaller screens */
        flex-direction: column;
     }
     .footer-links a {
        margin: 5px 0;
    }

    .footer-links .divider {
        display: none;
    }
}

/*Media query for client satisfaction (Index)*/
@media (max-width: 768px) {
    .satisfaction-item {
        height: auto;
        margin: 0 5px;
    }

    #clientSatisfactionSlider .carousel-control-prev,
    #clientSatisfactionSlider .carousel-control-next {
        display: none;
    }
}
.wel-p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .welcome .col-md-12 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: left;
    }

    .wel-h1 {
        margin-bottom: 15px;
        font-size: 24px; /* Adjust the size for mobile */
    }

    .wel-p {
        font-size: 16px; /* Adjust for readability on smaller screens */
    }
}

