/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Frank+Ruhl+Libre:wght@300..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Playfair Display", serif;
    color: #10acc2;
}
#nav-links a{
color: #10acc2 !important;
}
/* Header */
#header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
   
    background-color: white;
    z-index: 1000;
    height: 8vh;
    color: #10acc2 !important;
}

/* Logo */
#logo img {
    width: 120px;
    height: 90px !important;
}
#menu-toggle {
    display: none !important;
    font-size: 24px;
    color: #10acc2;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 8vh;
        left: 0;
        width: 100%;
       background-color:white ;
        text-align: center;
        padding: 10px 0;
        color: #10acc2;
    }

    #nav-links a {
        display: block;
        margin: 10px 0;
        color: #10acc2 !important;
    }
    #menu-toggle {
        display: block !important;
        font-size: 24px;
        color: #10acc2;
        cursor: pointer;
    }
    /* Show menu when active */
    #nav-links.active {
        display: flex;
        background-color: black;
    }
}


/* Navigation Links */
#nav-links {
    flex: 1;
    text-align: center;
}

#nav-links a {
    position: relative;
    color: #10acc2;
    margin: 0 15px;
    text-decoration: none;
    font-size: 24px !important;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

#nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #88e627;
    transition: width 0.3s ease, left 0.3s ease;
}

#nav-links a:hover::after {
    width: 100%;
    left: 0;
}

#nav-links a:hover {
    color: #10acc2;
}
#nav-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
}

/* Call Info */
#call-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: white;
   text-decoration: none;
        
    
}

.flag-icon {
    width: 25px;
    height: auto;
    margin-right: 10px;
}

.call-number {
    margin-right: 10px;
    font-size: 14px;
    color: #10acc2;
    text-decoration: none;
}

/* Scrolled Header */
.scrolled {
    background: black !important;
}

/* Responsive */
@media (min-width: 768px) {
    .button-50 {
      padding: 8px 10px;
    }
  }

  
@media (max-width: 768px) {
    #header {
        flex-direction: row;
        justify-content: space-between;
        padding: 6px 5%;
    }

    /* Hide number in responsive */
    #call-info {
        display: none;
    }

    /* Adjust Hero Content */
    .hero-title {
        font-size: 28px;
    }

    .search-bar {
        flex-direction: column;
        width: 90%;
        max-width: none;
    }

    .city-dropdown, .search-bar input, .search-btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    color: white !important;
}

.slide-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Overlay to make slide images dull */
.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
}

/* Content styling */
.content {
    position: relative;
    text-align: center;
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
}

/* Bold and prominent text */
h1, h5 {
    opacity: 0;
    font-weight: 800; /* Bold text */
    text-transform: uppercase;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

h1 {
    font-size: 48px; /* Adjust size */
}

h5 {
    font-size: 22px;
    font-weight: 700;
}

.slide-left {
    transform: translateX(-100%);
    color: white !important;
}

.slide-right {
    transform: translateX(100%);
}

.slide.active .slide-left,
.slide.active .slide-right {
    transform: translateX(0);
    opacity: 1;
}

/* Navigation Dots */
.nav-buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.6;
}

.dot.active {
    background-color: #10acc2;
    opacity: 1;
}

/*section 2*/
.left-aligned-section {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.left-aligned-section h3 {
    font-size: 24px;
    margin: 0;
    color: #333;
}

.left-aligned-section p {
    font-size: 16px;
    margin-top: 10px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .left-aligned-section {
        padding: 15px;
    }

    .left-aligned-section h3 {
        font-size: 20px;
    }

    .left-aligned-section p {
        font-size: 14px;
    }
}


.left-aligned-section h3{
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}


/*section 3*/
.our-services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    gap: 30px;
    background-color: white;
    color: black;
}

.service-image {
    flex: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.our-services:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    padding-left: 20px;
}

/* Heading Styling */
.service-content h2 {
    font-size: 32px;
  color: #10acc2 !important;;
    margin-bottom: 15px;
}

/* Styling the List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Ensure text starts at left margin */
.service-list li {
    font-size: 18px;
    color: black;
    padding: 10px 0;
    position: relative;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    text-align: left; /* Ensures text alignment */
}

/* Slide Left on Hover */
.service-list li:hover {
    transform: translateX(-10px);
    color: #10acc2;
}

/* Learn More Button */
.learn-more {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(45deg, #88e627, #10acc2);
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s ease-in-out;
    margin-top: 15px;
}

.learn-more:hover {
    background: linear-gradient(45deg, #10acc2, #88e627);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-services {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    .service-content {
        padding-left: 0;
        margin-top: 20px;
    }

    .service-content h2 {
        font-size: 28px;
    }

    .service-list {
        text-align: left; /* Ensure alignment in smaller screens */
    }

    .service-list li {
        font-size: 16px;
    }

    .service-list li:hover {
        transform: translateX(-5px);
    }
}


/*footer*/

body {
    background-color: #212121;
    text-align: center;
    font-size: 20px !important;
    color: white !important;
  }
  
    /* Social Media Section */
    .footer-social {
      max-width: 2100px !important;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #10acc2;
      color: white;
    }
    
    .footer-social .social-icons a {
      color: white;
      margin: 0 0px;
      font-size: 2-px;
      transition: 0.3s;
      padding-right: 30px;
    }
    
    .footer-social .social-icons a:hover {
      color: #88e627;
      padding-right: 10px !important;
    }
    
    /* Footer Links */
    .footer-links {
      padding: 40px 20px;
    }
    
    .footer-container {
      max-width: 1500px;
      margin: auto;
    }
    
    .footer-row {
     
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    
    .footer-col {
      flex: 1;
      min-width: 250px;
      margin-bottom: 20px;
  
    }
    
    .footer-col h6 {
      font-weight: bold;
      text-transform: uppercase;
      color: #88e627;
      letter-spacing: 2px;
    }
    
    .footer-col hr {
      width: 50px;
      height: 2px;
      background-color:#10acc2;
      margin: 10px auto;
    }
    
    .footer-col p {
      margin: 5px 0;
      color: white;
    }
    
    .footer-col a {
      color: #333;
      text-decoration: none;
      transition: 0.3s;
      color: white;
    }
    
    .footer-col a:hover {
      color: #10acc2;
    }
    .footer-col i{
      color: #88e627;
    }
    
    /* Footer Copyright */
    .footer-copyright {
      background-color: rgb(37, 37, 37);
      padding: 15px;
      color: whitesmoke;
    }
    
    .footer-copyright a {
      color: wheat;
      text-decoration: none;
    }
    
    .footer-copyright a:hover {
      text-decoration: underline;
    }
    #foot{
      color: white !important;
      font-size: 20px !important;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .footer-social {
        flex-direction: column;
        text-align: center;
      }
    
      .footer-row {
        flex-direction: column;
        text-align: center;
      }
    
      .footer-col {
        margin-bottom: 30px;
      }
    }
