/* Reset & base styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background-color: #f4faff;
    color: #333;
}

h1,
h2 {
    margin: 0;
}

.hero-section {
    background: linear-gradient(to right, #4285f4, #00c6ff);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.cta-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.services-section {
    background-color: #eaf6ff;
    padding: 50px 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    width: 250px;
    text-align: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.professional-work {
    padding: 60px 20px;
    background-color: #f9fbfe;
    text-align: center;
}

.professional-work h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.work-card {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-card:hover {
    transform: translateY(-6px);
}

.work-card img {
    width: 100%;
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.work-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}

.work-card p {
    font-size: 0.95rem;
    text-align: center;
    color: #444;
}

.why-choose-us {
    background-color: #f9fbfe;
    padding: 60px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.reason-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px 20px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.reason-card .icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #4285f4;
}

.reason-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 0.95rem;
    color: #444;
}


/* Testimonials Section */
.testimonials {
    background-color: #e9f5ff;
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px 20px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-section {
    background-color: #f9fbfe;
    padding: 60px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-left,
.contact-right {
    flex: 1 1 300px;
    padding: 30px 25px;
    text-align: left;
}

.contact-left {
    background: linear-gradient(to right, #4285f4, #00c6ff);
    color: white;
}

.contact-left h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-left p {
    margin: 10px 0;
    font-size: 0.95rem;
}

.contact-left span {
    margin-right: 8px;
}

.business-hours {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.contact-right h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-right p {
    font-size: 0.95rem;
    color: #333;
}

.highlight-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #eaf3ff;
    border-left: 4px solid #3b82f6;
    font-size: 0.95rem;
}

.footer {
    background-color: #1f2937;
    color: #ccc;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 5px;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer a {
    color: #ccc;
    text-decoration: underline;
    font-size: 0.85rem;
    margin: 0 5px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 8% auto;
    padding: 25px 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    margin-top: 0;
}

.modal-content ul {
    padding-left: 20px;
}

.close {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 10px;
  font-size: 0.95rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

.booking-form .form-row {
  display: flex;
  gap: 10px;
}

.booking-form .form-row input {
  flex: 1;
}

.booking-form button {
  background-color: #2563eb;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.glowing-btn {
  background-color: white;
  color: #2563eb;
  padding: 10px 22px;
  font-size: 1.05rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.glowing-btn:hover {
  background-color: #f0f9ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

