/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* SVG Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

svg {
    display: block;
}

/* Fixed Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.logo img {
    height: 2.5rem;
    width: auto;
}

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

/* Emergency Banner */
.emergency-banner {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: #ff00008f;
    z-index: 999;
}

.emergency-link {
    display: block;
    padding: 19px 15px 14px;
    color: white;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.emergency-link:hover {
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary {
    background-color: #164f78;
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: #f97316;
    color: white;
}

.btn-secondary:hover {
    background-color: #ea580c;
}

.btn-cta {
    background-color: #f97316;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-cta:hover {
    background-color: #ea580c;
}

.btn-service {
    background-color: #164f78;
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-submit {
    background-color: #164f78;
    color: white;
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
}

/* Responsive Text */
.desktop-only {
    display: inline;
}

.mobile-only {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #164f78;
    background-image: url('https://images.unsplash.com/photo-1681049400158-0ff6249ac315?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding: 10rem 0 5rem;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(22, 79, 120, 0.85);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    line-height: 1.2; 
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    line-height: 1.8;
}

/* USP Box */
.usp-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.usp-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fb923c;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.section-footer p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    font-style: italic;
}

/* Services Section */
.services-section {
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(22, 79, 120, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: #164f78;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card > p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card ul li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    text-transform: capitalize;
}

.usp-item span {
    font-weight: 600;
    font-size: 16px;
}

.service-card ul li:before {
    content: "•";
    color: #164f78;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-footer {
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.reason-card {
    text-align: center;
}

.reason-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reason-icon svg {
    width: 3rem;
    height: 3rem;
}

.reason-icon.primary {
    background-color: rgba(22, 79, 120, 0.1);
}

.reason-icon.primary svg {
    color: #164f78;
}

.reason-icon.secondary {
    background-color: rgba(251, 146, 60, 0.1);
}

.reason-icon.secondary svg {
    color: #fb923c;
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #4b5563;
    line-height: 1.8;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-weight: bold;
    color: #1f2937;
}

.testimonial-header p {
    font-size: 0.875rem;
    color: #6b7280;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.testimonial-card > p {
    color: #4b5563;
    font-style: italic;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    color: #4b5563;
    line-height: 1.8;
}

.certifications {
    margin-top: 3rem;
}

.certifications h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.cert-logos {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
}

.cert-logos img {
    width: 100%;
    height: auto;
}

/* Areas Served Section */
.areas-section {
    background-color: white;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.area-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: #000;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
}

.areas-cta {
    text-align: center;
    margin-top: 2rem;
}

.areas-cta p {
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Gallery Section with Slider */
.gallery-section {
    background-color: #f9fafb;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 33.333%;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #164f78;
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot:hover {
    background-color: #9ca3af;
}

.dot.active {
    background-color: #164f78;
    width: 2rem;
    border-radius: 0.375rem;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 3rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Sticky Phone Button */

@keyframes phonering-alo-circle-img-anim {
  0%   { transform: rotate(0deg) scale(1); }
  10%  { transform: rotate(-15deg) scale(1.05); }
  20%  { transform: rotate(15deg) scale(1.05); }
  30%  { transform: rotate(-15deg) scale(1.05); }
  40%  { transform: rotate(15deg) scale(1.05); }
  50%  { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(0deg) scale(1); }
}

.sticky-phone {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: #164f78;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 1000;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}

.icon_header {
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}



.sticky-phone:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.sticky-phone svg {
    width: 2rem;
    height: 2rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 6rem;
    right: 2rem;
    background-color: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(150%);
    transition: transform 0.3s;
    z-index: 1001;
}

.toast.show {
    transform: translateX(0);
}


.marquee_track.inner_new_logo_marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.logo_item {
    flex: 0 0 20%;
}

.logo_item img {
    border: 1px solid lightgray;
    padding: 12px;
}

footer .contact_box + .contact_box {
    margin: 20px 0 0 0;
}

footer .contact_box {
    display: flex;
    gap: 10px;
}






/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .slide {
        min-width: 50%;
    }
}

@media (max-width: 768px) {

    .logo_item img {
   
    padding: 0px;
}

    .logo img {
        height: 2rem;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .hero-section {
        padding: 8rem 0 3rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

       

    .sticky-phone {
        width: 3.5rem;
        height: 3.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .sticky-phone svg {
        width: 1.75rem;
        height: 1.75rem;
       
    }


    .toast {
        right: 1rem;
        left: 1rem;
        top: 5rem;
    }

    .slide {
        min-width: 100%;
    }

    .slider-btn {
        width: 2.5rem;
        height: 2.5rem;
    }

    .slider-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .slider-btn.prev {
        left: 0.5rem;
    }

    .slider-btn.next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {


    .emergency-banner {
   
    top: 3.5rem;
  
}
    .marquee_track.inner_new_logo_marquee {

    gap: 19px;
}
    .header-content {
        padding: 0.5rem 1rem;
    }

    .header-buttons {
        gap: 0.25rem;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}