 /* Add this at the top */
 
 .show {
     display: block !important;
 }
 
 body {
     font-family: 'Lato', sans-serif;
 }
 
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Merriweather', serif;
 }
 
 p {
     font-family: 'Lato', sans-serif;
     font-size: 18px;
     /* Standard size for readability */
     line-height: 1.6;
     /* Ensures comfortable reading experience */
     color: #336;
     /* Slightly lighter gray for a softer look */
     margin-bottom: 1em;
     /* Creates clear separation between paragraphs */
 }
 
 .open span:nth-child(1) {
     transform: rotate(45deg) translateY(8px);
 }
 
 .open span:nth-child(2) {
     opacity: 0;
 }
 
 .open span:nth-child(3) {
     transform: rotate(-45deg) translateY(-8px);
 }
 /* Existing CSS remains the same */
 
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: 'Poppins', sans-serif;
     line-height: 1.6;
     background-color: #f4f4f9;
     color: #333;
 }
 
 header {
     background: #fff;
     padding: 1rem 0;
     border-bottom: 1px solid #ddd;
 }
 
 nav {
     display: flex;
     justify-content: space-between;
     height: 90px;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 10px 20px;
     position: relative;
 }
 
 .container h1 {
     font-size: 40px;
     color: #545e67;
     font-family: Poppins, sans-serif;
     font-weight: 100;
     text-align: center;
     letter-spacing: -2px;
     line-height: 1.1;
 }
 
 .samples-section h1 {
     font-size: 40px;
     font-family: Poppins;
     font-weight: 100;
     color: #545e67;
     text-align: center;
     line-height: 1.1;
 }
 
 .logo {
     display: flex;
     align-items: center;
     font-size: 1.5rem;
     font-weight: bold;
     padding-top: 30px;
     color: #333;
 }
 
 .logo img {
     height: 250px;
     /* Adjust height as needed */
     width: auto;
     /* Maintain aspect ratio */
     max-width: 250px;
     /* Prevent it from getting too large */
 }
 /* Adjust for smaller screens */
 
 @media (max-width: 768px) {
     .logo img {
         height: 200px;
         /* Slightly smaller for mobile */
     }
 }
 
 .logo a {
     text-decoration: none;
     color: #000000;
 }
 
 .nav-links {
     list-style: none;
     display: flex;
 }
 
 .nav-links li {
     margin: 0 1rem;
 }
 
 .nav-links a {
     text-decoration: none;
     color: #333;
     transition: color 0.3s;
 }
 
 .nav-links a:hover {
     color: #545e67;
 }
 
 .auth-buttons {
     display: flex;
 }
 
 .auth-buttons .login-btn,
 .auth-buttons .signup-btn {
     padding: 0.5rem 1rem;
     border: none;
     cursor: pointer;
     margin-left: 0.5rem;
     border-radius: 5px;
 }
 
 .auth-buttons .login-btn {
     background: #fff;
     color: #333;
     border: 1px solid #333;
     transition: background-color 0.3s, color 0.3s;
 }
 
 .auth-buttons .signup-btn {
     background: #545e67;
     color: #fff;
     transition: background-color 0.3s, color 0.3s;
 }
 
 .auth-buttons .login-btn:hover {
     background: #333;
     color: #fff;
 }
 
 .auth-buttons .signup-btn:hover {
     background: #0056b3;
 }
 
 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }
 
 .hamburger span {
     height: 3px;
     width: 25px;
     background: #333;
     margin-bottom: 5px;
     border-radius: 5px;
     transition: all 0.3s ease;
 }
 
 .quotation {
     width: 100%;
     max-width: 250PX;
     background: #1dc34f;
     padding: 10px 20px;
     border-radius: 4px;
 }
 
 .quotation a {
     text-decoration: none;
     color: #ffffff;
 }
 
 .quotation a:hover {
     color: #545e67;
 }
 
 .quotation:hover {
     background: #20b954;
 }
 
 .mobile-nav {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     color: white;
     text-align: center;
 }
 
 .mobile-nav-links {
     list-style: none;
     padding: 1rem 0;
     margin-top: 50%;
 }
 
 .mobile-nav-links li {
     margin: 1rem 0;
 }
 
 .mobile-nav-links a {
     text-decoration: none;
     color: white;
     font-size: 1.2rem;
     display: block;
 }
 
 .mobile-auth-buttons {
     display: flex;
     flex-direction: column;
     padding: 1rem 0;
 }
 
 .hero {
     display: flex;
     align-items: center;
     justify-content: space-around;
     padding: 2rem 1rem;
     max-width: 1200px;
     margin: 0 auto;
 }
 
 .hero-content {
     flex: 1;
     animation: fadeInLeft 1s ease-in-out;
 }
 
 .hero-content h1 {
     font-size: 2.5rem;
 }
 
 .hero h1 {
     margin-bottom: 1rem;
     color: #545e67;
 }
 /* .hero-buttons{

} */
 
 .hero p {
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
     padding: 2.5rem 1.4rem;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.5;
 }
 /*send prompt*/
 
 .get-started-button {
     display: inline-flex;
     align-items: center;
     padding: 10px 20px;
     background: #1dc34f;
     /* WhatsApp green color */
     color: #fff;
     font-size: 20px;
     border-radius: 5px;
     cursor: pointer;
     transition: background 0.3s ease;
     text-decoration: none;
 }
 
 .get-started-button i {
     margin-left: 10px;
     /* Space between text and icon */
     font-size: 20px;
 }
 
 .get-started-button:hover {
     background: #20b954;
     /* Darker green on hover */
 }
 
 .hero-buttons .get-started-btn,
 .hero-buttons .contact-us-btn {
     padding: 0.75rem 1.5rem;
     border: none;
     cursor: pointer;
     margin-right: 1rem;
     border-radius: 5px;
     transition: background-color 0.3s, color 0.3s;
 }
 
 .hero-buttons .get-started-btn {
     background: #545e67;
     color: #fff;
 }
 
 .hero-buttons .contact-us-btn {
     background: #fff;
     color: #333;
     border: 1px solid #333;
 }
 
 .hero-buttons .contact-us-btn:hover {
     background: #333;
     color: #fff;
 }
 
 .hero-image {
     flex: 1;
     animation: fadeInRight 1s ease-in-out;
 }
 
 .hero-image img {
     width: 100%;
     max-width: 500px;
 }
 /* fetaures of sample of our work */
 
 .features {
     text-align: center;
     padding: 2rem 0;
 }
 
 .features h2 {
     font-size: 68px;
     font-family: Google Sans;
     font-weight: normal;
 }
 /*import fonts*/
 
 @import url('https://fonts.googleapis.com/css2?family=Vattican+Brush&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Gabriella&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Wishfull&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Melon&display=swap');
 .features p {
     font-size: 1.5rem;
     margin: 0 auto;
     padding: 2.5rem 1.4rem;
     font-family: fantasy;
     line-height: 1.6;
     width: 100%;
     max-width: 78%;
     color: #161515;
 }
 
 .carousel {
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     margin: 1rem 0;
 }
 
 .carousel p {
     font-size: 1.1rem;
     font-family: 'Courier New', Courier, monospace;
 }
 
 .carousel-track-container {
     overflow: hidden;
     width: 80%;
 }
 
 .carousel-track {
     display: flex;
     list-style-type: none;
     transition: transform 0.3s ease-in-out;
 }
 
 .pdf-icon {
     width: 160px;
     /* Adjust the size as needed */
     height: auto;
     display: block;
     margin: 0 auto;
 }
 
 .carousel-slide {
     min-width: 20%;
     box-sizing: border-box;
     padding: 20px;
 }
 
 .feature-card {
     display: block;
     background: rgb(251, 238, 238);
     border: 1px solid #e4d0d0;
     border-radius: 10px;
     padding: 20px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease-in-out;
     text-decoration: none;
     color: black;
 }
 
 .feature-card h3 {
     margin-top: 0;
 }
 /*carousel buttons ########################*/
 
 .carousel-btn {
     background: none;
     border: none;
     font-size: 2rem;
     cursor: pointer;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     color: #545e67;
     z-index: 1;
 }
 
 .prev-btn {
     left: 6%;
     margin-right: 30px;
 }
 
 .next-btn {
     right: 6%;
 }
 /* .check-prices-btn {
     background: #8cd9eb;
     color: rgb(7, 6, 0);
     border: none;
     padding: 1rem 2rem;
     font-size: 20px;
     border-radius: 5px;
     cursor: pointer;
     margin-top: 2rem;
 } */
 
 @media (max-width: 768px) {
     .carousel-track {
         flex-direction: column;
         align-items: center;
     }
     .carousel-slide {
         min-width: 100%;
     }
     .carousel-btn {
         display: none;
     }
     .Get-quote,
     .quotation {
         display: none;
     }
     .login-btn a {
         text-decoration: none;
         color: #ffffff;
     }
     .hero-content h1 {
         line-height: 1.2;
         font-size: 36px;
     }
     .features h2 {
         font-size: 36px;
         color: #05080b;
     }
     .testimonials h2 {
         font-size: 36px;
     }
 }
 /* testimonials */
 
 .testimonials {
     padding: 2rem 1rem;
     max-width: 1200px;
     margin: 0 auto;
     text-align: center;
 }
 
 .testimonials h2 {
     font-size: 58px;
     margin-bottom: 1rem;
     color: #545e67;
     font-family: Google Sans;
     font-weight: 100;
 }
 
 .testimonial-cards {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
 }
 
 .testimonial-card {
     background: #fff;
     padding: 1.5rem;
     border-radius: 5px;
     margin: 1rem;
     flex: 1 1 calc(33% - 2rem);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s;
 }
 
 .testimonial-card:hover {
     transform: translateY(-10px);
 }
 
 .testimonial-card h4 {
     margin-bottom: 0.5rem;
     color: #545e67;
 }
 
 footer {
     background: #2e2c2c;
 }
 /* footer

footer {
  background: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-section {
  margin: 1rem 0;
  flex: 1 1 calc(33% - 2rem);
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #545e67;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #545e67;
} */
 
 @keyframes fadeInLeft {
     0% {
         opacity: 0;
         transform: translateX(-50px);
     }
     100% {
         opacity: 1;
         transform: translateX(0);
     }
 }
 
 @keyframes fadeInRight {
     0% {
         opacity: 0;
         transform: translateX(50px);
     }
     100% {
         opacity: 1;
         transform: translateX(0);
     }
 }
 
 @media (max-width: 600px) {
     nav {
         justify-content: space-between;
     }
     .logo img {
         height: 200px;
     }
     .hamburger {
         display: flex;
         z-index: 22;
     }
     .hero-content h1 {
         line-height: 1.2;
         font-size: 36px;
     }
     .testimonials h2 {
         font-size: 36px;
     }
     .features h2 {
         font-size: 36px;
         color: #02060b;
     }
     .nav-links,
     .auth-buttons {
         display: none;
     }
     .hero {
         flex-direction: column;
         text-align: center;
     }
     .hero-content,
     .hero-image {
         flex: none;
     }
     .hero-image {
         margin-top: 1rem;
     }
     .feature-cards,
     .testimonial-cards {
         flex-direction: column;
     }
     .feature-card,
     .testimonial-card {
         flex: none;
         margin: 1rem auto;
     }
     .mobile-nav {
         display: none;
     }
     .mobile-nav.show {
         display: flex;
         flex-direction: column;
         align-items: center;
         top: 0;
         background-color: #000000;
     }
     .mobile-nav-links,
     .mobile-auth-buttons {
         display: flex;
         flex-direction: column;
         align-items: center;
     }
     .mobile-nav-links li,
     .mobile-auth-buttons button {
         margin-bottom: 1rem;
     }
     .mobile-auth-buttons button {
         width: 50%;
         border: 1px solid #616f82;
         border-radius: 8px;
         padding: .8rem;
         background-color: #616f82;
         color: #ffffff;
         font-size: 1em;
     }
     .get-started-button {
         max-width: 215px;
         /* Limit the maximum width of the button */
         text-align: center;
     }
     .get-started-button i {
         margin-left: 15px;
         /* Adjust spacing for smaller screens */
     }
 }
 
 @media (min-width: 769px) {
     .mobile-nav {
         display: none;
     }
 }
 /* schedule css */
 /* 
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #545e67;
    color: white;
}

nav {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.auth-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background: white;
    color: #545e67;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.hamburger span {
    display: block;
    height: 3px;
    background: white;
    width: 25px;
}

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
        flex-direction: column;
        background: #545e67;
        padding: 1rem;
    }
    
    .mobile-nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 0;
        padding: 0;
    }
    
    .mobile-nav-links li {
        margin: 0;
    }
    
    .mobile-nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 600;
    }
    
    .mobile-auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
} */
 
 .schedule-hero {
     background: linear-gradient(135deg, #545e67 0%, #63e570 100%);
     color: white;
     text-align: center;
     padding: 2rem 1rem;
     animation: fadeInUp 1s ease-in-out;
 }
 
 .schedule-hero h1 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }
 
 .schedule-hero p {
     font-size: 1.2rem;
 }
 
 .schedule-content {
     padding: 2rem 1rem;
     max-width: 1200px;
     margin: 0 auto;
     text-align: center;
 }
 
 .schedule-content h2 {
     font-size: 2rem;
     margin-bottom: 1rem;
     color: #545e67;
 }
 
 .schedule-cards {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
 }
 
 .schedule-card {
     background: #fff;
     padding: 1.5rem;
     border-radius: 5px;
     margin: 1rem;
     flex: 1 1 calc(33% - 2rem);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     animation: fadeInUp 0.5s ease-in-out;
     transition: transform 0.3s;
 }
 
 .schedule-card h3 {
     color: #545e67;
     margin-bottom: 1rem;
 }
 
 .schedule-card ul {
     list-style: none;
 }
 
 .schedule-card ul li {
     margin-bottom: 0.5rem;
 }
 
 .schedule-card:hover {
     transform: translateY(-10px);
 }
 
 .book-session-btn {
     padding: 0.75rem 1.5rem;
     border: none;
     cursor: pointer;
     border-radius: 5px;
     background: #545e67;
     color: #fff;
     transition: background-color 0.3s, color 0.3s;
     margin-top: 2rem;
 }
 
 .book-session-btn:hover {
     background: #545e67;
 }
 
 @keyframes fadeInUp {
     0% {
         opacity: 0;
         transform: translateY(50px);
     }
     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }
 
 @media (max-width: 992px) {
     .schedule-card {
         flex: 1 1 calc(45% - 2rem);
     }
 }
 
 @media (max-width: 768px) {
     .schedule-card {
         flex: 1 1 calc(100% - 2rem);
     }
 }
 
 footer {
     background: #545e67;
     color: white;
     padding: 2rem 1rem;
     text-align: center;
 }
 
 .footer-content {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
 }
 
 .footer-section {
     flex: 1 1 calc(30% - 2rem);
     margin: 1rem;
 }
 
 .footer-section h3 {
     margin-bottom: 1rem;
 }
 
 .footer-section p,
 .footer-section ul {
     margin: 0;
     padding: 0;
     list-style: none;
 }
 
 .footer-section ul li {
     margin-bottom: 0.5rem;
 }
 
 .footer-section a {
     color: white;
     text-decoration: none;
 }
 
 @media (max-width: 768px) {
     .footer-section {
         flex: 1 1 100%;
     }
 }
 /* chat section */
 
 .chat-section {
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 2rem;
     background: #f7f7f7;
 }
 
 .chat-container {
     width: 100%;
     max-width: 600px;
     background: white;
     border-radius: 10px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     overflow: hidden;
 }
 
 .chat-header {
     background: #545e67;
     color: white;
     padding: 1rem;
     text-align: center;
 }
 
 .chat-window {
     height: 400px;
     overflow-y: auto;
     padding: 1rem;
     background: #f9f9f9;
 }
 
 .chat-bubble {
     margin-bottom: 1rem;
     padding: 0.75rem 1rem;
     border-radius: 20px;
     max-width: 70%;
     animation: fadeInUp 0.5s ease-in-out;
 }
 
 .client-bubble {
     background: #e0e0e0;
     text-align: left;
     float: left;
     clear: both;
     margin-right: auto;
     border-top-left-radius: 0;
 }
 
 .admin-bubble {
     background: #545e67;
     color: white;
     text-align: right;
     float: right;
     clear: both;
     margin-left: auto;
     border-top-right-radius: 0;
 }
 
 .chat-input-container {
     display: flex;
     padding: 1rem;
     border-top: 1px solid #ddd;
     gap: 0.5rem;
 }
 
 .file-input {
     display: none;
 }
 
 .chat-input-container input[type="text"] {
     flex: 1;
     padding: 0.5rem;
     border-radius: 20px;
     border: 1px solid #ddd;
 }
 
 .chat-input-container button {
     padding: 0.5rem 1rem;
     background: #545e67;
     color: white;
     border: none;
     border-radius: 20px;
     cursor: pointer;
 }
 
 @keyframes fadeInUp {
     0% {
         opacity: 0;
         transform: translateY(50px);
     }
     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }
 /* ********************
*********footer************* */
 
 .footer {
     background-color: #545e67;
     /* Adjust to match your color theme */
     color: white;
     padding: 2rem 1rem;
     font-family: Arial, sans-serif;
     animation: fadeIn 2s ease-in-out;
 }
 
 .footer-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
 }
 
 .footer-links,
 .footer-contacts,
 .footer-payment,
 .footer-disclaimer {
     flex: 1;
     min-width: 250px;
     margin: 1rem;
 }
 
 .footer-links {
     display: flex;
     flex-wrap: wrap;
 }
 
 .footer-column {
     flex: 1;
     margin: 0.5rem;
 }
 
 .footer-column h3 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
 }
 
 .footer-column ul {
     list-style: none;
     padding: 0;
 }
 
 .footer-column ul li {
     margin-bottom: 0.5rem;
 }
 
 .footer-column ul li a {
     color: white;
     text-decoration: none;
     transition: color 0.3s;
 }
 
 .footer-column ul li a:hover {
     color: #dcdcdc;
 }
 
 .footer-contacts .contact-info {
     margin-bottom: 1rem;
 }
 
 .footer-contacts .contact-info h3 {
     font-size: 1rem;
     margin-bottom: 0.5rem;
 }
 
 .footer-contacts .contact-info a {
     color: white;
     text-decoration: none;
     font-size: 1.1rem;
 }
 
 .footer-payment h3 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
 }
 
 .payment-icons {
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .payment-icons img {
     max-width: 100px;
     margin: 0.5rem;
 }
 
 .footer-disclaimer {
     font-size: 0.9rem;
     text-align: center;
 }
 
 .footer-disclaimer img {
     margin-top: 1rem;
     max-width: 150px;
 }
 
 .footer-payment p {
     color: #9a9393cb;
 }
 
 @media (max-width: 768px) {
     .footer-links,
     .footer-contacts,
     .footer-payment,
     .footer-disclaimer {
         flex: 1 100%;
     }
 }
 
 @keyframes fadeIn {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
     }
 }
 /* Basic styling for the page */
 /* body {
  font-family: Arial, sans-serif;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline;
  margin-right: 15px;
} */
 
 #quoteModal {
     display: none;
     position: fixed;
     z-index: 1;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgba(0, 0, 0, 0.5);
 }
 
 .modal-content {
     background-color: #fff;
     margin: 10% auto;
     padding: 20px;
     border: 1px solid #888;
     width: 300px;
     border-radius: 8px;
 }
 
 .close {
     color: #aaa;
     float: right;
     font-size: 28px;
     font-weight: bold;
 }
 
 .close:hover,
 .close:focus {
     color: #000;
     text-decoration: none;
     cursor: pointer;
 }
 
 h2 {
     margin-top: 0;
 }
 
 label {
     display: block;
     margin-top: 10px;
 }
 
 input[type="text"],
 input[type="number"] {
     width: 100%;
     padding: 8px;
     margin-top: 5px;
     margin-bottom: 10px;
     border: 1px solid #ccc;
     border-radius: 4px;
 }
 
 button[type="submit"] {
     background-color: #4CAF50;
     color: white;
     padding: 10px;
     border: none;
     border-radius: 4px;
     cursor: pointer;
 }
 
 button[type="submit"]:hover {
     background-color: #45a049;
 }
 
 #result {
     margin-top: 15px;
     font-size: 18px;
     color: #333;
 }
 /*-------------cart-----------*/
 
 .cart-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px;
     border-bottom: 1px solid #ccc;
 }
 
 img.w-full.h-48.object-cover.rounded-lg {
     height: auto;
 }
 /*------------what phoebessays can do for you----*/
 /* Container */
 
 .container {
     width: 90%;
     max-width: 1200px;
     margin: auto;
     padding: 50px 0;
 }
 /* Heading */
 
 h1 {
     font-size: 2.5rem;
     font-weight: bold;
     color: #000;
     margin-bottom: 30px;
 }
 /* Services Section */
 
 .services {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     justify-content: center;
 }
 /* Service Card */
 
 .card {
     background: #f4f0ff;
     border-radius: 15px;
     padding: 20px;
     box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease-in-out;
 }
 
 .card:hover {
     transform: scale(1.05);
 }
 /* Icon */
 
 .icon {
     font-size: 30px;
     color: #1bbc8e;
     margin-bottom: 10px;
 }
 /* Card Text */
 
 h2 {
     font-size: 1.5rem;
     color: #000;
 }
 
 p {
     font-size: 1rem;
     color: #555;
 }
 /* Sample Link */
 
 a {
     display: inline-block;
     /*margin-top: 15px;*/
     font-weight: bold;
     color: #069c9a;
     text-decoration: none;
 }
 
 a span {
     margin-left: 5px;
 }
 /* Responsive Design */
 
 @media (max-width: 768px) {
     .services {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     }
     h1 {
         font-size: 2rem;
     }
 }
 /*----------how to proof my work-----------*/
 /* General Styles */
 /* Section Styling */
 
 .samples-section {
     width: 90%;
     max-width: 1200px;
     margin: auto;
     padding: 50px 0;
 }
 
 h1 {
     font-size: 2.5rem;
     font-weight: bold;
     color: #000;
 }
 
 .description {
     font-size: 1.4rem;
     color: #444;
     /* max-width: 600px; */
     margin: 10px auto 30px;
 }
 /* Carousel Container */
 
 .carousel-container {
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     max-width: fit-content;
     margin: auto;
 }
 
 .carousel {
     display: flex;
     width: 100%;
     gap: 20px;
     overflow-x: scroll;
     scroll-behavior: smooth;
     scrollbar-width: none;
     /* Hide scrollbar */
 }
 
 .carousel-slide {
     background: white;
     border-radius: 15px;
     padding: 20px;
     max-height: 350px;
     min-width: 200px;
     max-width: 244px;
     box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
     text-align: center;
     flex: 0 0 220px;
     /* Set fixed card width */
 }
 
 .carousel-slide img {
     width: 50px;
     height: auto;
     margin-bottom: 10px;
 }
 /* Dots Styles */
 
 .dots-container {
     display: flex;
     justify-content: center;
     margin-top: 15px;
 }
 
 .dot {
     width: 10px;
     height: 10px;
     margin: 0 5px;
     background: gray;
     border-radius: 50%;
     cursor: pointer;
     transition: background 0.3s;
 }
 
 .dot.active {
     background: #007bff;
 }
 
 h2 {
     font-size: 1.2rem;
     color: #000;
 }
 
 p {
     font-size: 0.9rem;
     color: #555;
 }
 /* Carousel Buttons */
 
 .carousel-btn {
     background: transparent;
     border: none;
     font-size: 2rem;
     cursor: pointer;
     color: #333;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
 }
 
 #prevBtn {
     left: 0;
 }
 
 #nextBtn {
     right: 0;
 }
 /* Check Prices Button */
 
 .check-prices-btn {
     display: flex;
     align-items: center;
     padding: 15px 20px;
     margin: 30px auto;
     background: #1fba4e;
     color: #fff;
     font-size: 20px;
     border-radius: 5px;
     cursor: pointer;
     transition: background 0.3sease;
     text-decoration: none;
     width: 180px;
 }
 
 .check-prices-btn:hover {
     background: #3daa1c;
     color: #000;
 }
 /* Responsive Design */
 
 @media (max-width: 768px) {
     h1 {
         font-size: 2rem;
     }
     .description {
         font-size: 0.9rem;
     }
     .carousel {
         gap: 10px;
     }
     .carousel-slide {
         min-width: 180px;
     }
     .carousel-btn {
         font-size: 1.5rem;
     }
 }
 /* my get quote css pager */
 /* .homework-help {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     padding: 20px;
     background: #ffffff;
     animation: fadeIn 1.5s ease-in-out;
 }
 
 .info-section {
     flex: 1;
     min-width: 300px;
     padding: 20px;
     text-align: center;
     line-height: 1.3;
 }
 
 .info-section h1 {
     font-size: 2rem;
     color: #000;
     animation: slideInLeft 1.2s ease-in-out;
 }
 
 .badges {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px;
     margin: 20px 0;
 }
 
 .badges span {
     background: #eef7ee;
     padding: 10px 15px;
     border-radius: 20px;
     font-size: 0.9rem;
     transition: transform 0.3s ease-in-out;
 }
 
 .badges span:hover {
     transform: scale(1.1);
 }
 
 .reviews {
     display: flex;
     justify-content: center;
     gap: 15px;
     font-size: 1rem;
     margin-top: 10px;
 }
 
 .form-section {
     flex: 1;
     min-width: 350px;
     max-width: 440px;
     padding: 20px;
     background: #fff;
     border-radius: 8px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     animation: slideInRight 1.2s ease-in-out;
 }
 
 form {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }
 
 label {
     font-size: 1rem;
     font-weight: bold;
 }
 
 select,
 input {
     padding: 10px;
     font-size: 1rem;
     border: 1px solid #ccc;
     border-radius: 5px;
 }
 
 button.E-button {
     padding: 12px;
     background: #fcb900;
     border: none;
     font-size: 1.1rem;
     font-weight: bold;
     color: #000;
     cursor: pointer;
     border-radius: 5px;
     transition: background 0.3s ease-in-out;
 }
 
 button.E-button:hover {
     background: #e5a800;
 }
 
 p {
     font-size: 0.9rem;
     text-align: center;
     margin-top: 10px;
 }
 
 @media (max-width: 768px) {
     .homework-help {
         flex-direction: column;
     }
 }
 
 @keyframes fadeIn {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
     }
 }
 
 @keyframes slideInLeft {
     from {
         transform: translateX(-50px);
         opacity: 0;
     }
     to {
         transform: translateX(0);
         opacity: 1;
     }
 }
 
 @keyframes slideInRight {
     from {
         transform: translateX(50px);
         opacity: 0;
     }
     to {
         transform: translateX(0);
         opacity: 1;
     }
 } */
 
 .homework-help {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     padding: 20px;
     background: url('img/gbk.svg') no-repeat center center/cover;
     min-height: 68vh;
 }
 
 .info-section {
     flex: 1;
     max-width: 700px;
     padding: 20px;
     text-align: center;
     animation: fadeIn 1.5s ease-in-out;
 }
 
 .info-section h1 {
     font-size: 2rem;
     color: #000;
     animation: slideIn 1s ease-in-out;
     line-height: 1.3;
 }
 
 .badges {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px;
     margin: 20px 0;
 }
 
 .badges span {
     background: #eef7ee;
     padding: 10px 15px;
     border-radius: 20px;
     font-size: 0.9rem;
     transition: transform 0.3s ease;
 }
 
 .badges span:hover {
     transform: scale(1.1);
 }
 
 .reviews {
     display: flex;
     justify-content: center;
     gap: 15px;
     font-size: 1rem;
     margin-top: 10px;
 }
 
 .form-section {
     flex: 1;
     min-width: 350px;
     max-width: 440px;
     padding: 20px;
     background: #fff;
     border-radius: 8px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     animation: slideIn 1s ease-in-out;
 }
 
 form {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }
 
 label {
     font-size: 1rem;
     font-weight: bold;
 }
 
 select,
 input {
     padding: 10px;
     font-size: 1rem;
     border: 1px solid #ccc;
     border-radius: 5px;
 }
 
 button.E-button {
     padding: 12px;
     background: #fcb900;
     border: none;
     font-size: 1.1rem;
     font-weight: bold;
     color: #000;
     cursor: pointer;
     border-radius: 5px;
     transition: background 0.3s ease;
 }
 
 button.E-button:hover {
     background: #e5a800;
 }
 
 p {
     font-size: 0.9rem;
     text-align: center;
     margin-top: 10px;
 }
 
 @keyframes fadeIn {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
     }
 }
 
 @keyframes slideIn {
     from {
         transform: translateY(-20px);
         opacity: 0;
     }
     to {
         transform: translateY(0);
         opacity: 1;
     }
 }
 
 @media (max-width: 768px) {
     .homework-help {
         flex-direction: column;
     }
 }