        :root {
            --primary-color: #a5a5a5;
            --primary-dark: #8a8a8a;
            --light-bg: #f8f9fa;
            --card-bg: #ffffff;
            --text-dark: #333333;
            --text-light: #666666;
            --border-light: #e0e0e0;
            --shadow-color: rgba(165, 165, 165, 0.15);
            --gradient: linear-gradient(135deg, #a5a5a5 0%, #c2c2c2 100%);
        }
        
        .contact-section {
            background-color: var(--light-bg);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }
        
     
        
        .contact-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .contact-title {
            color: var(--text-dark);
            letter-spacing: 4px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-size: 2rem;
            text-transform: uppercase;font-family: "Michroma", sans-serif;
        }
        
        .contact-title::before,
        .contact-title::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
            top: 50%;
            transform: translateY(-50%);
        }
        
        .contact-title::before {
            left: -60px;
        }
        
        .contact-title::after {
            right: -60px;
        }
        
        .contact-subtitle {
            color: var(--text-light);
            font-size: 1.2rem;
            max-width: 650px;
            margin: 0px auto 0;
            line-height: 1.8;
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        
        .contact-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            border: 1px solid var(--border-light);
            padding: 50px;
            box-shadow: 0 25px 50px var(--shadow-color);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #232323;
            z-index: 2;
        }
        
 
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            padding: 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
            background: linear-gradient(to right, transparent, rgba(165, 165, 165, 0.03));
            border-left: 4px solid transparent;
        }
        
     
        
        .info-icon-wrapper {
            background: #232323;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(165, 165, 165, 0.2);
            transition: all 0.3s ease;
        }
        
    
        .info-icon {
            color: white;
            font-size: 1.6rem;
        }
        
        .info-content h5 {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }
        
        .info-content p {
            color: var(--text-light);
            margin: 0;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        .form-control-custom {
            border: 2px solid var(--border-light);
            border-radius: 12px;
            padding: 16px 20px;
            font-size: 1.05rem;
            color: var(--text-dark);
            background-color: var(--card-bg);
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
        }
        
        .form-control-custom::placeholder {
            color: #aaa;
            font-weight: 300;
        }
        
        .form-control-custom:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(165, 165, 165, 0.15), inset 0 2px 5px rgba(0,0,0,0.02);
            transform: translateY(-2px);
        }
        
        .form-label-custom {
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 12px;
            font-size: 1rem;
            letter-spacing: 0.5px;
            display: block;
            position: relative;
            padding-left: 10px;
        }
        
        .form-label-custom::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 16px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .btn-custom {
            background: #232323;
            border: none;
            color: white;
            padding: 18px 40px;
            border-radius: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            width: 100%;
            font-size: 1.1rem;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
    
        
        .btn-custom:hover {
            transform: translateY(-5px);
            letter-spacing: 2px; background: #232323;            color: white;

        }
   
       

  
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .contact-title::before,
            .contact-title::after {
                width: 30px;
            }
            
            .contact-title::before {
                left: -50px;
            }
            
            .contact-title::after {
                right: -50px;
            }
        }
        
        @media (max-width: 992px) {
            .contact-title::before,
            .contact-title::after {
                display: none;
            }
            
            .contact-card {
                padding: 40px 30px;
            }
            
    
            
         
        }
        
        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }
            

            
            .contact-subtitle {
                font-size: 1.1rem;
            }
            
            .contact-card {
                padding: 30px 25px;
            }
            

            .btn-custom {
                padding: 16px 30px;
            }
            
          
        }
        
        @media (max-width: 576px) {


            
            .contact-subtitle {
                font-size: 1rem;
            }
            
            .contact-card {
                padding: 25px 20px;
                border-radius: 15px;
            }
            
            .info-icon-wrapper {
                width: 55px;
                height: 55px;
                margin-right: 15px;
            }
            
            .info-icon {
                font-size: 1.2rem;
            }
            
            .form-control-custom {
                padding: 14px 16px;
            }
        }
        /* responsive */
        @media screen and (max-width:1400px) {

        }
        @media screen and (min-width:1200px) and   (max-width:1399.98px) {
   .info-content p {
    font-size: 14px;line-height: 1.5;
}
.contact-info-item {
    margin-bottom: 12px;
    padding: 12px 12px 12px 0px;
    background: transparent;
}
.info-content h5 {
    margin-bottom: 5px;
}
.info-icon {
    font-size: 1.1rem;
}
.info-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}
        }
        @media screen and (min-width:992px) and   (max-width:1199.98px) {
.info-content p {
    font-size: 14px;line-height: 1.5;
}
.contact-info-item {
    margin-bottom: 12px;
    padding: 12px 12px 12px 0px;
    background: transparent;
}
.info-content h5 {
    margin-bottom: 5px;
}
.info-icon {
    font-size: 1.1rem;
}
.info-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-right: 12px;
}
        }
        @media screen  and (min-width:768px) and (max-width:991.98px) {

        }
        @media screen and (min-width:576px) and (max-width:767.98px) {
    .contact-title {
    margin-bottom: 0px;
    font-size: 20px;
}
            .contact-section {
                padding: 30px 0;
            }
            .contact-header {
    margin-bottom: 30px;
}

        }
        @media screen  and (min-width:381px) and (max-width:575.98px){
    .contact-title {
    margin-bottom: 0px;
    font-size: 16px;
}
            .contact-section {
                padding: 30px 0;
            }
            .contact-header {
    margin-bottom: 30px;
}
.info-content p {
    font-size: 14px;line-height: 1.5;
}
.contact-info-item {
    margin-bottom: 12px;
    padding: 12px;
    background: transparent;
}
.info-content h5 {
    margin-bottom: 5px;
}
        }
        @media screen and (min-width:320px) and (max-width:380.98px) {
 .contact-title {
    margin-bottom: 0px;
    font-size: 16px;
}
            .contact-section {
                padding: 30px 0;
            }
            .contact-header {
    margin-bottom: 30px;
}
.info-content p {
    font-size: 14px;line-height: 1.5;
}
.contact-info-item {
    margin-bottom: 12px;
    padding: 12px;
    background: transparent;
}
.info-content h5 {
    margin-bottom: 5px;
}
        }