body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #eaeaea;
    background-color: #000000;
    height: 100%;
}

.header {
    background-color: #E0218A;
    padding: 10px 50px;
}

.nav {
    justify-content: flex-end;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2d2d2d;
}

.logo {
    height: 120px;
    max-width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) { /* For tablets and smaller */
    .header {
        padding: 10px 20px;
    }

    .nav {
        justify-content: center;
    }

    .nav-link {
        font-size: 13px;
        margin-left: 15px;
    }

    .logo {
        height: 90px;
    }
}

@media (max-width: 768px) { /* For tablets and large phones */
    .header {
        padding: 10px 15px;
    }

    .nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 12px;
        margin-left: 10px;
    }

    .logo {
        height: 80px;
    }
}

@media (max-width: 576px) { /* For smaller mobile devices */
    .header {
        padding: 10px;
    }

    .row {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        font-size: 12px;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .logo {
        height: 70px;
    }
}

.hero {
    position: relative;
    background-image: url('image/Hero image(2).jpg');
    background-size: cover; /* Covers the section initially */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
    height: calc(100vh - 120px); /* Adjusts for header height */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #eaeaea;
    padding: 0 15px; /* General padding */
}

/* Adjustments for larger screens */
@media (min-width: 1200px) {
    .hero {
        height: calc(100vh - 120px); /* Full height minus header */
        padding-right: 50px; /* Align text to the right */
    }
}

/* Adjustments for tablets */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero {
        height: calc(100vh - 100px); /* Adjust height for tablets */
        padding-right: 30px; /* Smaller padding */
    }
}

/* Adjustments for mobile */
@media (max-width: 767px) {
    .hero {
        height: 20.5vh; /* Full viewport height */
        background-size: contain; /* Ensure the entire image is shown */
        background-position: center; /* Center the image */
        background-repeat: no-repeat; /* Prevents repetition */
        justify-content: center; /* Center content */
        text-align: center; /* Center text */
        padding: 0 10px; /* Less padding for mobile */
    }
}


.mission-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #fff;
  }
  
  .mission-text {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
  }
  
  .mission-text h2 {
    color: #E0218A;
    font-size: 32px;
    font-weight: bolder;
    margin-bottom: 20px;
  }
  
  .mission-text p {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .mission-image {
    flex: 1;
    max-width: 50%;
  }
  
  .mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  @media (max-width: 768px) {
    .mission-section {
      flex-direction: column;
      text-align: center;
    }
  
    .mission-text, .mission-image {
      max-width: 100%;
      padding: 0;
    }
  
    .mission-text {
      margin-bottom: 20px;
    }
  }
 /* .our-story-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eaeaea;
    padding: 50px;
}

.our-story-content {
    display: flex;
    max-width: 1000px;
    align-items: center;
}

.our-story-image img {
    max-width: 350px;
    height: auto;
}

.our-story-text {
    margin-left: 30px;
    color: #2d2d2d;
}

.our-story-text h2 {
    color: #E0218A;
    font-size: 2em;
    font-weight: bolder;
    margin-bottom: 20px;
}

.our-story-text p {
    font-size: 1.1em;
    line-height: 1.6;
}*/

/* For larger screens */
.our-story-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eaeaea;
    padding: 50px;
}

.our-story-content {
    display: flex;
    max-width: 1000px;
    align-items: center;
}

.our-story-image img {
    max-width: 350px;
    height: auto;
}

.our-story-text {
    margin-left: 30px;
    color: #2d2d2d;
}

.our-story-text h2 {
    color: #E0218A;
    font-size: 2em;
    font-weight: bolder;
    margin-bottom: 20px;
}

.our-story-text p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .our-story-content {
        flex-direction: column;
        text-align: center;
    }

    .our-story-text {
        margin-left: 0;
        margin-top: 20px;
    }

    .our-story-text h2 {
        font-size: 1.8em;
    }

    .our-story-text p {
        font-size: 1em;
    }

    /* Adjust image size for smaller screens */
    .our-story-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .our-story-text h2 {
        font-size: 1.5em;
    }

    .our-story-text p {
        font-size: 0.9em;
    }

    .our-story-section {
        padding: 20px;
    }

    /* Further adjust image size for very small screens */
    .our-story-image img {
        max-width: 100%;
    }
}


footer {
    background-image: url('image/Footer\ image.jpg'); /* Dark wood texture or similar color */
    padding-top: 40px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    margin: 0 20px;
}

.footer-section ul {
    list-style: none; 
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d3d3d3; /* Slightly lighter on hover */
}

.about-us, .location {
    flex: 1;
}

.social-media {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: flex-end; /* Align to the right */
    flex-basis: 25%; /* This will make sure the social media section takes up 25% of the footer width */
}

.social-icon {
    display: inline-block;
    width: 30px; /* Icon size */
    height: 30px; /* Icon size */
    margin-right: 10px;
    border: 1px solid #fff; /* White border around the icon */
    border-radius: 0%; /* Circular shape */
    text-align: center;
    line-height: 30px; /* Center the icon vertically */
    color: #fff; /* White icon color */
    transition: background-color 0.3s, color 0.3s;
}

.social-icon i {
    font-size: 14px; /* Font size for the icon */
}

.social-icon:hover {
    background-color: #e3007e; /* Pink background on hover */
    color: #fff; /* Icon color remains white on hover */
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    background-color: #E0218A; /* Pink color */
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}


.quote-section {
    font-family: 'Poppins', sans-serif;
    background-color: #E0218A; /* Bright pink background */
    padding: 20px 0;
    text-align: center;
    color: white;
    
}

.quote-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7em;
    margin: 0;
font-weight: bold;}

.quote-section a {
    display: inline-block;
    background-color: white;
    color: #eb22a1;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.quote-section a:hover {
    background-color: #c4006e;
    color: white;
}
.btn-pink {
    background-color: #E0218A;
    color: #ffffff;
    padding: 15px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    margin: 20px auto; /* Ensure centering */
    border-radius: 45px;
    margin-top: -1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-pink:hover {
    background-color: #c50582;
}
/* Responsive styles */
@media (max-width: 768px) {
    .quote-section h1 {
        font-size: 4em; /* Adjust font size for tablets */
    }
    
    .btn-pink {
        padding: 10px 20px; /* Adjust button padding for smaller screens */
        font-size: 1rem;
        margin-top: -0.2rem;
    }
}

@media (max-width: 480px) {
    .quote-section h1 {
        font-size: 2.5em; /* Adjust font size for mobile devices */
    }

    .btn-pink {
        padding: 8px 16px; /* Further reduce padding for mobile */
        font-size: 0.9rem;
        margin-top: -0.2rem;
    }
}
/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
}

.modal-content {
    background-color: #2d2d2d;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    color: #eaeaea;
    border-radius: 8px;
}

.close {
    color: #eaeaea;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #E0218A;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.modal form input,
.modal form select,
.modal form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 45px;
    background-color: #444;
    color: #eaeaea;
}

.modal form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #E0218A;
    border: none;
    color: #ffffff;
    border-radius: 45px;
    cursor: pointer;
}

.modal form button:hover {
    background-color: #c50582;
}
.modal form .form-group {
    margin-bottom: 20px;
}
.modal form .form-control {
    border-radius: 45px;
    border: 1px solid #888;
    padding: 10px 15px;
    font-size: 16px;
    color: #888;
}
.modal form .form-control:focus {
    border-color: #E0218A;
    box-shadow: none;
}
