body {
    background-color: #ffffff;
      font-family: 'Poppins',"Segoe UI";
    overflow-x: hidden;
}

.container {
    padding: 0 20px;
    max-width: 1440px;

}
          .logo1{
  width: 170px;
  height:60px;
}


.contact-header {
    text-align: center;
    /* margin-top: 40px; */
    background: #23283A;
width: 100%;
color: white;
padding: 100px 0px;

}

.contact-header h1 {
    font-weight: bold;
    margin-bottom: 10px;
}

.form-container {
    padding: 20px;
}

.contact-section {
    padding: 40px 0;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

.form-control {
    border-radius: 6px;
    height: 48px;
}

textarea.form-control {
    height: 150px;
}

/* footer section ===============================  */
.footer-custom {
    background: #23283A;
    color: #ecf0f9;
    padding-top: 60px;
    padding-bottom: 18px;
    font-size: 1rem;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==== Main content: Desktop ==== */
.footer-main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Remove all flex: 1 1 ... from main sections */
.footer-logo-section,
.footer-services,
.footer-contact,
.footer-social,
.footer-nav {
    min-width: 180px;
    /* Only use min-width, let flexbox size naturally */
    width: auto;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 2px;
}

.footer-tagline {
    font-size: 1.02rem;
    color: #89cef7;
    letter-spacing: 0.6px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-link {
    color: #a8cdfb;
    text-decoration: none;
    transition: color 0.18s;
    font-weight: 600;
}

.footer-link:hover {
    color: #3898ec;
}
.text-danger1{
    font-size: x-large;
}
.footer-title {
    font-size: 1.07rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-services ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 7px;
    color: #d0e5fb;
}

.footer-contact div {
    margin-bottom: 7px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;

}
.contact-header p{
    font-size: x-large;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.footer-social-icon {
    color: #fff;
    border-radius: 20%;
    padding: 8px;
    font-size: 1.12rem;
    margin-right: 8px;
    display: inline-block;
    transition: background 0.2s;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: center;
    align-items: center;

}

.footer-image {
    width: 40px;
    height: 40px;
}

.footer-bottom {
    border-top: 1px solid #394164;
    padding-top: 10px;
    text-align: center;
    color: #a1b7db;
    font-size: 0.97rem;
    margin-top: 32px;
}

/* ======= Responsive: Tablet & Mobile ======= */
@media (max-width: 900px) {
    .footer-main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 0 12px;
    }
          .logo1{
  width: 120px;
  height:40px;
}

    .footer-logo-section,
    .footer-services,
    .footer-contact,
    .footer-social,
    .footer-nav {
        min-width: 0;
        width: 100%;
        margin-bottom: 8px;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
    }

    .footer-nav {
        flex-direction: row;
        gap: 16px;
        margin: 7px 0 13px 0;
    }

    .footer-social {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .footer-main-content {
        padding: 0 5px;
        gap: 6px;
    }
          .logo1{
  width: 120px;
  height:40px;
}
.logolite{
  width: 200px;
  height: 70px;
}
    .footer-logo-section,
    .footer-services,
    .footer-contact,
    .footer-social,
    .footer-nav {
        min-width: 0;
        width: 100%;
        margin-bottom: 4px;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
    }

    .footer-logo {
        font-size: 1.18rem;
        margin-bottom: 1px;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 5px;
        margin: 4px 0 8px 0;
    }

    .footer-social-icon {
        font-size: 1rem;
        padding: 6px;
    }

    .footer-bottom {
        font-size: 0.91rem;
        padding-top: 7px;
    }
}

.footer-main-content>* {
    box-sizing: border-box;
}

.footer-social {
    display: flex;
    flex-direction: column;
}


/* Always make sure box-sizing is border-box for consistent sizing */
*,
*:before,
*:after {
    box-sizing: border-box;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-custom {
    background: white;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 300;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 4px 10px rgba(150, 12, 12, 0.08);
}

/* mobile view responsive form ===========  */

@media (max-width: 576px) {
    .form-container {
        padding: 15px;
    }

    .form-container .form-control,
    .form-container textarea {
        font-size: 14px;
    }

    .form-container button {
        width: 100%;
    }
              .logo1{
  width: 120px;
  height:40px;
}
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;

}

.nav-link {
    font-weight: 500;
    margin-right: 10px;
    color: black;
    font-weight: 400;
}

.nav-link:hover {
    color: #195097 !important;
}

.active {
    color: #195097 !important;
    font-weight: 500;
}


/* mobile view ==============  */
@media (max-width: 576px) {


    /* .container,
  .contact-section,
  .contact-header {

  } */

          .logo1{
  width: 120px;
  height:40px;
}
    .form-container {
        padding: 15px;
    }

    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .col-md-6 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}