


#details{
    width: 100%;
    background-color: royalblue;
    height: auto;
    display: flex;
    justify-content: space-around;
   
    align-items: center;
}
#details:nth-child(2)
{
    margin-top: 20px;
}
.fa {
    padding: 10px 5px;
    font-size: 15px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 5px 3px;
    border-color: red;
    border-radius: 3px;
    
  }
  .fa-facebook {
    background:papayawhip;
    color: black;
  }
  .fa-twitter {
    background: papayawhip;
    color: black;
  }
  .fa-youtube-play {
    background: papayawhip;
    color: black;
  }
  
  .fa-instagram {
    background: papayawhip;
    color: black;
  }
  .fa-linkedin{
    background: papayawhip;
    color: black;
  }
  #logo
  {
    width: 70%;
    height: 100px;
    display: flex;
    justify-items: center;
    align-items: center;
   margin:auto ;
     
   
  }
  #logo h1{
    color: navy;
    font-size: 50px;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .header-area {
    background:  royalblue,
    
  }
  .navbar {
    background-color:royalblue;
    overflow: hidden;
}

/* .navbar {
  background-color: #333;
  overflow: hidden;
} */

.navbar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu li a {
  display: block;
  padding: 14px 20px;
  color: white;
  text-decoration: none;
  text-align: center;
}

.navbar-menu li a:hover {
  background-color: #575757;
}

/* Dropdown menu styles */
.dropdown-content {
  display: none; /* Hidden by default */
  position:sticky;
  background-color: royalblue;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  left: 0;
}

.dropdown-content li {
  width: 100%;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show dropdown on hover for desktop */
@media (min-width: 769px) { /* Desktop View */
  .dropdown:hover .dropdown-content {
      display: block; /* Show the dropdown content on hover */
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar-menu {
      flex-direction: column;
      display: none;
  }

  .navbar-menu.open {
      display: flex;
  }

  .nav-toggler {
      display: block;
      background-color: #333;
      color: white;
      padding: 14px;
      border: none;
      cursor: pointer;
      margin: auto;
  }

  .nav-toggler span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 5px 0;
  }

  .dropdown-content {
      position: static; /* Static positioning for mobile */
      display: none; /* Hidden by default */
  }

  .dropdown.active .dropdown-content {
      display: block; /* Show on mobile when active */
  }
}
/* header end */




#feedheader
{
  width: 80%;
  height: 80px;
  background-color: royalblue;
  color: white;
  justify-content: center;
  align-items: center;
  justify-items: center;
  margin: auto;
  text-align: center;
  margin-top: 50px;
}
#feedheader h1{
  display: inline-block;
  
}


#formdata{
    width: 50%;
    margin: auto;
    margin-top: 30px;
}



.ccontainer {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: royalblue;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 5px;
}

textarea {
    height: 100px;
}

button {
    background-color: royalblue;
    color: white;
    padding: 10px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 40%;
    font-size: 20px;
}

button:hover {
    background-color: #2c3e50;
}

.required {
    color: red;
}




/* footer  */

.footer-container {
    display: flex;
    justify-content: space-between;
    background-color: #cccccc;
    padding: 20px;
    margin: 0;
  }
  
  .footer-left, .footer-center, .footer-right {
    width: 30%;
  }
  
  .footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
  }
  
  .footer-description {
    color: #333;
    line-height: 1.5;
    font-size: 15px;
  }
  
  .footer-social {
    margin-top: 20px;
  }
  
  .footer-social a {
    text-decoration: none;
    color: #333;
    margin-right: 10px;
    font-size: 18px;
  }
  
  .footer-social a:hover {
    color: #007BFF;
  }
  
  .footer-center h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #000;
  }
  
  .footer-links {
    list-style-type: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links li a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
  }
  
  .footer-links li a:hover {
    color: #007BFF;
  }
  
  .footer-right h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #000;
  }
  
  .footer-right iframe {
    border-radius: 8px;
    border: none;
    width: 100%;
  }
  
  #copyright{
    width: 100%;
    background-color: navy;
    height: 70px;
    color: white;
    margin: auto;
    display: flex;
  }
  #copyright div{
    width: 40%;
    margin: auto;
  }
  
  
  @media all and (max-width:780px)
  {
    #details{
      width: 100%;
      background-color: royalblue;
      height: auto;
      display: block;
      justify-content:center;
     justify-items: center;
      align-items: center;
  }
  
  #details div{
    width: 100%;
    justify-content: center;
    align-items: center;
    justify-items: center;
    text-align: center  ;
  }
  
  #logo
    {
      width: 100%;
      height: auto;
      display: block;
      justify-items: center;
      align-items: center;
       margin:auto;
       text-align: center;
       justify-content: center;
  
       
     
    }
    
    #logo img{
      width: 30%;
  
    }
  
    #logo h1{
      color: navy;
      font-size: 20px;
    }
  
    #feedheader
    {
      width: 100%;
      height: 80px;
      background-color: royalblue;
      color: white;
      justify-content: center;
      align-items: center;
      justify-items: center;
      margin: auto;
      text-align: center;
      margin-top: 50px;
    }
    #feedheader h1{
      display: inline-block;
      
    }
    #formdata{
      width: 90%;
   
      margin-top: 30px;
  }

    .footer-container {
      display: block;
      justify-content: space-between;
      background-color: #cccccc;
      padding: 20px;
      width: 100%;
      margin: auto;
      word-wrap: break-word;
    }
    .footer-logo {
      max-width: 100%;
      margin-bottom: 10px;
      margin: auto;
      justify-content: center;
      align-items: center;
      justify-items: center;
      text-align: center;
    }
    .footer-left, .footer-center, .footer-right {
      width: 100%;
    }
    .footer-left{
      margin: auto;
      justify-content: center;
      justify-items: center;
      align-items: center;
      text-align: center;
    }
    .footer-description {
      display: block;
      color: #333;
      line-height: 1.5;
      font-size: 15px;
      width: 100%;
    
    }
    .footer-description  p{
      width: 100%;
      word-wrap: break-word;
    }
    .footer-social {
      width: 100%;
      margin-top: 20px;
      text-align: center;
      justify-content: center;
      align-items: center;
      justify-items: center;
    }
    .footer-social a {
      text-decoration: none;
      color: #333;
      font-size: 10px;
    }
    .footer-center{
      width: 100%;
      justify-content: center;
      justify-items: center;
      align-items:center ;
      text-align: center;
     
      margin: auto;
      margin-left: -20px;
    }
    .footer-center h3{
      display: inline-block;
    }
    
    .footer-links{
    
      display: grid;
      grid-template-columns: auto auto auto ;
      width: 100%;
      justify-content: center ;
      justify-items: center;
     margin-left: -40px;
    }
    
    
    
    .footer-links li {
      
      width: 100%;
      margin:auto;
     
      margin: 10px;
      padding: 2px;
    
    
    }
    
    .footer-links li a {
      text-decoration: none;
      color: #333;
      font-size: 15px;
      width: 100%;
    }
    
    .footer-links li a:hover {
      color: #007BFF;
    }
    
    .footer-right {
      width: 100%;
      justify-content: center;
      justify-items: center;
      align-items:center ;
      text-align: center;
      margin: auto;
    }
    
    .footer-right h3{
      display: inline-block;
    }
    
    .footer-right iframe{
      width: 100%;
     
    }
    
    
    #copyright{
      width: 100%;
      background-color: navy;
      height: 100px;
      color: white;
      margin: auto;
      display: block;
      justify-content: center;
      align-items: center;
      text-align: center  ;
    }
    #copyright div{
      width: 100%;
      margin: auto;
    }
    #copyright div h4{
      font-size: 15px;
    }
    
    /* Style for the Scroll to Top Button */
    #scrollTopBtn {
      display: none; /* Hidden by default */
      position: fixed; /* Fixed position on the page */
      bottom: 70px; /* 20px from the bottom */
      right: 100px; /* 30px from the right */
      z-index: 99; /* Ensure it is visible above other elements */
      background-color: #0078D7; /* Blue background */
      color: white; /* White text */
      border: none; /* No border */
      outline: none; /* No outline */
      cursor: pointer; /* Pointer cursor on hover */
      padding: 15px; /* Padding inside the button */
      border-radius: 70%; /* Make it circular */
      font-size: 18px; /* Increase font size */
    }
    
    /* Button hover effect */
    #scrollTopBtn:hover {
      background-color: #555; /* Darker background on hover */
    }
    #sendMessage{
      width: 100%;
    }
  }