 .container-fluid {
     background-color: #003126;
     font-family: "Raleway", sans-serif;
 }


 .nav-item a {
     color: white;
     font-weight: bold;
     margin: 0 25px;
 }

 .nav-item a:hover {
     color: #79cc19;
     text-decoration: underline;
 }

 .logo {
     width: 200px;
     height: 120px;
 }

 .intro {
     margin: 100px 0;
 }

 .tagline1,
 .tagline2 {
     color: #79cc19;
     text-align: center;
     line-height: 4rem;
 }

 .tagline1 {
     font-size: 4rem;
     font-weight: 800;
 }

 .tagline2 {
     font-size: 2rem;
     font-weight: 500;
 }

 .description {
     color: white;
 }

 .get-quote {
     background: linear-gradient(135deg, #79cc19, #5da614);
     color: white;
     padding: 15px 35px;
     border-radius: 30px;
     font-weight: bold;
     font-size: 16px;
     text-align: center;
     display: inline-block;
     margin: 30px 0;
     text-decoration: none;
     position: relative;
     overflow: hidden;
     border: none;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 4px 15px rgba(121, 204, 25, 0.3);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .get-quote::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.5s;
 }

 .get-quote:hover::before {
     left: 100%;
 }

 .get-quote:hover {
     transform: translateY(-3px) scale(1.05);
     box-shadow: 0 8px 25px rgba(121, 204, 25, 0.4);
     background: linear-gradient(135deg, #8dd122, #6bb317);
 }

 .get-quote:active {
     transform: translateY(-1px) scale(1.02);
     box-shadow: 0 5px 15px rgba(121, 204, 25, 0.3);
 }

 .get-quote::after {
     content: '→';
     position: absolute;
     right: 20px;
     top: 50%;
     transform: translateY(-50%);
     opacity: 0;
     transition: all 0.3s ease;
     font-size: 18px;
     font-weight: bold;
 }

 .get-quote:hover::after {
     opacity: 1;
     right: 15px;
 }

 .get-quote:hover {
     padding-right: 45px;
 }

 /* Pulse animation */
 @keyframes pulse {
     0% {
         box-shadow: 0 4px 15px rgba(121, 204, 25, 0.3);
     }

     50% {
         box-shadow: 0 4px 25px rgba(121, 204, 25, 0.5);
     }

     100% {
         box-shadow: 0 4px 15px rgba(121, 204, 25, 0.3);
     }
 }

 .get-quote {
     animation: pulse 2s infinite;
 }

 .get-quote:hover {
     animation: none;
 }

 /* Ripple effect */
 .get-quote {
     position: relative;
     overflow: hidden;
 }

 .ripple {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.4);
     transform: scale(0);
     animation: ripple-animation 0.6s linear;
 }

 @keyframes ripple-animation {
     to {
         transform: scale(4);
         opacity: 0;
     }
 }

 img {
     width: 100%;
 }

 .choose {
     margin: 100px 0;
     background-color: rgba(255, 255, 255, 0.749);
 }

 .choose h2 {
     font-size: 4rem;
     font-weight: 800;
     color: #003126;
 }

 .choose h2 b {
     font-size: 4rem;
     font-weight: 800;
     color: #79cc19
 }

 .choose i {
     background-color: #79cc19;
     padding: 20px;
     margin: 5px 0;
     color: white;
     border-radius: 10px;
     font-size: 30px;
 }

 .choose h5 {
     color: #79cc19;
     font-weight: bold;
     padding: 5px 10px;
     text-align: center;
     border-radius: 10px;
 }

 .choose p {
     color: #003126;
     font-weight: 500;
 }


 .services h2 {
     font-size: 4rem;
     font-weight: 800;
     color: rgba(255, 255, 255, 0.749)
 }

 .services h2 b {
     font-size: 4rem;
     font-weight: 800;
     color: #79cc19
 }

 .services h3 {
     background-color: white;
     color: #003126;
     font-size: 1.5rem;
     text-align: center;
     padding: 5px 10px;
 }

 .services ul li {
     color: white;
     list-style: disc
 }


 /* Service Areas */


 .service-areas h2 {
     font-size: 4rem;
     font-weight: 800;
     color: rgba(255, 255, 255, 0.749)
 }

 .service-areas h2 b {
     font-size: 4rem;
     font-weight: 800;
     color: #79cc19
 }

 .service-areas p {
     color:white;
     font-weight: 500;
     text-align: center;
     padding:0 0 10px 0;
     font-size: 1.2rem;
 }


 .areas-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
     animation: fadeInUp 1s ease-out 0.4s both;
 }

 .area-card {
     background: rgba(255, 255, 255, 0.749);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.2);
     color:#003126;
 }

 .area-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #79cc19, #b8ff4a, #79cc19);
     transform: scaleX(0);
     transition: transform 0.3s ease;
     transform-origin: center;
 }

 .area-card:hover::before {
     transform: scaleX(1);
 }

 .area-card:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
     background: rgba(255, 255, 255, 0.749);
 }

 .area-icon {
     font-size: 3rem;
     margin-bottom: 1rem;
     filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
 }

 .area-card h4 {
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
     color: #0f4c3a;
     font-weight: bold;
 }

 .area-list {
     list-style: none;
     text-align: left;
 }

 .area-list li {
     padding: 0.5rem 0;
     border-bottom: 1px solid rgba(121, 204, 25, 0.1);
     color: #333;
     font-weight: 500;
     position: relative;
     padding-left: 1.5rem;
     transition: all 0.3s ease;
 }

 .area-list li:before {
     content: 'o';
     position: absolute;
     left: 0;
     top: 0.5rem;
     font-size: 0.8rem;
 }

 .area-list li:hover {
     color: #79cc19;
     padding-left: 2rem;
 }

 .area-list li:last-child {
     border-bottom: none;
 }

 .coverage-note {
     text-align: center;
     margin-top: 4rem;
     padding: 2rem;
     background: rgba(255, 255, 255, 0.626);
     backdrop-filter: blur(10px);
     border-radius: 15px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     animation: fadeInUp 1s ease-out 0.6s both;
 }

 .coverage-note p {
     color:#003126;
     font-size: 1.1rem;
     margin-bottom: 1rem;
 }

 .coverage-cta {
     background: linear-gradient(135deg, #b8ff4a, #79cc19);
     color: #0f4c3a;
     padding: 12px 30px;
     border-radius: 25px;
     font-weight: bold;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s ease;
     box-shadow: 0 8px 20px rgba(184, 255, 74, 0.3);
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 0.9rem;
 }

 .coverage-cta:hover {
     transform: translateY(-2px);
     box-shadow: 0 12px 30px rgba(184, 255, 74, 0.4);
     background: linear-gradient(135deg, #c9ff5a, #8dd122);
 }


 /* testimonials */
 .testimonials {
     padding: 80px 0;
     background-color: #003126;
 }

 .testimonials h2 {
     font-size: 4rem;
     font-weight: 800;
     color: rgba(255, 255, 255, 0.749)
 }

 .testimonials h5 {
     color: white;
     text-align: center;
 }

 .testimonial-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .testimonial-card {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     position: relative;
 }

 .testimonial-card::before {
     content: '"';
     position: absolute;
     top: -10px;
     left: 20px;
     font-size: 4rem;
     color: #79cc19;
     opacity: 0.3;
 }

 .testimonial-text {
     font-style: italic;
     margin-bottom: 1rem;
     line-height: 1.6;
 }

 .testimonial-author {
     font-weight: bold;
     color: #79cc19;
 }

 .contact {
     background-color: rgba(255, 255, 255, 0.749);
     margin: 50px 0;
     padding: 20px 60px;
 }

 .contact h2 {
     font-size: 4rem;
     font-weight: 800;
     color: #003126
 }

 .contact h2 b {
     font-size: 4rem;
     font-weight: 800;
     color: #79cc19
 }

 .contact p {
     text-align: center;
     color: #003126;
     font-weight: bold;
 }

 .contact i {
     color: rgba(255, 255, 255, 0.749);
     font-size: 1rem;
     margin-right: 10px;
     background-color: #003126;
     padding: 10px;
     border-radius: 20px;
     ;
 }

 .contact .contact-icon {
     border: 1px solid #003126;
     padding: 10px 10px 5px 15px;
     border-radius: 10px;
     width: 100%;
 }

 .contact .form-floating input, .form-floating textarea, .form-floating label{
    border:1px solid #003126;
    background-color: transparent !important;
 }


 .contact button {
     background-color: #003126;
     color: white;
     padding: 10px 20px;
     border: none;
     border-radius: 5px;
     margin-bottom: 20px;
 }

 .error {
     color: #d32f2f;
     background-color: #ffebee;
     padding: 10px;
     border-radius: 4px;
     margin-bottom: 20px;
 }

 .success {
     color: #388e3c;
     background-color: #e8f5e8;
     padding: 10px;
     border-radius: 4px;
     margin-bottom: 20px;
 }

 .footer {
     background-color: #003126;
 }

 .links-footer h6 {
     color: white;
     font-size: 2rem;
     font-weight: 600;
 }

 .links-footer ul li {
     list-style: none;

 }

 .links-footer ul li a {
     text-decoration: none;
     color: white;
     font-weight: 500;
 }

 .contact-footer h6 {
     color: white;
     font-size: 2rem;
     font-weight: 600;
 }

 .contact-footer p {
     color: white
 }

 .contact-footer p i {
     font-size: 1.5rem;
 }

 .socials h6 {
     color: white;
     font-size: 2rem;
     font-weight: 600;
 }

 @media (max-width: 768px) {
     .nav-item a {
         margin: 0 10px;
     }

     .tagline1 {
         font-size: 3rem;
     }

     .tagline2 {
         font-size: 2rem;
     }

     .choose h2,
     .choose h2 b,
     .services h2,
     .services h2 b,
     .service-areas h2,
     .service-areas h2 b,
     .testimonials h2,
     .contact h2,
     .contact h2 b {
         font-size: 3rem;
     }

     .choose i,
     .services h3,
     .contact i {
         font-size: 20px;
     }

     .service-image {
         width: 100%;
     }

     .service-image img {
         width: 100%;
         /* height: 600px; */
     }

     .contact {
         background-color: white;
         margin: 50px 0;
         padding: 20px 20px;
     }

     .logo-footer {
         text-align: center;
     }

     .logo-footer img {
         width: 200px;
         height: 150px;
         margin: 0 auto;
     }
 }

 @media (max-width: 500px) {
     .tagline1 {
         font-size: 2.5rem;
     }

     .tagline2 {
         font-size: 1.5rem;
     }

     .choose h2,
     .choose h2 b,
     .services h2,
     .services h2 b,
     .service-areas h2,
     .service-areas h2 b,
     .testimonials h2,
     .contact h2,
     .contact h2 b {
         font-size: 2rem;
     }

     .service-areas p {
         font-size: 1rem;
     }

     .service-areas ul {
         text-align: left;
         margin-left: 0;
         padding-left: 0;
     }

     .service-image {
         width: 100%;
     }

     .service-image img {
         width: 100%;
         /* height: 400px; */
     }

     .logo-footer {
         text-align: left;
     }
 }