*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main: #ED2B12;
    --primary-color: #0E384C;
    --secondary-color: #EFF8FF;
    --text-color: #527282;
    --white-color: #FFFFFF;
    --dark-divider-color: #0E384C1A;
    --footer: #06182b;
  }
  
  body{
    /* overflow: hidden; */
  }
  html {
    scroll-behavior: smooth !important;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
     font-family: "Outfit", sans-serif;

  
  }
  
  p {
  font-family: "Outfit", sans-serif;

  }
  
  a {
    text-decoration: none;
  }

  a:hover {
    color: white; /* ya koi bhi custom color */
    text-decoration: none; /* agar underline bhi hatani ho */
}
  
/*-- ===================== FOOTER SECTION CSS ===================== --*/

footer {
  background: url(../images/footerr.webp);
    padding: 60px 20px 30px;
    background-color: #06182b;
  }
  
  footer .logo {
    width: 50%;
  }
  
  footer .logo img {
    background-color: #fff;
  }
  
  .footer-heading {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    color: #fff;
  }
  
  .footer-heading::before {
    position: absolute;
    content: '';
    width: 60px;
    height: 3px;
    background-color: red;
    bottom: -10px;
    left: 0;
  }
  
  .footer-link {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-link i {
    color: red;
    margin-right: 10px;
  }
  
  .footer-link span {
    transition: all 0.3s ease-out 0s;
  }
  
  .footer-link span:hover {
    text-decoration: underline;
    margin-left: 3px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
  }
  
  .icon-circle {
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }
  
  .icon-circle p {
    text-align: left;
  }
  
  .social-icons a {
    margin-left: 12px;
    text-decoration: none;
  }
  
  .social-icons .icon-circle {
    background-color: #fff;
    color: #000;
    transition: 0.3s;
  }
  
  .social-icons .icon-circle:hover {
    background-color: #ddd;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
  }
  
  .contact-item .icon-circle {
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .contact-item a {
    color: #fff;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
    text-decoration-color: red;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bbbbbb;
    margin-top: 40px;
  }
  
  .border-bottomm {
    border-bottom: 1px solid #6b6868 !important;
  }


  @media(max-width:991.5px){
    footer .logo img {
        width: 100%;
      }
    
      footer {
        padding: 60px 0px 30px;
      }

      
  footer .text-md-end {
    text-align: center !important;
  }

  footer  .d-md-flex {
    flex-direction: column !important;
    align-items: center !important;
  }

  footer .social-icons {
    justify-content: center !important;
  }
  footer .logo img {
    width: 200px;
  }
  }