/********** Template CSS **********/
:root {
    --primary: #13C5DD;
    --secondary: #354F8E;
    --light: #EFF5F9;
    --dark: #1D2A4D;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}
/* Example custom CSS to center content */
.container-fluid {
    text-align: center; /* Centers text and inline elements */
    justify-content: center;
    padding-left: 0%;
    margin-left: 0%;
    padding-right: 0%;
    margin-right: 0%;
    margin-right: -50px;
    box-sizing: border-box !important;
}

.container {
   box-sizing: border-box;
   justify-content: center;
   padding: 0%;
   margin-top: 0%;
   padding-top: 0%;
}

.logo{
    width: 200px;
    height: 50px;
}
.hero-header {
    background: url(../img/n-img/Capture.JPG) center center no-repeat;
    background-size: cover; /* Ensures the image covers the entire area */
    height: 70vh; /* Set the height of the hero image */
    width: 100%; /* Ensure it spans the full width of the container */
    background-attachment: fixed; /* Keeps the background fixed during scrolling */
    background-color: white !important;
    margin-top: 0;
    position: relative;
    overflow: hidden; /* Ensures content doesn't overflow */
}
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without stretching */
    object-position: center;
}

/* founder */
.founder {
    padding-top: 50px;
}

.founder1 {
    display: flex;
    align-items: center; /* Center items vertically within the flex container */
}

.founder1 img {
    flex: 1; /* Allow the image to take up equal space */
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
}

.founder1 .text-container { /* Assuming you have a separate container for text */
    flex: 1; /* Allow the text container to take up equal space */
    display: flex;
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    text-align: center; /* Center text within its container */
}

.founder h1 {
    margin: 0; /* Remove default margin */
}

.founder ul li {
    list-style: none;
    padding: 2px;
    justify-content: left;
    text-align: left;
}
.founder1 {
    display: flex;
    justify-content: space-between; /* Ensures space between the content and the image */
    align-items: center; /* Vertically centers the content and image */
    gap: 20px; /* Optional: adds space between the content and image */
}

.founder-content {
    flex: 1;
}

.f-img img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.abt-img{
    float: left;
}
/* marqee */
.marqee-swipe-carousel-container {
    width: 100%; /* Make the container full-width */
    max-width: 100vw; /* Ensure it doesn't exceed the viewport width */
    overflow: hidden;
    padding: 30px;
    box-sizing: border-box;
}

.marqee-swipe-carousel {
    display: flex;
    width: 200%; /* Set the width to account for both image sets (100% * 2 sets) */
    animation: marqee-swipe 10s infinite;
    box-sizing: border-box;
}

.marqee-swipe-image-set {
    display: flex;
    flex-wrap: nowrap;
    width: 100%; /* Make the set take 100% of the container width */
    gap: 5px;
    padding: 15px;
    box-sizing: border-box;
}

.marqee-swipe-carousel img {
    width: 100%; /* Make the images responsive */
    max-width: 300px; /* Limit maximum width */
    height: 220px;
    object-fit: fill;
}

@keyframes marqee-swipe {
    0%, 25% {
        transform: translateX(0);
    }
    50%, 75% {
        transform: translateX(-100%); /* Swipe to show the next set of images */
    }
    100% {
        transform: translateX(0);
    }
}

/* Media Query for small screens */
@media (max-width: 768px) {
    .marqee-swipe-carousel img {
        width: 90%; /* Adjust the image width to fit smaller screens */
        height: auto; /* Adjust height to maintain aspect ratio */
    }
}

/* Media Query for extra small screens */
@media (max-width: 480px) {
    .marqee-swipe-carousel img {
        width: 80%; /* Further reduce image size for very small screens */
        height: auto;
    }
}
/* contact */
/* Heading */
h1 {
    text-align: center;
    margin: 20px 0;
  }
  
  /* Container Styling */
  .n-contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between list and map */
    padding: 20px;
    height: calc(100vh - 60px); /* Adjust based on header/footer height */
  }
  
  /* List Styling */
  .n-contact-list {
    flex: 1;
    text-align: center;
  }
  
  .n-contact-list ul {
    list-style: none;
    padding: 0;
  }
  
  .n-contact-list li {
    margin: 10px 0;
    text-align: left;
    padding-left: 20px;
    position: relative;
  }
  
  .n-contact-list img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Map Container Styling */
  .n-contact-map {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .map-container {
    width: 400px;
    height: 300px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
   
    .n-contact {
      flex-direction: column;
    }
  
    .n-contact-list, .n-contact-map {
      width: 100%;
      text-align: center;
    }
  }
  .c-card{
    justify-content: center;
    align-items: center;
  }
/* Media query for screens less than 768px */
@media (max-width: 768px) {
    .founder1 {
        flex-direction: column; /* Stacks items vertically */
        align-items: center; /* Center-aligns items horizontally */
    }

    .founder-content,
    .f-img {
        width: 100%; /* Ensures full width on smaller screens */
        text-align: center; /* Center-aligns text on smaller screens */
    }

    .f-img {
        margin-top: 20px; /* Adds spacing between the content and image */
    }
}
/* carousel */
/* Make the carousel take full width */
.testimonial-carousel {
    width: 100% !important; /* Full width */
    height: 400px; /* Adjust height as needed */
    border-radius: 15px;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the testimonial item takes full height */
    background-color: darkblue;
    color: white;
    
}

.testimonial-item p {
    font-size: 18px; /* Adjust as necessary */
    padding: 0 20px; /* Add padding for better readability */
    max-width: 80%; /* Prevent the text from being too wide */
}

.testimonial-item hr {
    width: 50px; /* Adjust the width of the horizontal line */
    border: 2px solid #ddd; /* Style the hr line */
}

.testimonial-item .fa-quote-left {
    font-size: 40px; /* Increase quote icon size */
}

.position-relative.mb-5 {
    height: 100px; /* Adjust the height of the image area */
    display: flex;
    justify-content: center;
    align-items: center;
}

.position-absolute {
    width: 80px !important; /* Increase width of the quote icon background circle */
    height: 80px !important; /* Increase height of the quote icon background circle */
}

.testimonial-item img {
    width: 80px; /* Adjust image size */
    height: 80px; /* Ensure the image stays circular */
    border-radius: 50%; /* Make sure image is round */
}

/* General owl-carousel styles */
.owl-carousel .owl-stage-outer {
    padding: 10px;
}

.owl-carousel .owl-item {
    width: 100%; /* Ensure each item takes up full width */
    height: 100%; /* Full height of each carousel item */
}

/* about img */
.col-lg-5 .position-relative img {
    width: 400px !important; /* Set the width to 300px */
    height: 500px !important; /* Set the height to 300px */
    object-fit: cover; /* Ensure the image retains its aspect ratio */
    border-radius: 10px; /* Maintain the rounded corners */
}

.service-item {
    position: relative;
    height: 350px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    transform: rotate(-14deg);
}

.service-item .service-icon i {
    transform: rotate(15deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.price-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: var(--primary);
    border-radius: 8px 8px 50% 50%;
    z-index: -1;
}

.price-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

@media (min-width: 576px) {
    .team-item .row {
        height: 350px;
    }
}

.team-carousel .owl-nav {
    position: absolute;
    padding: 0 45px;
    width: 100%;
    height: 45px;
    top: calc(50% - 22.5px);
    left: 0;
    display: flex;
    justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}
/* updates */
/* General Styles */
body {
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Media Query for iPhones and smaller devices */
@media (max-width: 768px) {
    .row {
        flex-wrap: wrap; /* Allow items to wrap if they exceed the container */
        overflow-x: hidden; /* Ensure no overflow */
    }

    .col-sm-3 {
        flex: 1 1 100%; /* Make columns take full width on smaller screens */
        max-width: 100%; /* Ensure columns don’t exceed container */
    }
}
@media (max-width: 768px) {
    .row {
      justify-content: center; /* Center items on small screens */
    }
    .col-lg-4 {
      flex: 1 1 100%; /* Make columns full width on small screens */
    }
  }
