/* CSS Variables */
 
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 

:root {
    --main-color1: #f96e40;
    --main-color2: #b61e66;
    --main-color3: #53286b;
    --color-white: #fff;
    --color-black: #000;
     --gradient: linear-gradient(97deg, #f96e40, #b61e66, #53286b);
  }

  
  /* Global Styles */
  * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
     font-family: "Poppins", sans-serif;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    resize: none;
    cursor: pointer;
    scroll-behavior: unset;
  }
  .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    line-height: auto !important;
  }
  .logo{
  width: 135px;
}
  /* Container */
  .custom-container {
    max-width: 100%;
    max-width: calc(100% - 150px);
    margin: 0 auto;
    padding: 0 20px;
  }
  
  @media (min-width: 1400px) {
    .custom-container {
      max-width: 1000px;
    }
  }
  @media (max-width: 1400px) {
    .custom-container {
      max-width: 1000px;
    }
  }
  @media (max-width: 1200px) {
    .custom-container {
      max-width: 1100px;
    }
  }
  @media (max-width: 992px) {
    .custom-container {
      max-width: 960px;
    }
  }
  @media (max-width: 768px) {
    .custom-container {
      max-width: 720px;
    }
  }
  
  /* Object Fit */
  .object-fit {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  
  /* Section Spacing */
  .section-space {
    padding: 100px 0;
  }
  
  .section-title {
    font-size: clamp(32px, 5vw, 60px);
    margin-bottom: 50px;
  }
  .section-para{
    font-size: clamp(16px, 2vw, 20px);
    color: #5d5d5d;
    margin-bottom: 20px;
  }
   .section-para2{
    font-size: clamp(16px, 2.3vw, 23px);
    color: #5d5d5d;
    margin-bottom: 20px;
  }

  .main-color {
    color: var(--main-color-text) !important;
  }
  .bg-main {
    background-color: var(--main-color);
  }
  
  .dot-list li {
    list-style: disc;
    margin: 7px 0;
  }
  
  /* Buttons */
  .btn {
    padding: 6px 20px;
    border-radius: 25px;
    background-color: var(--bg-colour);
    color: var(--text-colour);
    border: none;
    font-size: 14px;
    font-family: "Gilroy-Light", Arial, sans-serif !important;
  }
  
 .black-btn {
   --btn-color: #000000;
   --text-color:#ffffff;
   --key-color: #f8f9fa;
}
.white-btn {
    --btn-color: #ffffff;
    --text-color:#000000;
    --key-color: #000000;
}

.btn-main {
        background-color: transparent;
    border: 1px solid black;
    border-radius: 0;
    box-sizing: border-box;
    color: var(--btn-color);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    padding: 15px 30px;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    min-width: 180px;
    max-width: 200px;
    text-decoration: none;
    z-index: 10;
   
}
.btn-main .text{
    position: relative;
    z-index: 10;

}

.btn-main svg, .btn-transparent i {
    margin-left: 10px;
    transition: transform 0.6s ease-in-out;
    position: relative;
    fill: var(--btn-color);
    z-index: 10;
}
.btn-main.btn-transparent{
  
    background: transparent;
    padding: 10px 20px;
    font-weight: 400;
    justify-content: flex-start;

}

.btn-main.btn-transparent::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 1;
    transition: transform 0.4s ease-in-out;
    transform: scaleX(0);
    transform-origin: right;
}
.btn-main.btn-transparent:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

.btn-main.btn-transparent:hover{
  color: white;
}





.btn-main:hover svg {
    transform: translateX(10px);
    fill: white;
}
.btn-gradient{
  background: var(--main-color3);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    display: block;
    min-width: 110px;
}

.btn-gradient:hover{
  background: var(--main-color2) !important;
  color: white !important;
   
}
.btn-borderd{
  border: 1px solid #1e5e99;
    color: #1e5e99;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    min-width: 110px;
}


  
  /* Common CSS */
  img {
    width: 100%;
  }
  a {
    text-decoration: none;
  }
  .bg-2 {
    background-color: #000;
  }
  
  /* Flex Utilities */
  .flex-center-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-between-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-center-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-center-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  /* List */
  ul {
    padding-left: 0;
  }
  
  /* Font Weights */
  .fw-1 {
    font-weight: 100;
  }
  .fw-2 {
    font-weight: 200;
  }
  .fw-3 {
    font-weight: 300;
  }
  .fw-4 {
    font-weight: 400;
  }
  .fw-5 {
    font-weight: 500;
  }
  .fw-6 {
    font-weight: 600;
  }
  .fw-7 {
    font-weight: 700;
  }
  .fw-8 {
    font-weight: 800;
  }
  .fw-9 {
    font-weight: 900;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .section-space {
      padding: 40px 0;
    }
  }
  




  