@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{

    --bg-color: #fff;

    --btn-color: #fdfdfd;/* button color*/
    --btn-bg: #000;/* button bg color*/

    --primary-text-color: #000;
    --header-link-hover: #000;
    --input-hover-bd-color: #000;
}


html {
    scroll-behavior: smooth;
    font-family: "Ubuntu", sans-serif;
}

header{
    /* background-color: #fff;
    color: #000; */
    color: #4b4b4b;
}


header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse{
    transition: width 0.3s ease;
}


.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.5s, color 0.5s;
}


.header-links:hover {
    color: #000000;
    /* background-color: var(--header-link-hover); */
}

.primary-text-color{
    color: var(--primary-text-color);
}


.signup-img-section{
    background-image: url("../assets/images/home/darkbg.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.edge-gradient{
    background: rgb(28, 28, 28);
    background: linear-gradient(83deg, #ffffff 0%, #ffffff00 20%, #ffffff00 80%, rgb(255, 255, 255) 100%);
}

.scroller{
    /* width: max-content;
    flex-wrap: nowrap; */
    animation: scroll 40s forwards linear infinite;
  }
  
  .scroller[data-direction="right"] {
      animation-direction: reverse;
  }
  
  .scroller[data-direction="left"] {
      animation-direction: forwards;
  }
  
  .scroller[data-direction="left"] {
      animation-direction: forwards;
  }
  
  .scroller[data-speed="fast"]{
      animation-duration: 30s;
  }
  
  .scroller[data-speed="slow"]{
      animation-duration: 80s;
  }

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 5px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.btn:hover{

}

.btn:disabled{
    cursor: default;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    /* outline: none; */
    min-width: 100px;
    border: 1px solid #818080;
    /* transition: border 0.3s; */
}

.input:active, .input:focus, .input:focus-within{
    border: 1px solid var(--input-hover-bd-color) !important;
}

.carousel-container {
    overflow: hidden; /* Hide overflow */
    white-space: nowrap; /* Prevent line breaks */
    max-width: 800px; /* Fit the carousel to the width of its parent */
    position: relative;
  }
  
  .carousel {
    display: inline-flex; /* Lay out the images in a horizontal row */
    animation: scroll 60s linear infinite; /* Smooth, continuous scroll */
  }
  
  .carousel-img {
    width: 150px;
    height: 30px;
    margin: 0 10px;
  }
  
  .tw-h-full {
    height: 100%;
  }
  
  .tw-w-full {
    width: 100%;
  }
  
  .tw-object-contain {
    object-fit: contain;
  }
  
  .tw-grayscale {
    filter: grayscale(100%);
  }
  
  .tw-grayscale-0 {
    filter: grayscale(0%);
  }
  
  .tw-transition-colors {
    transition: filter 0.3s;
  }
  
  
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-link{
    color: #434242;
    transition: color 0.3s;
}

.footer-link:hover{
    color: #0b0b0b;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 10;
}

/* Position the "next button" to the right */
.next {
    right: 0px;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



/* Style for the collapsible content such as faq commonly known as: accordion */

.faq{
    background-color: #fff;
    color: #000000;
    border: 1px solid #000;
}

.faq-accordion {
    background-color: inherit;
    color: #000000;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: #232323;
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-accordion .active,
.faq-accordion:hover {
    /* background-color: #2e2c2c; */
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #040404;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 3px 0px 3px 2px #9f9f9f;
    }

    .header-links{
        color: rgb(255, 255, 255);
    }
    
}

/* General Section Styling */
.pricing-section {
    padding: 60px 20px;
    background-color: #ffff;
    text-align: center;
  }
  
  .pricing-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  /* Container for the cards */
  .pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  /* Card Styling */
  .pricing-card {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
  }
  
  /* Highlighted card */
  .pricing-card-highlight {
    border: 2px solid #050405;
  }
  
  /* Plan Titles */
  .plan-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .plan-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  /* Pricing Info */
  .plan-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .plan-period {
    font-size: 18px;
    font-weight: 400;
    color: #6c757d;
  }
  
  /* Plan Features */
  .plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .plan-features li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .check-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-color: #28a745;
    border-radius: 50%;
  }
  
  /* Buttons */
  .plan-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #080709;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .plan-button:hover {
    background-color: #333334;
  }
  
  .about-us-section {
    padding: 60px 10%;
    background-color: #ffff;
}

.about-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-us-text {
    flex: 1;
    max-width: 50%;
}

.about-us-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.about-us-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #555;
}

.about-us-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.about-us-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
}

.about-us-image img {
    width: 100%; /* Adjusts to the container's width */
    height: 450px; /* Set a uniform height */
    object-fit: cover; /* Ensures the image covers the area while maintaining aspect ratio */
    border-radius: 10px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }

    .about-us-text, .about-us-image {
        max-width: 100%;
    }

    .about-us-image {
        text-align: center;
    }
}

.meet-the-team-section {
    text-align: center;
    padding: 60px 10%;
    background-color: #fff;
}

.meet-the-team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #010101;
    margin-bottom: 40px;
}

.team-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    background-color: #ffff;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    position: relative; /* Added for positioning */
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    border-radius: 50%;
    height: auto;
    max-width: 150px;
    margin: 0 auto 20px; /* Center image */
    display: block; /* Ensure it is block-level */
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.team-card p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        gap: 20px;
    }

    .team-card {
        max-width: 100%;
    }
}


.services-section {
    padding: 60px 10%;
    background-color: #ffff;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #050405;
    margin-bottom: 40px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.2s;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    padding: 10px 15px;
    background-color: #282829;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.learn-more:hover {
    background-color: #302f30;
}

/* Add a hover effect to the service card */
.service-card:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}
.contact-section {
    padding: 60px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.contact-icon {
    width: 30px; /* Adjust as needed */
    margin-right: 10px; /* Space between icon and text */
}

.divider {
    height: 40px; /* Adjust height for spacing */
    width: 1px; /* Adjust width for divider */
    background-color: #ccc; /* Divider color */
}

.contact-layout {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between form and map */
}

.map-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-form, .map-container {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 200px;
    }
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%; /* Full width */
    padding: 10px;
    margin-bottom: 15px; /* Space between fields */
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 15px;
    background-color: #060606; /* Button color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.calendar-button {
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #020202; /* Button color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-form,
    .map-container {
        max-width: 100%;
    }
}

/* Styling for service descriptions */
.tw-text-base {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

