
        :root {
            --primary-color: #00a8e8;
            --dark-bg: #1a1a2e;
            --light-bg: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
       
.banner-section{
    position: relative;
        
}
.banner-overlay{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
   background: linear-gradient(97deg, rgba(0, 0, 0, 0.00) 50.48%, #000 103.94%), linear-gradient(0deg, rgba(0, 0, 0, 0.00) 57.08%, #000 100%);

}
.banner-img{
   height: 100%;
   object-fit: cover;
   min-height: 285px;
}
      
        
       
      
        
        
        /* Contact Section */
        .contact-section {
            /* margin-top: -80px;
            position: relative;
            z-index: 10; */
        }
        
        .contact-card {
            background: white;
            border-radius: 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 2.6rem;
            border-top: 4px solid #FFA008;
            border-radius: 5px;
background: #FFFFFE;
box-shadow: 0 2px 5px 0 rgba(169, 169, 169, 0.25);
border-bottom: 4px solid #3A3A3A;
        }
        
        .banner-text {
        color: #fff;
    margin-bottom: 3rem;
  
      font-family: LeagueSpartan-Medium;
    font-size: 33.4px;
    font-style: normal;
    /* font-weight: 600; */
    line-height: normal;
    text-transform: uppercase;

        }
        .banner-text-content{
            position: absolute;
            bottom: 16%;
            left: 8%;
            z-index: 1;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
          margin-bottom: 1.2rem;
        }
        
        .contact-icon {
            width: 45px;
            height: 45px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        margin-right: 0.8rem;
            flex-shrink: 0;
        }
        
        .contact-icon i {
          font-size: 1.2rem;

            color: var(--dark-bg);
        }
        
        .contact-info-text {
     
            line-height: 1.6;
            color: #2A2A2A;
    font-family: LeagueSpartan-Light;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 126.5%; /* 18.975px */
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
               margin-top: 1.2rem;
        }
        
        .social-icon {
            width: 34px;
    height: 34px;

            border: 1px solid #797979;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-bg);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: var(--dark-bg);
            color: white;
            border-color: var(--dark-bg);
        }
        .social-icon:hover img{
            filter: invert(99%) sepia(41%) saturate(0%) hue-rotate(97deg) brightness(110%) contrast(100%);
        }
        
        /* Form Styles */
        .form-label {
        
            margin-bottom: 0.25rem;
            color: #2A2A2A;
    font-family: LeagueSpartan-Regular;
    font-size: 16px;

font-style: normal;
font-weight: 400;
    line-height: normal;
        }
        
        .form-control,
        .form-select {
            border: none;
            border-bottom: 2px solid #ddd;
            border-radius: 0;
               padding: 0.25rem 0;
              font-size: 16px;

            transition: all 0.3s;
        }
        
        .form-control:focus,
        .form-select:focus {
            box-shadow: none;
            border-bottom-color: var(--primary-color);
        }
        
        textarea.form-control {
            resize: none;
            min-height: 58px;
        }
        
        .phone-input-group {
            display: flex;
            gap: 1rem;
        }
        
        .country-code {
            width: 80px;
        }
        
        .form-check-input {
            cursor: pointer;
        }
        
        .form-check-label {
            cursor: pointer;
            color: #666;
        }
        .captcha-input {
    border-width: 0px 0px 1px 0px;
    border-radius: 0px;
    width: 42px;
    text-align: center;
    outline: 0px;
}
        .btn-submit {
           
    background: #2A2A2A;
    color: white;
    padding: 9px 15px 7px;
    border: none;
    border-radius: 0;
    font-family: LeagueSpartan-Medium;
    font-size: 17px;
    transition: all 0.3s;
  
    border-radius: 10.446px;

    line-height: 14px;

        }
        .error{
            font-size: 12px;
            color: red;
        }
        
        .btn-submit:hover {
            background: #100f0f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
        }

        input[type="file"]::file-selector-button {
  border: none;
  outline: none;

}
        
        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 2rem 0;
            margin-top: 4rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin-left: 2rem;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }

 
        @media (min-width:768px){
            .banner-img{
                min-height: 280px;
            }
        }
         
   @media(min-width:1200px){
    .banner-img{
        min-height: 316px;
    }
   }

   