/* Glass Card */
#contact-form {
    width:80%;
}

#contact-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.fcls { 
  font-family: 'Scope One', serif;
  font-weight: normal;
  font-size:1.5em;
  line-height:22px;
  text-align:justify;
  color:#000;
}

.himg { float: left; }

.headtxt { 
	margin-top:22px; 
	padding-left:90px;
}

.headtxt h2 { color:#EEE;}

@media (max-width: 575px) {
	.container { 
		max-width: 99% !important; 
	 }
	.himg { width:30%; }
	.headtxt { 			
		padding-left:50px;
	}
	.headtxt h2 { font-size: 20px; }
	.client-logo-section.pt-100 {
		padding-top: 120px;
	}
	.client-logo-section.mb-20 {
		margin-bottom: 0px;
	}
	.notice-cls {
		display: flex;
		flex-wrap: wrap;
	}	
	.notice-col {
		order: -1; 
		width: 100%;
		margin-bottom: 20px;
	}
}

@media (min-width: 576px) and (max-width: 991px) {		
	.container { 
		max-width: 99% !important; 
	 }
	.flexslider .slides img {
		padding-left: 10%;
	}
	.himg { 
		width:30%; 
	}
	.headtxt { 			
		padding-left:50px;
	}
	.headtxt h2 { font-size: 20px; }
	.client-logo-section.pt-100 {
		padding-top: 120px;
	}
	.client-logo-section.mb-20 {
		margin-bottom: 0px;
	}
	.notice-cls {
		display: flex;
		flex-wrap: wrap;
	}	
	.notice-col {
		order: -1; 
		width: 100%;
		margin-bottom: 20px;
	}
}

/* Inputs */
.form-group {
  position: relative;
  margin: 20px 0;
  width: 70%;
}

.form-group input {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  outline: none;
  background: #fff;
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #777;
  font-size: 16px;
  transition: 0.2s ease;
  pointer-events: none;
  background: #fff;
  padding: 0 5px;
}

/* When input is focused OR has value */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: #007bff;
}

.form-group textarea {
  width: 100%;
  min-height: 100px;
  padding: 16px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  outline: none;
  background: #fff;
  font-family: inherit;
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: #007bff;
}

.inputcls {
  width: 100%;
  padding: 6px;
  font-size: 16px;
  border: 1px solid #ccc;
  outline: none;
  background: #fff;
}

/* Button */
.submit-btn {
    width: 35%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: #fff;
    background:#069;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gst-grid {
  display: grid;
  grid-template-columns: 90% 10%;
  gap: 10px;
}

.gst-grid div {
  padding: 5px;
  text-align: left;
}

.grid-4 {
  display: grid;
  grid-template-columns: 8% 27% 23% 42%;
  gap: 10px;
}

.grid-4 div {
  padding: 5px;
  text-align: left;
}

.select2-container {
    width: 300px !important;
}

/* Dropdown options - no wrap */
.select2-container--default .select2-results__option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select2-container--default .select2-selection--single {
	width: 300px !important;
	padding: 5px;
	height: 35px;
}

/* Selected value - no wrap */
.select2-container .select2-selection--single {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0; /* remove gap */
  border: 0px solid #ccc;
}

.auto-grid div {
  border: 1px solid #ccc;
  padding: 5px;
}
