/* index page */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");


body {
    margin: 0;
    background-color: #ffffff;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    padding: 10px 0;
    /* border-bottom: 1px solid #000000; */
    box-shadow: 0 0 5px rgb(0, 0, 0), 0 0 25px rgb(0, 0, 0); 
    z-index: 10; /* Ensure the header is above other content */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* width: 90%; */
}

.logo a {
    font-size: 1.5em;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    width: 40px; /* Adjust the size as needed */
    height: 40px; /* Adjust the size as needed */
    margin-right: 10px; /* Adjust the spacing as needed */
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    padding: 0 20px;
}

.navigation ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}

.navigation li {
    margin: 0 15px;
}

.navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.hamburger-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
    color: #000000;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;

}


.navigation ul li {
    /* margin-left: 20px; */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.navigation ul li a {
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    font-size: 1.2em;
}

.navigation ul li a:hover {
    background-color: #6b6767;
}

.cta-button {
    background-color: #000000;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: bold;
    margin-left: auto;
    /* box-shadow: 0 0 5px cyan, 0 0 25px cyan; */
}

.cta-button:hover {
    background-color: #6b6767;
    /* box-shadow: 0 0 5px cyan, 
    0 0 25px cyan, 0 0 50px cyan
    0 0 100px cyan, 0 0 200px cyan ; */
}

/* CSS for get consultation page */

.consultation-container {
    width: 100%;
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 5px rgb(27, 142, 237), 0 0 25px rgb(27, 142, 237);
    border-radius: 15px;
}

.consultation-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

.consultation-container form {
    display: flex;
    flex-direction: column;
}

.consultation-container form input,
.consultation-container form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.consultation-container form textarea {
    resize: vertical;
    height: 100px;
}

.consultation-container form button {
    padding: 10px;
    font-size: 16px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.consultation-container form button:hover {
    background-color: #6b6767;
    box-shadow: 0 0 5px rgb(27, 142, 237), 
    0 0 25px rgb(27, 142, 237), 0 0 50px rgb(27, 142, 237)
    0 0 100px rgb(27, 142, 237), 0 0 200px rgb(27, 142, 237) ;
}

/* success page */

.success-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    text-align: center;
}

.back-home-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 50px;
    font-size: 16px;
    box-shadow: 0 0 5px rgb(27, 142, 237), 0 0 25px rgb(27, 142, 237);
}

.back-home-button:hover {
    background-color: #6b6767;
    box-shadow: 0 0 5px rgb(27, 142, 237), 
    0 0 25px rgb(27, 142, 237), 0 0 50px rgb(27, 142, 237)
    0 0 100px rgb(27, 142, 237), 0 0 200px rgb(27, 142, 237) ;
}



/* home page main section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding-top: 130px;
    overflow: hidden; /* Adjust padding to move content upwards */
}

.hero-container {
    max-width: 800px;
    padding: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    
}

.hero h1.main-heading {
    font-size: 3rem; /* Reduced font size */
    margin-bottom: 20px;
    /* font-family: 'Times New Roman', Times, serif; */
}

.hero h1.sub-heading {
    font-size: 2em; /* Reduced font size */
    margin-bottom: 15px;
    /* font-family: 'Times New Roman', Times, serif; */
}

.hero p.highlight-text {
    font-size: 1.5em; /* Increased font size */
    margin-bottom: 190px;
    /* font-family: 'Times New Roman', Times, serif; */
}

/* .hero-button {
    background-color: #ffffff;
    color: #000000;
    padding: 15px 30px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 5px rgb(27, 142, 237), 0 0 25px rgb(27, 142, 237);
    font-weight: bold;
}

.hero-button:hover {
    background-color: #6b6767;
    box-shadow: 0 0 5px rgb(27, 142, 237), 
    0 0 25px rgb(27, 142, 237), 0 0 50px rgb(27, 142, 237)
    0 0 100px rgb(27, 142, 237), 0 0 200px rgb(27, 142, 237) ;
} */

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    animation: slideShow 7s infinite;
}

@keyframes slideShow {
    0% { background-image:  url('../media/pic5.jpeg');} 
    33.33% { background-image: url('../media/pic7.jpeg'); }
    66.66% { background-image: url('../media/pic6.jpeg'); }
    100% { background-image: url('../media/pic5.jpeg'); } /* Loop back to the first image */
}


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the overlay color and opacity */
    z-index: -1;
}

.hero-section {
    padding: 60px 0;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    text-align: center; /* Center text inside the container */
    flex-direction: column; /* Stack items vertically */
}

/* about us section */

.about {
    background-color: #ffffff;
}

.about .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    
}

.about h2 {
    font-size: 3.6em;
    margin-bottom: 20px;

    /* font-family: 'Times New Roman', Times, serif; */
}

.about p {
    max-width: 900px;
    align-items: center;
    align-content: center;
    margin: 0 auto; 
    font-size: 1.3em;
    /* font-family: 'Times New Roman', Times, serif; */
    /* font-weight: bold; */
}

/* services section */

.services {
    background-color: #ffffff;
    position: relative;
    top: -50px; /* Negative value moves it up */
}

.services .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    min-height: 50vh;

}

.services .container h2 {
    font-size: 2.5em; /* Adjust the size as needed */
    /* font-weight: bold; */
    text-align: center; /* Centers the heading */
    margin-bottom: 20px; /* Adds space below the heading */
}

.services .service-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px; /* Adjusts the vertical space between images */
    margin-right: 15px; /* Adjusts the horizontal space between images */
    box-sizing: border-box; /* Ensures padding or border doesn't affect the width */
}

.services .service-items a {
    text-decoration: none;
    color: inherit;
    margin: 10px;
}

.services .service-items img {
    width: 230px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 0 5px rgb(27, 142, 237), 0 0 25px rgb(27, 142, 237);
}

.services .service-items img:hover {
    transform: scale(1.2);
    box-shadow: 0 0 5px rgb(83, 163, 228), 
    0 0 25px rgb(83, 163, 228), 0 0 50px rgb(83, 163, 228)
    0 0 100px rgb(83, 163, 228), 0 0 200px rgb(83, 163, 228) ;
}

.services .service-items h3 {
    margin-top: 15px;
    font-size: 1.5em;
    /* font-family: 'Times New Roman', Times, serif; */
    padding: 10px; /* Adds space around the text */
}

/* .blog {
    background-color: #1e1e1e;
}

.blog .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blog h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.blog p {
    max-width: 800px;
    font-family: 'Times New Roman', Times, serif;
} */

/* footer */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
}

/* body {
  display: flex;
  background: #333;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 100vh;
} */

.footer {
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
    margin-top: 100px; /* Adjust this value as needed */
  }
  

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #000000;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

/* .menu__link {
  font-size: 1.2rem;
  color: #000000;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
} */

.footer p {
  color: #000000;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;

}

.footer-address {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ffffff;
}

.footer-address p {
    margin: 5px 0;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('../media/wave (1).png');
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}




/* Scroll Animation */
.about-content {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-appear {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .navigation ul {
        flex-direction: column;
    }

    .navigation ul li {
        margin: 10px 0;
    }

    .services .service-items {
        flex-direction: column;
        align-items: center;
    }
}



/* Responsive Styles */
@media (max-width: 768px) {
    .navigation {
        display: none;
        position: fixed;
        top: 60px;
        right: 20;
        background-color: #ffffff;
        width: calc(100% - 40px); /* Adjust for padding */
        max-width: 100%;
        padding: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .navigation.active {
        display: block;
        position: absolute;
        top: 60px; /* Adjust if needed */
        right: 0;
        background-color: #ffffff; /* Adjust as needed */
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
        
    }

    .navigation ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0 auto;
        justify-content: center;
        display: flex;
        width: 100%;
        margin-right: auto;
    }

    .navigation li {
        margin: 10px 0;
    }

    .hamburger-icon {
        display: block;
    }

    .logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .navigation .cta-button {
        display: block;
        margin: 10px 0;
        text-align: center;
        padding: 10px 15px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        margin-left: auto;
        margin-right: 20px;
        width: auto;
        color: #ffffff;
        font-size: 1rem;
    }
    

    .hero-content, .about .container, .services .container {
        text-align: center !important; /* Force center alignment */
        display: flex;
        justify-content: center;
        align-items: center;
        

    }

    
}
