* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #0000001f;
}

:root {
    --mobile-h2-font-size: 2.2rem;
    --dekstop-h2-fontsize: 3rem;
}


hr {
    background-color: black;
    height: 2px;
    width: 80%;
    margin: 0px auto;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: black;
}


.navbar-logo img {
    height: 90px;
}



.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    margin: 0 2vw;
    position: relative;
}

.navbar-links a {
    color: black;
    text-decoration: none;
    font-size: 1.1vw;
    display: block;
}


.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.arrow {
    margin-left: 8px;
    font-size: 12px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(85, 85, 197);
    min-width: 190px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 122222;
}

.dropdown-content a {
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgb(125, 136, 236);
    color: rgb(255, 255, 255);
}

.contact-us {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: #ffffff;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 20px; /* Add gap between columns */
}

.contact-us:hover {
    background-color: #777;
}

.menu-icon {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: rgb(85, 85, 197);
    padding-top: 60px;
    transition: 0.3s;
    z-index: 1000000;
    overflow-x: hidden;
    backdrop-filter: blur(10px);
}

.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
}

.sidebar a:hover {
    background-color: white;
    color: rgb(85, 85, 197);

}

.dropdown-sidebar {
    position: relative;
}

.dropbtn-sidebar {
    background-color: rgb(85, 85, 197);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}

.dropdown-content-sidebar {
    display: none;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgb(85, 85, 197);
    transition: max-height 0.3s ease-out;
    max-height: 0;
    /* Initially collapsed */
}

.dropdown-content-sidebar.show {
    display: block;
    max-height: 300px;
    /* Adjust based on content */
}

.dropdown-content-sidebar a {
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    display: block;
}

.dropdown-content-sidebar a:hover {
    background-color: white;
    color: rgb(85, 85, 197);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 46px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (max-width: 1218px) {
    .navbar-links {
        display: none;
    }

    .contact-us {
        display: none;
    }

    .menu-icon {
        display: block;
        color: black;
        font-size: 50px;
        border-radius: 40px;
    }

    .sidebar {
        display: block;
        width: 0;
    }

    .sidebar.active {
        width: 250px;
    }
}


.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('Hero-img.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;

}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 32, 65, 0.733);
    z-index: 1;
    overflow: hidden;
}

span {
    color: #FF9534;
}

.arrow {
    color: black;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 60%;
    margin-top: 0px;
}


.hero-content h1 {
    font-size: 2.8rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.4rem;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.938);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content {
        width: 80%;
    }
}

@media (max-width: 1080px) {

    .hero-section {
        position: relative;
        width: 100%;
        height: 60vh;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        width: 100%;
        margin-top: 30px;
    }
}

/* Contact Us */


.contact-us {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: #ffffff;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    min-width: 400px; /* Increased min-width to prevent wrapping */
    padding: 20px;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
    border-bottom: 2px solid #4CAF50;
    display: inline-block;
}

.contact-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    background-color: #f9f9f9;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Add ellipsis if text overflows */
}
.contact-item .material-icons {
    font-size: 28px;
    color: #0051ff;
    margin-right: 15px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.contact-text {
    font-size: 18px;
    color: #555;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Add ellipsis if text overflows */
}

.contact-text a {
    text-decoration: none;
    color: #6b73ff;
    font-weight: 500;
    white-space: nowrap; /* Prevent link text from wrapping */
}

.contact-text a:hover {
    text-decoration: underline;
}
.map {
    flex: 1;
    min-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 600px; /* Match iframe height */
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-us {
        flex-direction: column;
        padding: 20px;
    }

    .map iframe {
        height: 350px;
        width: 100%;
    }
}


.gallery-title {
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    background: #FF9534;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.26);
}

@media (max-width: 900px) {
    .contact-us {
        flex-direction: column;
    }
    
    .contact-info,
    .map {
        min-width: 100%;
    }
    
    .contact-item {
        white-space: normal; /* Allow wrapping on small screens */
    }
    
    .contact-text,
    .contact-text a {
        white-space: normal; /* Allow wrapping on small screens */
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-title {
        font-size: 2em;
    }

    .section-end-line {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-title {
        font-size: 1.9em;
    }

    .section-end-line {
        width: 150px;
    }

    .section-end-icon {
        font-size: 1.5em;
    }

   .contact-item {
        padding: 10px;
    }
    
    .call-icon,
    .mail-icon {
        font-size: 24px !important;
        padding: 8px;
        margin-right: 10px !important;
    }
    
    .contact-text {
        font-size: 16px;
    }

}

/* General Styling */

/* General Styling */

/* <!-- Footer Starts here --> */

.footer {
    background-color: #00134D;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .footer .footer-content .footer-section {
    flex: 1 1 300px;
    text-align: left;
  }
  
  .footer .footer-content .footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
  }

  .logo{
    height: 90px;
  }
  
  .footer .footer-content .footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .footer-content .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer .footer-content .footer-section ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
  }
  
  .footer .social-icons {
    margin-top: 20px;
  }
  
  .footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    background-color: #0038FF;
    border-radius: 50%;
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
  }
  
  .footer .social-icons a:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .footer .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer .footer-content .footer-section {
      flex: 1 1 auto;
      margin-bottom: 30px;
    }
  
    .footer .social-icons {
      margin-top: 30px;
    }
  }