/* Common Styles (keeping existing styles) */
:root {
    --primary-blue: #00baee;
    --primary-yellow: #004975;
    --transition: all 0.3s ease;

}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
}
a{
    text-decoration: none;
}
input::placeholder {
    color: #c1c1c1 !important; /* Placeholder color */
    font-size: 14px;
    font-style: italic; /* Optional: make it italic */
  }

  textarea::placeholder{
    color: #c1c1c1 !important; /* Placeholder color */
    font-size: 14px;
    font-style: italic; /* Optional: make it italic */
  }

#additional_note::placeholder {
    color: #c1c1c1 !important; /* Placeholder color */
    font-size: 14px;
    font-style: italic; /* Optional: make it italic */
}

#additional_note {
    font-size: 14px;
}

input::focus {
    font-size: 10px;
}

  .logo {
    scale: 1.5;
    margin-left: 10px;
    margin-top: 10px;
  }

  .logo:hover {
    scale: 1.7;
  }

/* Existing utility classes and styles remain the same */
.bg-primary-blue {
    background-color: var(--primary-blue);
}
.text-primary-yellow {
    color: var(--primary-yellow);
}
.btn-custom {
    background-color: #00baee;
    color: white;
    transition: var(--transition);
}
.btn-custom:hover {
    background-color: #004975;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-custom-new {
    background-color: #004975;
    color: white;
    transition: var(--transition);
}
.btn-custom-new:hover {
    background-color: #00baee;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* Existing navbar styles remain the same */
.navbar {
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.login-signup {
    opacity: 1;
}

.navbar.scrolled{
    /* opacity: 0; */
    backdrop-filter: blur(2px);
    background-color: rgba(0, 72, 117, 0.897);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.diff-nav {
    backdrop-filter: blur(2px);
    background-color: rgba(0, 72, 117, 0.897);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    
}

.navbar-brand img {
    width: 50px;
    transition: var(--transition);
}
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px; 
    position: relative;
    color: white;
    padding: 0.5rem 1rem !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link.active {
    color: #ffd700; /* Gold color for active link */
    font-weight: bold;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffd700;
    bottom: 0;
    left: 0;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #ffd700 !important;
}

.nav-link:hover::after {
    width: 80%;
    color: #ffd700 !important;
}



.nav-item{
    margin-left: 1rem;
    display: inline-block;
}
.navbar-nav {
    margin-left: 4rem;
}
/* New Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.slide.active {
    opacity: 1;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: rgba(26,35,126,0.8);
    */
}
.slide-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    text-align: left;
}
/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.slide.active {
    opacity: 1;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 95, 130, 0.35);
}
.slide-content {
    max-width: 600px;
    position: relative;
    top: 25%;
    left: 0;
    z-index: 2;
    padding: 2rem;
    color: white;
    text-align: left;
}
/* Services Section Styles */
.services-section {
    padding: 5rem 0;
    background: #f8f9fa;
}
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.service-image {
    max-height: 200px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}


.service-card:hover .service-image img {
    transform: scale(1.1);
}
.service-content {
    padding: 1.5rem;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 1rem;
    position: relative;
    z-index: 1;
}
.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}
/* @media(max-width: 1070px) {
    .nav-item{
        margin-left: auto;
   }
    .navbar-nav {
        margin-left: auto !important;
   }
}
*/
.service-image-custom img{
    border-radius: 20px;
    scale: 0.8;
    width: 100%;
    height: 90%;
    object-fit: cover;
    transition: var(--transition);
}

.service-image-custom:hover img{
    transform: scale(1.1);
}

@media(max-width: 1220px) {
    .nav-item{
        margin-left: 0px;
        display: inline-block;
   }
    .navbar-nav {
        margin-left: 0px !important;
   }
}
/* Enhanced Responsive Styles */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
   }
    .slide-content {
        padding: 1rem;
   }
    .slide-content h1 {
        font-size: 2rem;
   }
    .service-card {
        margin-bottom: 2rem;
   }
}
/* About Us Section */
.about-card {
    transition: var(--transition);
    border: none;
    border-radius: 15px;
    overflow: hidden;
}
.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.about-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
/* Contact Section */
.contact-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
}
.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
}
.form-control {
    border-radius: 10px;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}
.worker-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.worker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.booking-summary {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}
.rating-stars {
    color: #ffd700;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        text-align: center;
   }
    .navbar-collapse {
        background: var(--primary-blue);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
   }
    .about-card {
        margin-bottom: 2rem;
   }
    .contact-info {
        margin-bottom: 2rem;
   }
}
.footer {
    background: linear-gradient(145deg, #006b8d, #004975);
    position: relative;
    color: #ffffff;
}
.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #00baee;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 1rem;
}
.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: #00baee;
    padding-left: 5px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #00baee;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #00baee;
    color: white;
    transform: translateY(-3px);
}
.newsletter-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
}
.newsletter-input:focus {
    background: rgba(255,255,255,0.15);
    border-color: #00baee;
    color: #ffffff;
    box-shadow: none;
}
.btn-subscribe {
    background: #00baee;
    border: none;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}
.btn-subscribe:hover {
    background: #004975;
    transform: translateY(-2px);
}
.text-primary {
    color: #00baee !important;
}

.text-color {
   color: #004975 !important;
}


.counter-box {
    display: block;
    background: #f6f6f6;
    padding: 40px 20px 37px;
    text-align: center
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #909090;
    font-size: 18px;
    font-weight: 500
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #d2d2d2
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #666;
    line-height: 28px
}

.counter-box.colored {
    background: #3acf87
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    color: #fff
}



/* cta */

.cta-section {
    background: linear-gradient(45deg, #00baee, #004975);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 20px;
    }
    .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    }
    .cta-section:hover::before {
    transform: translateX(100%);
    }
    .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    }
    .cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    }
    .cta-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
    }
    .cta-button {
    background-color: white;
    color: #00baee;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.4s;
    position: relative;
    border: none;
    box-sizing: border-box;
    }
    /* Button wrapper for stable hover effects */
    .cta-button::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: white;
    border-radius: 50px;
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
    }
    /* Stable hover animations */
    .cta-button:hover::before {
    opacity: 1;
    }
    .cta-button:hover {
    transform: translateY(-3px);
    letter-spacing: 1px;
    }
    /* New shadow handling */
    .cta-button {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    }
    .cta-button:hover {
    box-shadow: 0 6px 20px rgba(192,134,38,0.3);
    }
    .cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(192,134,38,0.2);
    }
    @keyframes fadeInUp {
    to {
    opacity: 1;

    }
}
    @keyframes fadeInUp {
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    @media (max-width: 768px) {
    .cta-title {
    font-size: 2rem;
    }
    .cta-subtitle {
    font-size: 1.1rem;
    }
    }


    /* End of CTA Section Styles */



    .testimonials-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9f8fd 100%);
    }

    .testimonial_section-title {
      color: var(--primary-yellow);
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .testimonial_section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 50px;
      height: 3px;
      background-color: var(--primary-blue);
      transform: translateX(-50%);
    }

    .section-description {
      color: #666;
      max-width: 800px;
      margin: 0 auto 3rem;
    }

    .testimonial-card {
      border-radius: 15px;
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin: 15px;
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 73, 117, 0.15);
    }

    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    }

    .testimonial-card .card-body {
      padding: 2.5rem 1.5rem 1.5rem;
      position: relative;
      z-index: 1;
    }

    .avatar-container {
      position: relative;
      margin-bottom: 2rem;
    }

    .avatar {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border: 4px solid white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover .avatar {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(0, 186, 238, 0.3);
    }

    .avatar-container::after {
      content: '\f10d';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      bottom: -10px;
      right: calc(50% - 50px);
      width: 30px;
      height: 30px;
      background-color: var(--primary-blue);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .testimonial-name {
      color: var(--primary-yellow);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .testimonial-position {
      color: var(--primary-blue);
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .testimonial-position::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -8px;
      width: 30px;
      height: 2px;
      background-color: var(--primary-blue);
      transform: translateX(-50%);
    }

    .testimonial-text {
      color: #555;
      font-style: italic;
      line-height: 1.6;
    }

    .carousel-control-prev, .carousel-control-next {
      width: 40px;
      height: 40px;
      background-color: var(--primary-yellow);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.7;
    }

    .carousel-control-prev {
      left: -20px;
    }

    .carousel-control-next {
      right: -20px;
    }

    .carousel-control-prev:hover, .carousel-control-next:hover {
      opacity: 1;
    }

    .carousel-indicators {
      bottom: -50px;
    }

    .carousel-indicators button {
      width: 10px !important;
      height: 10px !important;
      border-radius: 50% !important;
      background-color: black !important;
      opacity: 0.3;
    }

    .carousel-indicators button.active {
      opacity: 1;
    }

    @media (max-width: 767.98px) {
      .carousel-control-prev, .carousel-control-next {
        display: none;
      }
      
      .testimonial-card {
        margin-bottom: 2rem;
      }
      
      .carousel-item {
        padding: 0 1rem;
      }
    }

    @media (min-width: 768px) {
      .carousel-inner {
        padding: 1em;
      }
    }

    .custom-pagination {
      margin-top: 3rem;
    }

    .custom-pagination .page-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 5px;
      color: var(--primary-yellow);
      border: 1px solid rgba(0, 73, 117, 0.2);
      transition: all 0.3s ease;
    }

    .custom-pagination .page-link:hover,
    .custom-pagination .page-link.active {
      background-color: var(--primary-blue);
      color: white;
      border-color: var(--primary-blue);
    }
    
    .quote-icon {
      font-size: 1.5rem;
      color: var(--primary-blue);
      opacity: 0.2;
      margin-bottom: 1rem;
    }
  

    .form-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9f8fd 100%);
    }

    .testimonial_section-title {
      color: var(--primary-yellow);
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .testimonial_section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 50px;
      height: 3px;
      background-color: var(--primary-blue);
      transform: translateX(-50%);
    }

    .section-description {
      color: #666;
      max-width: 800px;
      margin: 0 auto 3rem;
    }

    .form-card {
      border-radius: 15px;
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin: 15px auto;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      max-width: 800px;
    }

    .form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    }

    .form-card .card-body {
      padding: 2.5rem;
      position: relative;
      z-index: 1;
    }

    .form-label {
      color: var(--primary-yellow);
      font-weight: 600;
    }

    .form-control, .form-select {
      border-radius: 8px;
      padding: 12px 15px;
      border: 1px solid rgba(0, 73, 117, 0.1);
      transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
      box-shadow: 0 0 0 3px rgba(0, 186, 238, 0.2);
      border-color: var(--primary-blue);
    }

    .avatar-preview {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background-color: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      border: 4px solid white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
    }

    .avatar-preview i {
      font-size: 40px;
      color: #ccc;
    }

    .avatar-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .file-upload {
      position: relative;
      overflow: hidden;
      margin: 10px 0;
    }

    .upload-btn {
      background-color: var(--primary-blue);
      border: none;
      color: white;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 14px;
      transition: all 0.3s ease;
      display: inline-block;
      cursor: pointer;
    }

    .upload-btn:hover {
      background-color: #0095c0;
      transform: translateY(-2px);
    }

    .file-upload input[type=file] {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }

    .star-rating {
      display: flex;
      flex-direction: row-reverse;
      justify-content: center;
      gap: 0.5rem;
    }

    .star-rating input {
      display: none;
    }

    .star-rating label {
      font-size: 25px;
      color: #ddd;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .star-rating :checked ~ label {
      color: #FFD700;
    }

    .star-rating label:hover,
    .star-rating label:hover ~ label {
      color: #FFD700;
    }

    .btn-submit {
      background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
      border: none;
      color: white;
      border-radius: 50px;
      padding: 12px 30px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 186, 238, 0.3);
    }

    .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 186, 238, 0.4);
    }

    .form-floating > .form-control {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem;
    }

    .form-check-input:checked {
      background-color: var(--primary-blue);
      border-color: var(--primary-blue);
    }

    .quote-icon {
      font-size: 3rem;
      color: var(--primary-blue);
      opacity: 0.1;
      position: absolute;
      right: 20px;
      top: 20px;
    }

    @media (max-width: 767.98px) {
      .form-card .card-body {
        padding: 1.5rem;
      }
    }

    .success-message {
      display: none;
      text-align: center;
      padding: 2rem;
    }

    .success-message i {
      font-size: 5rem;
      color: var(--primary-blue);
      margin-bottom: 1rem;
    }

    .success-message h3 {
      color: var(--primary-yellow);
      margin-bottom: 1rem;
    }

    .success-card {
      max-width: 600px;
      margin: 0 auto;
    }
