* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  list-style: none;
  text-decoration: none;
}

.contact-form {
  background-color: #39394d5b;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%; /* Use a percentage width for responsiveness */
  max-width: 600px; /* Maximum width */
  margin: 20px auto; /* Centered with top and bottom margin */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-form h3 {
  color: black;
  text-align: center;
  margin-bottom: 15px;
  font-size: 24px;
}

.form-group {
  margin-bottom: 10px;
  width: 100%; /* Ensure full width */
}

.input-group {
  display: flex;
  gap: 10px; /* Add space between the input boxes */
  width: 100%;
}

.input-group input {
  flex: 1; /* Make input boxes take equal space */
  padding: 10px;
  border: 2px solid #428eff;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #428eff;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  height: 80px; /* Increased height */
}

.submit-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #428eff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  text-align: center;
}

.submit-button:hover {
  background-color: #007BFF;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(66, 142, 255, 0.2);
}

/* Footer */
.footer {
  background-color: #001F3F; 
  padding: 5px 0; /* Reduced padding for smaller height */
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Your name and copyright information */
.footer-text {
  color: #fff; /* White color for the text */
  font-size: 12px; /* Reduced font size */
  text-align: center;
  margin: 0; /* Removed margin for compact look */
}

/* Style for the text within the footer */
.footer-text span {
  font-weight: bold;
}

/* To center align the footer text and social links */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
/* Media queries for responsiveness */
@media (max-width: 768px) {
  .contact-form {
    width: 95%; /* Adjust width for medium screens */
    padding: 10px; /* Reduce padding for medium screens */
  }

  .input-group {
    flex-direction: column; /* Stack inputs vertically on smaller screens */
  }

  .input-group input {
    margin-bottom: 10px; /* Add margin to stacked inputs */
  }

  .form-group textarea {
    height: 60px; /* Adjust textarea height for medium screens */
  }
}

@media (max-width: 480px) {
  .contact-form {
    width: 100%; /* Full width for small screens */
    padding: 10px; /* Reduce padding for small screens */
  }

  .contact-form h3 {
    font-size: 20px; /* Adjust font size for small screens */
  }

  .input-group input {
    font-size: 14px; /* Adjust font size for small screens */
  }

  .form-group textarea {
    font-size: 14px; /* Adjust font size for small screens */
    height: 50px; /* Adjust textarea height for small screens */
  }

  .submit-button {
    font-size: 14px; /* Adjust button font size for small screens */
    padding: 8px 16px; /* Adjust button padding for small screens */
  }
}





.form-group input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #428eff;
    border-radius: 8px;
    font-size: 18px;
    color: #333;
}
 
  /* The main content row is where all the action happens! 💥 */
  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
  }
  
  /* The left column takes up 40% of the space! 📜 */
  .col-1 {
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
  }
  
  /* Big and bold heading! 📢 */
  .col-1 h2 {
    font-size: 54px;
    color: #428eff; /* White color for the heading */
    margin-top: 5px;
  }
  
  /* Subheading with a touch of gray! 🌧️ */
  .col-1 h3 {
    font-size: 20px;
    color: rgb(255, 250, 250); /* A light gray color */
    font-weight: 100;
    margin: 20px 0 10px;
  }
  
  /* Our paragraphs are also a light gray color! 🌫️ */
  .col-1 p {
    font-size: 16px;
    color: rgb(255, 246, 246); /* Another light gray color */
    font-weight: 100;
    margin: 30px 0;
    margin-top: 10px;
  }
  
  @keyframes slideFromRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
 

  
  
  /* This adds a cool effect to the left side of the column! ✨ */
  .col-1::after {
    content: '';
    width: 10px;
    height: 57%;
    background-color: #428eff ;
    position: absolute;
    left: -40px;
    top: 8px;
  }
  
  /* The right column takes up 60% of the space! 📊 */
  .col-2 {
    position: relative;
    flex-basis: 60%;
    display: flex;
    align-items: center;
  }
  
  /* The Qamran image is part of the right column! 🖼️ */
  .col-2 .qamran {
    width: 72%;
  }
  
  /* This is the fancy color box that adds some pizzazz! 🎨 */
  .color-box {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #428eff ;
    border-radius: 20px 0 0 20px;
    height: 100%;
    width: 120%;
    z-index: -1;
    transform: translateX(150px);
  }
  
  /* Add buttons and social links to the color box! 🎨 */
  .add-btn img {
    width: 30px;
    margin-bottom: 5px;
  }
  
  .add-btn {
    text-align: center;
    color: #fff; /* White color for the button text */
    cursor: pointer;
  }
  
  
  /* On smaller screens, the navigation bar becomes a slide-out menu! 🍔 */
  @media only screen and (max-width: 700px) {
    nav ul {
      width: 100%;
      background-color: #f7f7f7;
      position: absolute;
      top: 75px;
      right: 0;
      z-index: 2;
    }
    nav ul li {
      display: block;
      margin-top: 10px;
      margin-bottom: 10px;
      font-size: 2px;
    }
    nav ul li a {
      color: #fff; /* White color for the links */
    }
    .menu-icon {
      display: block;
    }
    #menuList {
      overflow: hidden;
      transition: 0.5s;
    }
    .row {
      flex-direction: column-reverse;
      margin: 50px 0;
    }
    .col-2 {
      flex-basis: 100%;
      margin-bottom: 50px;
    }
    .col-2 .qamran {
      width: 60%;
    }
    .color-box {
      transform: translateX(60px);
    }
    .col-1 {
      flex-basis: 100%;
    }
    .col-1 h2 {
      font-size: 35px;
    }
    .col-1 h3 {
      font-size: 15px;
    }
  }
  

  
  /* Apply the animations to the respective elements! */
  .col-1 h2,
  .col-1 h3,
  .col-1 p {
    animation: slideFromRight 1s ease forwards;
  }
  
  .color-box {
    animation: slideColorBoxFromLeft 1s ease forwards;
    position: absolute;
    left: 0;
    top: 0;
    background: #428eff;
    border-radius: 20px 0 0 20px;
    height: 100%;
    width: 120%;
    z-index: -1;
  }
  
  .col-2 .qamran,
  .color-box {
    animation: slideFromLeft 1s ease forwards;
  }
  
  
  /* The pulsating animation for the awesome button! 🔥 */
  @keyframes pulsate {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  /* Apply the pulsating animation to the button! 🎉 */
  /* Finally, let's set the background color to black! 🌚 */
  body {
    background-color: #ffffff; /* Black background */
  }
  @keyframes pulsate {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  
  
 

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align items to the right */
  padding: 15px 5%; /* Reduced padding for a smaller header */
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  background-color: #004386; /* Ensure a background color is applied */
}

header a img {
  width: 120px; /* Reduced width */
  height: auto; /* Maintain aspect ratio */
}

.navbar {
  position: sticky; 
  transition: background-color 0.3s ease-in-out;
  padding-top: 5px; /* Reduced padding */
  padding-bottom: 10px; /* Reduced padding */
  width: 100%; /* Ensure navbar takes full width */
  display: flex;
  justify-content: flex-end; /* Align items to the right */
  align-items: center;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #397dc2 18%, #004386 82%);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}

.navbar.scrolled::before {
  opacity: 0;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.384);
}

.logo {
  font-size: 24px; /* Reduced font size */
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-right: auto; /* Push the logo to the left */
}

.navlist {
  display: flex;

  margin-right: 10%; /* Adjust margin as needed */
  margin-top: 0; /* Reduced margin */
}

.navlist a {
  color: #ffffff;
  margin-left: 40px; /* Reduced margin */
  font-size: 14px; /* Reduced font size */
  font-weight: 600;
  transition: all .55s ease;
  text-decoration: none;
}

.navlist a:hover {
  color: #f0e32c;
  border-bottom: 2px solid #f0e32c;
} 

.navbar.scrolled .navlist a {
  color: white;
}

#menu-icon {
  color: #ffffff;
  font-size: 30px; /* Reduced font size */
  z-index: 10001;
  cursor: pointer;
  display: block; /* Show the menu icon if needed */
}



  /* To center align the footer text and social links */
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .back-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hide video controls */
.back-video::-webkit-media-controls {
    display: none !important;
}

.back-video::-webkit-media-controls-play-button,
.back-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.back-video::-webkit-media-controls,
.back-video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}


.footer-col{
    width: 25%;
    padding: 0 15px;
 }
 .footer-col h4{
     font-size: 18px;
     color: #ffffff;
     text-transform: capitalize;
     margin-bottom: 35px;
     font-weight: 500;
     position: relative;
 }
 .footer-col h4::before{
     content: '';
     position: absolute;
     left:0;
     bottom: -10px;
     background-color: #e91e63;
     height: 2px;
     box-sizing: border-box;
     width: 50px;
 }
 .footer-col ul li:not(:last-child){
     margin-bottom: 10px;
 }
 .footer-col ul li a{
     font-size: 13px;
     text-transform: capitalize;
     color: #ffffff;
     text-decoration: none;
     font-weight: 300;
     color: #bbbbbb;
     display: block;
     transition: all 0.3s ease;
 }
 .footer-col ul li a:hover{
     color: #ffffff;
     padding-left: 8px;
 }
 .footer-col .social-links a {
    display: inline-flex; /* Use inline-flex to center vertically and horizontally */
    align-items: center;
    justify-content: center;
    height: 40px !important ;
    width: 40px !important ;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
    font-size: 23px !important;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

 .footer-col {
    width: 25%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content horizontally */
    text-align: center; /* Center align text */
}
#sidebar {
    width: 500px;
    background-color: #39394d5b;
    color: white;
    position: fixed;
    height: 100%;
    overflow-y: auto;
}

@media (max-width: 786px) {

    .back-video{
        display: none;
       }
     body{
        background-color: whitesmoke;
       }
  }

  @media (max-width: 786px) {
    /* Hide the background video on mobile */
    .back-video {
        display: none;
    }

    body {
        background-color: whitesmoke;
    }

    /* Show the sidebar when the menu icon is clicked */
    #menu-icon {
        display: block;
    }

    /* Adjust header styles for mobile */
    header {
        padding: 16px 9%;
    }

    /* Adjust logo size */
    header a img {
        width: 140px;
        height: 48px;
    }

    /* Add styles for the navigation menu */
    .navbar {
        padding-top: 0;
        padding-bottom: 0;
        background-color: #39394d5b;
    }

    /* Show the navigation list when the menu icon is clicked */
    .navlist {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        right: 0;
        background-color: #f7f7f7;
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    /* Style for individual menu items */
    .navlist a {
        color: #000;
        margin-left: 0;
        margin-bottom: 10px;
        border-bottom: none;
    }

    /* Sidebar styles */
    #sidebar {
        display: none; /* Show the sidebar when the menu icon is clicked */
    }

    /* Contact form styles for mobile */
    .contact-form {
        
        
        width: 60%;
    }
    h3{
        color: #000;
    }
    footer {
        position: relative;
        clear: both; /* Clear any floated elements above the footer */
        margin-top: 80px;
        width: 5%;
    }
   /* ... (previous CSS code) ... */

/* Contact form styles for mobile */
.contact-form {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding: 15px;
    width: 80%; /* Adjust the form width */
}

/* Input field styles for mobile */
.input-group input {
    width: 100%; /* Make input fields 100% width */
}

.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%; /* Make tel and email inputs 100% width */
    margin-right: 0; /* Remove right margin */
    padding-right: 15px; /* Restore padding */
}

/* Adjust the footer styles for mobile */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0; /* Reduce padding */
    background-color: #2d303a;
    padding-bottom: 50px;
}

/* Prevent zooming on mobile devices */
@viewport {
    width: device-width;
    zoom: 1.0;
}

h3 {
    color: black !important; /* Change color to black */
}
.map-container {
    width: 80%; /* You can adjust the width as needed */
    max-width: 100%; /* Ensure it doesn't exceed the screen width */
}
body {
    overflow-x: hidden; /* Hide horizontal overflow */
}
.container{
    margin-bottom: 30px;
}
}
@media (max-width: 786px) {
    #menu-icon {
        color: #ffffff;
        font-size: 35px;
        z-index: 10001;
        cursor: pointer;
        display: block; 
        position: fixed; /* Fix the position of the menu icon */
        top: 20px; /* Adjust the top position as needed */
        right: 20px; /
    }
    .navlist {
        position: fixed;
        top: 73px; /* Adjust the top value to push it down */
        right: -100%;
        width: 100%;
        max-width: 400px;
        background-color: rgba(0, 0, 0, 0.384);
        display: flex;
        flex-direction: column;
        padding: 50px 20px;
        transition: right 0.5s ease;
        z-index: 10000;
        box-sizing: border-box;
    }
    .navlist a {  
        margin-left: 0;
        display: block;
        margin: 2px 0;
    }
    .navlist a:last-child {
        padding-bottom: 20px; /* Adjust the padding as needed */
    }

    .navlist.open {
        right: 0; /* Show the menu by bringing it to 0px from the right */
    }

    body.open-menu {
        overflow-x: hidden; /* Hide horizontal overflow when the menu is open */
    }
    .hero-text h1 {
        font-size: 60px; /* Decrease the font size */
        margin: -90px 0 10px; /* Adjust the margin to move the text up more */
    }
    
    .hero-text a {
        margin-top: 10px; /* Add top margin to the buttons to move them up */
    }
    header a img {
        width: 120px; /* Adjust the width to make the logo smaller */
        height: auto; /* Maintain aspect ratio */
    }

    .navbar {
        position: fixed;
    }

}


@media (max-width: 680px){
    .hero-img{
        width: 30%;
        height: auto;
    }
}