/* 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;
}

/* Header */
#header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    height: 8vh;
    background-color: white;
    color: #10acc2 !important;
}

/* Logo */
#logo img {
    width: 120px;
    height: 90px !important;
}

/* Hide the hamburger icon on larger screens */
#menu-toggle {
    display: none;
    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: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 10px 0;
    }

    #nav-links a {
        display: block;
        margin: 10px 0;
        color: #10acc2 !important;
    }

    #menu-toggle {
        display: block !important;
        color: #10acc2 !important;
    }

    /* Show menu when active */
    #nav-links.active {
        display: flex;
    }
}


/* Navigation Links */
#nav-links {
    flex: 1;
    text-align: center;
    color: #10acc2;
    font-size: 24px !important;
}

#nav-links a {
    position: relative;
    color: #10acc2 !important;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    font-size: 24px !important;
}

#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: #10acc2;
   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: 100vh;
    overflow: hidden;
}

.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;
  
}

/* 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%);
    color: white !important;
}

.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*/


.about-us {
    padding: 50px 20px;
    background: white;
    color: black;
}

.about-us h2 {
    font-size: 28px;
    letter-spacing: 2px;
}

.sub-heading {
    font-size: 14px;
    color: green;
    margin-bottom: 20px;
}

.slider-container {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    border: 5px solid green;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 100%;
    height: auto;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.quote {
    font-size: 16px;
    margin-top: 20px;
    color: #a0e6ff;
}

.quote span {
    color: #00c6ff;
}

/*  Section 3 */

.about-us-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, white 50%, black 50%);
    color: black;
    text-align: center;
}

.about-heading {
    font-size: 28px;
    letter-spacing: 2px;
    text-align: center;
}

.about-sub-heading {
    font-size: 18px;
    color: #88e627;
    margin-bottom: 20px;
    text-align: center;
}

.about-slider-container {
    position: relative;
    width: 500px;
    height: 200px;
    margin: 20px auto;
    border: 5px solid #00c6ff;
    overflow: hidden;
}

.about-slider {
    display: flex;
    width: 100%;
}

.about-slider img {
    width: 500px;
    height: 200px;
    display: none;
}

.about-slider img.about-active {
    display: block;
}

.about-prev, .about-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.about-prev {
    left: 10px;
}

.about-next {
    right: 10px;
}

.about-prev:hover, .about-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.about-quote {
    font-size: 16px;
    margin-top: 20px;
    color: #88e627;
    text-align: center;
}

.about-quote span {
    color: #00c6ff;
}

@media (max-width: 768px) {
    .about-slider-container {
        width: 90%;
        height: auto;
    }
    .about-slider img {
        width: 100%;
        height: auto;
    }
}


/*section 4*/

.vision-section {
    text-align: center;
    padding: 40px 20px;
  color: white !important;
}
.description1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.vision-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subheading {
    font-size: 18px;
    color: #88e627;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#ii{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    color: #333;
    padding: 10px;
    font-style: italic;
}
.description {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.vision-image {
    display: flex;
    justify-content: center;
}

.vision-image img {
    width: 80%;
    max-width: 800px;
    border-radius: 5px;
}

/*section 5*/

.mission-section {
    text-align: center;
    padding: 50px;
    background-color: #ffffff;
    color: #333;
    font-family: Arial, sans-serif;
}

.mission-content, .ceo-message {
    margin-bottom: 40px;
}

h2, h3 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #10acc2;
}

.subheading {
    font-size: 18px;
    color: #88e627;
    margin-bottom: 20px;
    text-align: center;
}

.description {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.ceo-name {
    font-style: italic;
    margin-top: 10px;
}

.ceo-quote {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.image-container {
    position: relative;
    width: 600px;
    max-width: 90%;
  
}

.image-container img {
    width: 100%;
    height: 400px;
    display: block;
}

.quote-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #000000, #333333);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 18px;
}

.quote-overlay span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .description {
        font-size: 14px;
    }
    .image-container {
        width: 100%;
    }
    .quote-overlay {
        font-size: 16px;
    }
}

/*Footer */

body {
    background-color: #212121;
    text-align: center;
    color: white !important;
    font-size: 20px;
  }
  /* 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;
  }
  /* 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;
    }
  }
