*{
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    color: rgb(75, 76, 77);
}
.bg-image-section {
    background-size: cover; /* Make the background image cover the whole section */
    background-position: center; /* Center the image */
    height: 700px; /* Set the height of the section */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Text color */
    text-align: center;
}
body{
    background-color:#f6f9f9 ;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", !important;
}


/* Card Styles */
.card {
border-radius: 15px; /* Fully rounded corners */
box-shadow: 9px 9px 9px 9px rgba(22, 13, 13, 0.1); /* Subtle shadow */
overflow: hidden; /* Ensures rounded corners apply to image */
border: none; /* Removes default border */
width: 400px; /* Smaller width */
height: 530px !important; /* Smaller height */
}

.card img {
border-top-left-radius: 15px;
border-top-right-radius: 15px;
height: 250px; /* Reduced height for image */
width: calc(100% - 20px); /* Reduced width for image with margin */
margin: 10px; /* Adds margin around the image (10px) */
}

.card-title {
font-size: 1.25rem;
color: #333;
font-family: Manrope, sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 30px;
color: rgb(14, 14, 14);
}

.card-text {
font-size: 0.95rem;
color: #666;
}

/* Button Styles */
.btn-custom-outline {
display: inline-block;
border: 1px solid #808080;
background-color: white; /* White background */
color: #808080; /* Red text */
border-radius: 50px; /* Pill-shaped */
padding: 8px 20px;
font-weight: 500;
transition: all 0.3s ease;
margin-top: 28px !important;
}

.btn-custom-outline:hover {
background-color: #808080;
color: white;
}

.btn-custom {
display: inline-block;
background-color: #808080; /**/
color: white; /* White text */
border: none;
border-radius: 50px; /* Pill-shaped */
padding: 8px 20px;
transition: all 0.3s ease;
margin-top: 28px !important;
}

.btn-custom:hover {
background-color: #4a4949; /* Darker red */
color: white;
}

/* Center-align Buttons */
.btn-container {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 28px !important;
}
.stepcontainer {
    text-align: center;
    padding: 50px;
    width: 100%;
    height: auto;
    margin-top: 90px !important;
    background: linear-gradient( #fff , #dddddd); /* Bold but subtle gradient */
}

.container h1 {
    font-size: 2.5rem;
    color: #3c3635; /* Matches your theme */
    margin-bottom: 40px;
    font-family: Manrope, sans-serif; /* Elegant font */
    margin-top: 90px !important;
    font-weight: 600; /* Slightly bolder heading */
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap; /* Allow the steps to wrap on smaller screens */
    margin: 0 auto; /* Center the steps horizontally */
}

.step {
    max-width: 280px;
    text-align: center;
    padding: 25px;
    background-color: #ffffff; /* Clean and minimal background */
    border-radius: 20px; /* Softer rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Subtle depth effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 30%; /* Allow each step to shrink and grow */
    min-width: 250px; /* Ensure steps don’t become too small */
    margin-bottom: 30px; /* Add some spacing between steps */
}

.step:hover {
    transform: translateY(-10px); /* Smooth hover effect */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.step img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.2rem;
    color: #333; /* Neutral heading color */
    font-family: Manrope, sans-serif;
    margin-bottom: 10px;
}

.step p {
    font-size: 1rem;
    color: #666; /* Softer text color */
    font-family: Manrope, sans-serif;
    line-height: 1.6;
}

.arrow {
    width: 50px;
    height: auto;
    margin-top: 70px;
}

@media (max-width: 980px) {
    .steps {
        flex-direction: row; /* Ensure steps stay in row format */
        justify-content: space-between; /* Keep steps spaced evenly */
    }

    .step {
        flex: 1 1 30%; /* Keep steps at 30% width */
        margin-bottom: 20px; /* Reduce bottom margin between steps */
    }

    .arrow {
        display: none; /* Hide arrows on small screens */
    }
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column; /* Stack steps vertically on smaller screens */
        gap: 30px; /* Adjust the gap between steps */
        align-items: center; /* Center items vertically */
    }

    .step {
        max-width: 100%; /* Allow steps to take full width on small screens */
    }

    .arrow {
        display: none; /* Hide arrows on small screens */
    }

    .container h1 {
        font-size: 1.8rem; /* Adjust heading size for smaller screens */
        margin-top: 40px !important; /* Adjust top margin */
    }
}


.containerbox {
    text-align: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* Center the container horizontally */
    display: flex; /* Use Flexbox */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    min-height: 100vh; /* Ensure it takes full height of the viewport */
}
.containerbox {
    text-align: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* Center the container horizontally */
    display: flex; /* Use Flexbox */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    min-height: 100vh; /* Ensure it takes full height of the viewport */
    padding: 0; /* Remove any default padding */
    margin-top: 90px; /* Add top margin */
}

.containerbox h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.containerbox p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 15px;
    margin: auto;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
}

th.criteria {
    background: linear-gradient(to bottom, #ffffff , #dddddd);
    color: #0c0c0c;   
     text-align: center;
}

th.homeworks {
    background: linear-gradient(to bottom,#ffffff, #d4dfed);
    color: #000;
    text-align: center;
}

th.typical {
    background: linear-gradient(to bottom, #ffffff , #eee4da);
    color: #000;
    text-align: center;
}

td {
    background: linear-gradient(to bottom, #fcfcfc, #f3f3f3);
    border-radius: 8px;
}

td.bold {
    font-weight: 700;
    font-size: medium;
}

td span {
    margin-right: 10px;
    font-size: 1.1rem;
}

.check {
    font-weight: 600;
    font-size: medium;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('images/check-mark (1).png');
    background-size: contain;
    background-repeat: no-repeat;
}

.cross {
    font-weight: 800 !important;
    font-size: medium;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('images/cross.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: system-ui, -apple-system, sans-serif;
    margin-top: 100px;
}

.quote-mark {
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 80px;
    color: #c0c0c0;
    z-index: 1;
}

.carousel {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.carousel-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-card {
    min-width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-card.active {
    opacity: 1;
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.testimonial-text {
    color: #7a7a7a;
    font-size: 16px;
    line-height: 1.6;
}

.author-info {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h3 {
    color: #202020;
    font-size: 24px;
    margin: 0;
}

.rating {
    color: #f9f754;
    font-size: 18px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
}

.prev {
    left: -50px;
}

.next {
    right: -50px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.indicator {
    width: 50px;
    height: 4px;
    background: #808080;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background: #404040;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .carousel-arrow {
        display: none;
    }
}

section {
    padding: 50px 20px;
}

h2 {
    font-size: 32px;
    font-weight: 300 !important;
    text-align: center;
    margin-bottom: 30px;
    color: #4F4F4F;
}

p {
    margin: 0;
    color: #6E6E6E;
    line-height: 1.6;
}

  /* About Us Section */
  .about-us {
    background: linear-gradient(to bottom, #fff , #dddddd);
    text-align: center;
    margin-top: 100px;
  }

  .about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .about-card {
    background-color: #FFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }

  .about-card:hover {
    transform: translateY(-5px);
  }

  .about-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
  }

  .about-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .about-title {
    font-size: 18px !important;
    font-weight: 400 !important;
    margin-bottom: 20px;
    color: #4F4F4F;
  }

  .about-desc {
    font-size: 18px;
    color: #6E6E6E;
  }

  /* Contact Section */
  .contact {
    padding: 40px 20px;
    text-align: center;
    margin-top: 100px;
  }

  .contact-title {
    font-size: 24px;
    font-weight: 300 !important;
    margin-bottom: 40px !important;
    color: #292929;
  }

  .contact-desc {
    font-size: 14px;
    color: #6E6E6E;
    margin-bottom: 20px;
  }

  .contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .contact-buttons a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #FFF;
    border-radius: 30px;
    transition: background-color 0.3s;
  }

  .call-now {
    background-color: #848484;
  }

  .call-now:hover {
    background-color: #343434;
  }

  .whatsapp {
    background-color: #25D366;
  }

  .whatsapp:hover {
    background-color: #1EBE57;
  }     a {
    text-decoration: none;
    color: inherit;
  }

  .header-text {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
  }
  
  .footer-logo {
    max-height: 70px;
    object-fit: contain;
  }
  
  .footer {
    color: #333;
    font-family: 'Arial', sans-serif;
}

.footer h3 {
    font-size: 1.3rem;
    font-weight: 500;
}

.footer-description {
    color: #666;
    line-height: 1.6;
}

.contact-info a {
    display: block;
    margin-bottom: 10px;
}

.footer-hr {
    margin: 20px 0;
    border-top: 1px solid #ddd;
}

.footer-bottom {
    font-size: 0.9rem;
    color: #777;
}.carousel-content {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-card {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    transition: transform 0.5s ease-in-out;
}