

        
        .contact-us-wrapper {
            background-image:url('../../assets/images/contactusbg.png');
            background-repeat: no-repeat;
            background-size: cover;
            color: #333;
            line-height: 1.6;
            padding: 110px 0px;
        }
        
  
        
        .contact-us-wrapper header {
            text-align: center;
            margin-bottom:34px;
            color:#fff !important;
        }
        
        .contact-us-wrapper h1 {
            font-size: 2.5rem;
             color:#fff !important;
            margin-bottom: 10px;
        }
        
        .contact-us-wrapper .content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: center;
        }
        
        .contact-us-wrapper .contact-form {
            flex: 1;
            min-width: 300px;
            background: #131B2C;
            color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
}
        
        .contact-us-wrapper .form-group {
            margin-bottom: 20px;
        }
        
        .contact-us-wrapper label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #fff;
        }
        
        .contact-us-wrapper input, textarea {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            background: #192335;
            border: 1px solid #bfbfbf33;
            color:#fff;
        }
        
        .contact-us-wrapper textarea {
            min-height: 120px;
            resize: vertical;
        }
        
    .contact-us-wrapper button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 0px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 21px;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 26%;
}
        
        .contact-us-wrapper button:hover {
            background-color: #2980b9;
        }
        
        .contact-us-wrapper .contact-info-1 {
          display: flex;
          flex-direction: column;
          background: #131B2C;
          border-radius:12px ;
          -webkit-border-radius:12px ;
          -moz-border-radius:12px ;
          -ms-border-radius:12px ;
          -o-border-radius:12px ;
}
        
        .contact-us-wrapper .info-card {
            background:unset;
            padding: 25px;
            border-radius: 10px;
            display: grid;
            grid-template-columns: 1fr 2fr;;
            gap:25px;
        }
        
        .contact-us-wrapper .info-card h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .contact-us-wrapper .info-card p {
            margin-bottom: 5px;
            color: #fff;
        }
        
        .contact-us-wrapper .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            justify-content: space-around;
        }
        
        .contact-us-wrapper .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 50px;
            background-color: #3498db;
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-size: 18px;
            transition: transform 0.3s, background-color 0.3s;
            -webkit-transition: transform 0.3s, background-color 0.3s;
            -moz-transition: transform 0.3s, background-color 0.3s;
            -ms-transition: transform 0.3s, background-color 0.3s;
            -o-transition: transform 0.3s, background-color 0.3s;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            -ms-border-radius: 8px;
            -o-border-radius: 8px;
}
        
        .contact-us-wrapper .social-icons a:hover {
            transform: translateY(-3px);
            background-color: #2980b9;
        }
        
        .contact-us-wrapper footer {
            text-align: center;
            padding: 30px 0;
            margin-top: 40px;
            color: #7f8c8d;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-us-wrapper .content {
                flex-direction: column;
            }
            
            .contact-us-wrapper h1 {
                font-size: 2rem;
            }
            
            .contact-form, .contact-info-1 {
                width: 100%;
            }
            
            .contact-us-wrapper .social-icons {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .contact-us-wrapper h1 {
                font-size: 1.8rem;
            }
            
            .contact-us-wrapper .contact-form,.contact-us-wrapper  .info-card {
                padding: 20px;
            }
        }

        .info-card-social{
            background:#131B2C;
            color:#fff;
            text-align: center;
            padding:20px;
            border-radius: 10px;
}