@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Nunito', sans-serif!important;
}

:root {
    --primary-bg: #FFFDFD;
    --secondary-bg: #000000;
    --primary-color: #001E61; 
    --primary-light-color: #CCD2DF;
    --secondary-color: #20A7C7; 
    --primary-text-color: #131313;
    --secondary-text-color: #ffffff;
    --tertiary-text-color: #413D45;
    --font-xsmall: 14px;
    --font-size-small: 16px;
    --font-size-medium: 18px;
    --font-size-large: 28px;
    --font-size-xlarge: 36px;
    --font-size-xxlarge: 48px;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 600;
    --font-weight-bold: 700;
    --section-spacing: 60px;
}


@media screen and (max-width: 768px) {
   :root {
    --font-xsmall: 12px;
    --font-size-small: 14px;
    --font-size-medium: 16px;
    --font-size-large: 24px;
    --font-size-xlarge: 28px;
    --font-size-xxlarge: 34px;
    --section-spacing: 40px;
   }
}

.font-xsmall {
    font-size: var(--font-xsmall); /* 14px */
}

.font-small {
    font-size: var(--font-size-small); /* 16px */
}

.font-medium {
    font-size: var(--font-size-medium); /* 18px */
}

.font-large {
    font-size: var(--font-size-large); /* 28px */
}

.font-xlarge {
    font-size: var(--font-size-xlarge); /* 36px */
}

.font-xxlarge {
    font-size: var(--font-size-xxlarge); /* 44px */
}

.font-weight-light {
    font-weight: var(--font-weight-light);
}

.font-weight-regular {
    font-weight: var(--font-weight-regular);
}

.font-weight-medium {
    font-weight: var(--font-weight-medium);
}

.font-weight-bold {
    font-weight: var(--font-weight-bold);
}

.primary-text-color {
    color: var(--primary-text-color);
}

.secondary-text-color {
    color: var(--secondary-text-color);
}

.tertiary-text-color {
    color: var(--tertiary-text-color);
}


* {
    margin: 0;
    padding: 0;
}
p,ul,li {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
 
    
    cursor: pointer;
    

}

.button {
    border-radius: 30px;
    padding: 10px 18px;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--secondary-text-color);
    border: none;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.secondary-button {
    background-color: var(--secondary-color);
    color: var(--secondary-text-color);
    border: none;
}
.tertiary-button {
    background-color: var(--primary-light-color);
    color: var(--primary-color);
    border: none;
}

.section-spacing {
    padding: var(--section-spacing) 0;
}

.body {
    background-color: var(--primary-bg);
    font-family: 'Nunito', sans-serif;
}
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('../images/landing-page/hero-bg.webp');
    background-size: cover;
    background-position: center;
    height: 90vh;
    color: var(--secondary-text-color);
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

 /* Section styling */
 .logo-section {
    padding: 20px 0 60px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .logo-section {
        padding-bottom: 20px;
    }
}


/* Logo container styling */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.client-logo {
    height: 35px;
    width: auto;
}
  /* Desktop view: Show exactly 5 logos */
  @media (min-width: 768px) {
    .logo-container {
        flex-wrap: nowrap;
        justify-content: center;
    }
    

    .logo-container .client-logo:nth-child(n+6) {
        display: none; /* Hide logos beyond the 5th in desktop view */
    }
}

/* Mobile view animation */
@media (max-width: 767px) {
    .logo-container {
        display: flex;
        animation: slide 15s linear infinite;
        white-space: nowrap;
        width: max-content;
    }

    .client-logo {
        height: 28px;
        width: auto;
    }

    .logo-container .client-logo {
        margin-right: 20px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

.curved-section  {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
   
    position: relative;
    margin-top: -60px; /* Negative margin to overlap the hero section */
    margin-left: auto;
    margin-right: auto;
   background-color: var(--primary-bg);
   
}

@media (max-width: 768px) {
    .curved-section {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        margin-top: -40px;
        padding: 10px;
    }


    .hero-section {
        height: 80dvh;
       gap:40px;
       background-image: linear-gradient(92deg, #1e3a8a 10% 40%, #00154499 100%), url(../images/landing-page/hero-bg.webp);
    }
    .hero-section .font-xxlarge {
        font-size: 38px;
    }
    .hero-section .primary-button{
            width: 100%;
 
        background-color: #ffffff;
    color: var(--primary-color);
    }
     .hero-section .secondary-button{
          background-color: #fde047;
    color: #000000;
    border: none;
    }

}


.services-section {
    padding: 20px 0;
}

.swiper {
    width: 100%;
    height: auto;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.service-card {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
.services-container {
     padding-left: 120px;
}

@media (max-width: 768px) {
    .services-container {
        padding-left: 0;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Different background gradients for each card */
.service-card.card-1 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/deep-cleaning-img.webp');

    background-size: cover;
    background-position: center;
}

.service-card.card-2 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/window-cleaning-img.webp');
    background-size: cover;
    background-position: center;
}

.service-card.card-3 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/external-cleaning.webp');
    background-size: cover;
    background-position: center;
}

.service-card.card-4 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/general-cleaning-img.webp ');
    background-size: cover;
    background-position: center;
}

.service-card.card-5 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/Industrial-Facilities-Cleaning-Services-img.webp');
    background-size: cover;
    background-position: center;
}

.service-card.card-6 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/Handover-CleaninG.webp');
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    color: #ffffff;
    font-size: var(--font-size-large);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-card p {
    color: #f8f9fa;
    font-size: var(--font-size-small);
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}



.features-list {
    list-style: none;
    padding: 10px 15px;
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.10) 100%);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
      0 4px 6px -4px rgba(0, 0, 0, 0.1), 
      inset 0 0px 4px rgba(255, 255, 255, 0.25);
backdrop-filter: blur(4px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
    margin: 0;
}

.features-list li {
    color: #f8f9fa;
    font-size: var(--font-size-small);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}


.features-list li:last-child {
    margin-bottom: 0;
}


.star-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }
 
}

.testimonial-card {
    padding: 20px;
    background-color: #F5F2ED;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
   align-items: start;
}
@media (max-width: 768px) {
    .testimonial-section {
        padding-top: 0px;
    }
}

.contact-section {
 background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/landing-page/contact-us-page-bg.webp');
 background-size: cover;
 background-position: bottom;
}

.contact-info-section {
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap:20px
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.3);
}

.contact-icon i {
    color: white;
    font-size: 32px;
}

.contact-content {
    flex: 1;
  
}

.contact-title {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-details {
    margin: 0;
    padding: 0;
}

.contact-details p {
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-bold);
    color: #ffffff;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 30px;
    }
    
    .contact-icon {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
    
    .contact-icon i {
        font-size: 30px;
    }
    
    .contact-title {
        font-size: 18px;
    }
    
    .contact-details p {
        font-size: 18px;
    }

    .contact-info-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .contact-icon {
        width: 80px;
        height: 80px;
        margin-right: 15px;
        border-radius: 15px;
    }
    
    .contact-icon i {
        font-size: 30px;
    }
    
    .contact-title {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 16px;
    }
}

 
.contact-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding:40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: 20px;
}

.form-title {
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: left;
}

.form-subtitle {
    font-size: var(--font-size-small);
    color: var(--tertiary-text-color);
    margin-bottom: 40px;
    line-height: 1.5;
}

.form-label {
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px 18px;
    font-size: 16px;
    color: #374151;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-col {
    flex: 1;
}

.form-group {
    margin-bottom: 10px;
}

.form-group:last-of-type {
    margin-bottom: 10px;
}

.message-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 40px 30px;
        margin-bottom: 30px;
        margin:0;
    }
    
    .form-title {
        font-size: var(--font-size-large);

    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 30px 25px;
        margin-bottom: 30px;
        margin:0;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-control.is-valid {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

  /* Unique class names to prevent conflicts */
  .unique-contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unique-contact-modal-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 500px;
    width: 90%;
    max-height: 94vh;
    overflow-y: auto;
    position: relative;
}

.unique-contact-modal-header {
    background: linear-gradient(90deg, #3730A3 100%, #1E40AF 50%, #001E61 0%);
    color: white;
    padding: 18px 20px;

    border-radius: 12px 12px 0 0;
    position: relative;
}

.unique-contact-modal-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.unique-contact-modal-star {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 18px;
    font-weight: bold;
}

.unique-contact-modal-subtitle {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
    line-height: 1.4;
}

.unique-contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.unique-contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.unique-contact-modal-body {
    padding: 15px 20px;
}

.unique-contact-form-group {
    margin-bottom: 12px;
}

.unique-contact-form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.unique-contact-form-required {
    color: #ef4444;
}

.unique-contact-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f9fafb;
}

.unique-contact-form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

.unique-contact-form-control::placeholder {
    color: #9ca3af;
}

.unique-contact-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.unique-contact-form-row {
    display: flex;
    gap: 16px;
}

.unique-contact-form-col {
    flex: 1;
}

.unique-contact-additional-section {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    background: #f9fafb;
    margin-bottom: 24px;
}

.unique-contact-additional-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.unique-contact-additional-number {
    width: 24px;
    height: 24px;
    background: #6b7280;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.unique-contact-additional-title {
    font-weight: 600;
    color: #374151;
}

.unique-contact-additional-optional {
    color: #6b7280;
    font-size: 12px;
}

.unique-contact-btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.unique-contact-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.unique-contact-btn-secondary {
    background: #e5e7eb;
    border: none;
    color: #374151;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.unique-contact-btn-secondary:hover {
    background: #d1d5db;
}

.unique-contact-trigger-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px;
}

.unique-contact-hidden {
    display: none;
}

@media (max-width: 768px) {
    .unique-contact-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .unique-contact-modal-container {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .unique-contact-modal-body {
        padding: 24px 20px;
    }
}

 /* Desktop Navbar Styles */
 .navbar-unique-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    padding: 20px 0;
}

.navbar-unique-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius:50px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin:20px auto    ;
}

.company-mobile-logo {
    height: 40px;
}

.navbar-unique-content {
  
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.navbar-unique-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}


.navbar-unique-logo-subtext {
    font-size: 11px;
    color: #666;
    margin-top: -2px;
}

.navbar-unique-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar-unique-menu-item {
    position: relative;
}

.navbar-unique-menu-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.navbar-unique-container.scrolled .navbar-unique-menu-link {
    color: #374151;
}

.navbar-unique-menu-link:hover {
    color: #20B2AA;
}

.navbar-unique-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-unique-btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}


/* Mobile Navbar Styles */
.navbar-unique-mobile {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 10px;
    transition: all 0.3s ease;
}

.navbar-unique-mobile.scrolled {
    
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-unique-mobile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-unique-mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-unique-mobile-logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #20B2AA, #4682B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.navbar-unique-mobile-logo-text {
    font-size: 16px;
    font-weight: bold;
    color: #1e3a8a;
}

.navbar-unique-mobile-logo-subtext {
    font-size: 9px;
    color: #666;
    margin-top: -2px;
}

.navbar-unique-mobile-buttons {
    display: flex;
    gap: 10px;
}

.navbar-unique-mobile-btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}



/* Mobile Bottom Buttons */
.navbar-unique-bottom-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
}

.navbar-unique-bottom-content {
    display: flex;
    width: 100%;
}

.navbar-unique-bottom-btn {
    flex: 1;
    padding: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.navbar-unique-bottom-btn-call {
    background: #20B2AA;
}

.navbar-unique-bottom-btn-visit {
    background: #1e3a8a;
}

.navbar-unique-bottom-btn:active {
    transform: scale(0.98);
}
   /* Mobile Responsive */
   @media (max-width: 1024px) {
    .navbar-unique-container {
        display: none;
    }

    .navbar-unique-mobile {
        display: block;
    }

    .navbar-unique-bottom-buttons {
        display: block;
    }

    .hero-unique-content h1 {
        font-size: 2.5rem;
    }

    .content-unique-section {
        padding: 60px 20px 100px;
    }

    .content-unique-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar-unique-mobile-buttons {
        gap: 8px;
    }

    .navbar-unique-mobile-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero-unique-content h1 {
        font-size: 2rem;
    }

    .hero-unique-content p {
        font-size: 1rem;
    }
}

/* Floating Buttons Wrapper */
.floating-buttons-wrapper {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between the buttons */
    z-index: 1000;
}

/* Common button styles */
.floating-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    justify-self: center;
    cursor: pointer;
    position: relative;
}

/* WhatsApp button style */
.whatsapp-btn {
    background: #25d366; /* WhatsApp Green */
    animation: blink 1s infinite alternate;
}

.whatsapp-btn:hover {
    background: #20b056; /* Darker WhatsApp Green */
    transform: scale(1.2);
}

/* Call button style */
.call-btn {
    background-color: #4CAF50; /* Call Green */
}

.call-btn:hover {
    background-color: #388E3C; /* Darker Call Green */
    transform: scale(1.2);
}

/* Animation for the WhatsApp Button (Blinking effect) */
@keyframes blink {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

/* Button click animation */
.floating-btn:active {
    transform: scale(0.95); /* Shrinks when clicked */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-buttons-wrapper {
        bottom: 108px;
        right: 10px;
    }
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 25px;
    }
}

.company-logo {
        height: 60px;
}

.scroll-down {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 12px;
  box-sizing: border-box;
}

.scroll-down::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, 12px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 24px);
  }
}
