@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

body {
    font-family: 'Google Sans', sans-serif !important;
    color: #444;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.hero-bg {
    background: linear-gradient(135deg, #108a8a 0%, #0d7171 100%);
    background-image: url('https://www.transparenttextures.com/patterns/circuit-board.png'), linear-gradient(135deg, #108a8a 0%, #0d7171 100%);
}

nav.scrolled {
    background-color: rgba(13, 113, 113, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.quick-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.quick-links li {
    margin: 0;
    width: 40%;
    padding-bottom: 10px;
}

.social-icons i {
    color: #4E0672;
    background: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
    transition: all 0.3s ease-in-out;
}

.social-icons i:hover {
    color: #fff;
    background: #390454;
    box-shadow: 0 4px 12px rgba(78, 6, 114, 0.3);
    transition: all 0.3s ease-in-out;
}

.projects {
    background-image: url(../images/overlay.png);
    background-repeat: repeat-x;
    background-position: 0 bottom;
    background-color: #108a8a;
    padding: 0 20px 100px 20px;
}

#projects-carousel .owl-nav {
    position: absolute;
    top: -73px;
    right: 0;
}

#projects-carousel .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project_bg {
    background: url(../images/project-bg.png) no-repeat center 0;
    background-size: contain;
}

.project_description {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 30px;
    border-radius: 0 10px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.project_description span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
}

/* Input Styles */
input, select, textarea {
    padding: 12px 15px !important;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background-color: #f8fafc;
    font-size: 15px;
    color: #2d3748;
    outline: none;
	width:100%;
	box-sizing:border-box;
}
textarea{
	resize:none !important;
}

input::placeholder, textarea::placeholder {
    color: #a0aec0;
}

input:focus, select:focus, textarea:focus {
    border-color: #1abc9c;
}

/* Specific to Select dropdown */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

/* Button Styles */
.submit-btn {
    width: 100%;
    background-color: #1abc9c; /* Teal color from image */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #16a085;
}
.contact-form br{
	display:none;
}
.newsletter input[type=submit] {
	font-size: 1rem;
    line-height: 1.5rem;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
	border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
	color: rgb(78 6 114 / var(--tw-text-opacity, 1));
	padding: 14px 12px 13px !important
}
.newsletter input[type=submit]:hover{
	background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.newsletter input[type=submit]:before {
    content: "\f1d8";
	font-size: 1.5rem;
    line-height: 2rem;
	font-family: "Font Awesome 6 Free";
    font-weight: 400;
}
/* Responsive adjustment */
@media (max-width: 600px) {
    .row {
        flex-direction: column;
        gap: 0;
    }
}