body {
  background-color: white;


}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --sky: #42CEFF;
  --mid-night: #2c3e50;
}

.section_padding {
  padding-top: 80px;

}

a {
  text-decoration: none;
}
li{
  list-style: none;
}

/* navbar */
 .navbar {
  background-color: var(--black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar-toggler{
color: white;
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(252, 250, 250, 0.5);
  z-index: 1050;
}

.navbar-brand img {
  height: 70px;
  width: 100%;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}


.sidebar {
  width: 280px;
  height: 100vh;
  background:var(--black);
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.nav-item .nav-link {
  color: #fbf7f7 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar.show {
  transform: translateX(0);
}

.dropdown-menu a {
  border: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: white;
}

.dropdown-menu a:hover {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #f5f5f8;
}

.nav-item .dropdown-menu{
  background-color: #000;
}


.menu-item {
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

.menu-item:hover {
  border: 2px solid white;
}

.menu-item a {
  text-decoration: none;
  color: #ffffff;
  display: block;
}

.submenu li {
  padding: 8px 12px;
  margin-left: 10px;
  border-radius: 5px;
  color: white;
}

.submenu li:hover {
  background: #eef2ff;
}

.nav-btn {
 
  color: white;
  border: 2px solid white;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: white;
  color: var(--black);
  border: 2px solid white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.cta {
  background: #0d6efd;
  text-align: center;
}

.cta a {
  color: #fff;
  font-weight: 600;
}

.cta:hover {
  background: #084298;
} 

/* nav end */

/* Fullscreen Loader */

/* loader start */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-wrapper.hide-loader {
  opacity: 0;
  visibility: hidden;
}

/* Dot Loader */
.dot-loader {
  text-align: center;
}

.dot-loader img {
  width: 70px;
  height: 70px;
}

/* Dots animation */
.dots {
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #007bff;
  border-radius: 50%;
  margin: 0 3px;
  animation: jump 0.6s infinite alternate;
}

.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes jump {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

        /* loader end */

/* contact banner start */

.contact-content{
    background: rgba(0, 0, 0, 0.5);
     position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  
}
.contact-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  flex-direction: column;
}
.contact-content p{
  font-size: 22px; 
  margin-top: 30px;
  color: #fff;
    position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

@media (max-width:489px) {

  .contact-content h1
   {
    font-size: 32px;
    
  }

  .contact-content p {
    font-size: 16px;
    margin-top: 10px;
  }
}
/* contact banner end */

/* together  */
.main-section{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-section h2 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
  letter-spacing: 1px;
  text-transform: uppercase;
}



.illustration {
  display: flex;
  align-items: self-start;
  justify-content: s;
  padding: 0px;
  background-color: #ffffff;
  
}

.illustration-img {
width: 100%;
max-width: 580px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid var(--mid-night);
  border-radius: 20px;
  min-height: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
}

.form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 16px;
}

.form-control {
  border: 2px solid var(--mid-night) !important;
  border-radius: 10px !important;
  padding: 10px 16px;
  font-size: 16px;
  background-color: #f8f9fa;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  background-color: #ffffff;
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-custom {
  
  background-color: var(--mid-night);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  padding: 12px 40px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(94, 120, 236, 0.4);
  background-color: var(--sky);
  color: #f8f9fa;
}

@media (max-width: 991px) {
  .main-section {
    padding: 40px 0;
  }

 .main-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .content-row {
    flex-direction: column;
  }

  .illustration {
    padding: 20px;
  }

  .form {
    min-height: auto;
  }

  .form-container {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 28px;
  }

  .form-container {
    padding: 25px 15px;
  }

  .illustration {
    padding: 20px;
  }

  .btn-custom {
    padding: 10px 30px;
    font-size: 1rem;
  }
}
@media (max-width: 489px) {
  h2 {
    font-size: 28px;
  }

.illustration {
    padding: 20px;
  }


  .form-container {
    padding: 25px 15px;
  }

  .btn-custom {
    padding: 10px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  h2 {
    font-size: 28px;
  }

  .form-container {
    padding: 25px 15px;
  }

  .btn-custom {
    padding: 10px 30px;
    font-size: 1rem;
  }
}
/* from end */

/* connect start */

.connect {
  background: #0c0c0c;
padding-top: 80px !important;
}

.c-heading {
  font-weight: 600;
  font-size: 38px;
  line-height: 1.4;
  max-width: 500px;
}

.contact-item-two i{
  color: #fb0303;
  transition: all 0.3s ease;
}
.contact-item-two a{
  color: #f8f9fa;
}
.contact-item i {
  color: #fcf6f6;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  color: var(--sky);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

.contact-item:hover i {
  color: var(--sky);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
} 
.connect .contact-item a[href^="tel"],
.connect .contact-item a[href^="mailto"] {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.connect .contact-item a[href^="tel"]:hover,
.connect .contact-item a[href^="mailto"]:hover {
  color: var(--sky);
}

.connect .contact-item a[href^="tel"] i,
.connect .contact-item a[href^="mailto"] i {
  margin-right: 8px;
  color: var(--sky);
}

@media (max-width:1024px) {
  .c-heading{
    font-size: 32px;
  }
}
@media (max-width:992px) {
  .c-heading{
    font-size: 28px;
  }
}
/* connect end */

/* footer start */

    .footer_section {
      background-color: var(--black);
      color: white;
      padding: 60px 0 20px;
    }

    .footer-row {
      align-items: stretch;
    }

    .footer-col {
      margin-bottom: 20px;
    }

    .footer-logo img {
      max-width: 120px;
      width: 100%;
      margin-bottom: 12px;
    }

    .footer-tagline {
      font-size: 16px;
      color: #ddd;
      line-height: 1.4;
      margin: 0;
      font-weight: 400;
    }
    .footer-tagline span {
      color: var(--sky);
      font-size: 18px;
      font-weight: 600;
    }

    .footer-heading {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #fff;
    }

.footer-col a[href^="tel"],
.footer-col a[href^="mailto"] {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-col a[href^="tel"]:hover,
.footer-col a[href^="mailto"]:hover {
  color: var(--sky);
}

.footer-col a[href^="tel"] i,
.footer-col a[href^="mailto"] i {
  margin-right: 8px;
  color: var(--sky);
}


    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 8px;
    }
    .footer-links a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      transition: color .2s ease;
    }
    .footer-links a:hover {
      color: var(--sky);
    }

    .footer-right {
      background: #3d3738;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .footer-contact-form {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .footer-contact-form .form-control {
      background: #fff;
      color: #222;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 4px;
      padding: 10px 12px;
    }
    .footer-contact-form .form-control::placeholder { 
      color: #666; 
    }

    .footer-contact-form .form-control:focus {
      box-shadow: none;
      border-color: #00c4ff;
    }

    .footer-contact-form textarea {
      flex-grow: 1;
      min-height: 100px;
    }

    .footer-contact-form .btn {
      border-radius: 6px;
      padding: 10px 14px;
      font-weight: 600;
    }

    .footer-right .btn {
      background-color: var(--sky);
    }
    .footer-right .btn:hover {
      background-color: #007bff;
    }

    .footer-social-icons {
      display: flex;
      justify-content: flex-start;
      margin: 22px 0;
      gap: 8px;
    }
    .social-icon-group {
      width: 35px;
      height: 35px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .footer-social-icons a {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
    }
    .social-icon-group:hover {
      background: var(--sky);
    }
    .social-icon-group:hover a {
      color: #000;
    }

    @media (max-width: 767.98px) {
      .footer-right {
        margin-top: 12px;
      }
      .footer-heading.ms-5,
      .footer-links.ms-5 {
        margin-left: 0 !important;
      }
      .footer-heading.me-5,
      .footer-links.me-5 {
        margin-right: 0 !important;
      }
    }
/* footer end */