.contact-section {
    
    padding : 10px;
    margin-top : 10px;
    
}


.contact-section .contact-info {
    background : white;
    border-radius : 5px;
    padding : 40px;
    margin-top : 10px;
    height : 100%;
}

.contact-info .contact-info-title {
    padding-bottom  : 5px;
    border-bottom : 5px solid var(--main-color);
}

.contact-item {
    display: flex;          /* Row layout banayega */
    align-items: center;    /* Vertical center */
    gap: 15px;              /* Icon aur text ke darmiyan space */
    margin-bottom: 15px;
}

.contact-icon {
    flex: 0 0 40px;         /* Fixed width rakhi icon ki */
    font-size: 24px;        /* Icon ka size */
    color : var(--main-color);
    background : #e5f0f1;
    clip-path : circle();
    padding : 10px;
    text-align: center;
}

.contact-text {
    flex: 1;                /* Baqi ka space text ko milega */
}

.contact-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight : bold;
}

.contact-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}





/*Contact form style*/

.contact-info {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .contact-info h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #006e78;
            color: var(--dark-color);
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            max-width: 300px; /* ya jitna width chahiye */
            overflow: hidden; /* container ke andar content cut ho sakta hai */
            white-space: normal; /* allows wrapping */
            word-break: normal; /* words break na ho beech mein */
        }

        
        .contact-icon {
            font-size: 1.5rem;
            color: #006e78;
            margin-right: 15px;
            width: 40px;
            height: 40px;
            background-color: rgba(0,110,120,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .contact-text p {
            color: #666;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .contact-form h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #006e78;
            color: var(--dark-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #006e78;
            box-shadow: 0 0 0 3px rgba(0,110,120,0.1);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: #006e78;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }