/* Home Styles */

section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.row {
    display: flex;
    width: 100%;
	max-width: 1440px;
    align-items: center; /* Center content vertically */
}

.column {
    flex: 1;
}

.full-column {
	padding: 50px 0;
}

.left-column {
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 50px 75px 50px 50px;
}

.left-column img {
    max-width: 100%;
    height: auto;
}

.right-column {
    padding: 50px 50px 50px 75px;
}

.dot-slider {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
	flex-direction: column;
    gap: 15px;
	z-index: 1100; /* Ensure the dots are in front of the footer */
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s, border 0.3s;
}

.dot.active {
    background-color: #3498db; /* Active dot color */
}

.dot:hover {
    background-color: #2980b9; /* Hover effect */
}

#intro .heading {
	margin-bottom: 30px;
}

#intro .button {
	display: inline-block;
	margin-top: 20px;
	background-color: #474747;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 8px;
	text-decoration: none;
}

#intro .button:hover {
	background-color: #9c9c9c;
}

#what-i-do .heading {
	padding-left: 50px;
	margin-bottom: 30px;
}

#what-i-do .service-slider-wrapper {
    position: relative;
    max-width: 1440px;
	width: 100%;
    padding: 0 0 50px 50px;
	overflow: visible; /* Hide anything outside the slider's boundaries */
    cursor: grab; /* Set default cursor as 'grab' */
}

#what-i-do .service-slider {
    display: flex;
    gap: 25px; /* Space between each service item */
    transition: transform 0.3s ease; /* Smooth transition for sliding */
}

#what-i-do .service-item {
    flex-shrink: 0;
    width: 205px; /* Width of each service item */
	height: auto;
    padding: 40px 40px 50px 40px;
    border-radius: 15px;
    text-align: center;
    background-color: #f2f3f4;
}

#what-i-do .service-icon img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 25px;
}

#what-i-do .service-title {
    margin-top: 15px;
	margin-bottom: 10px;
	color: #2b2b2b;
}

#what-i-do .service-subtitle span {
    padding: 4px 10px;
    background-color: transparent;
    border: 1px solid #7f7f7f;
	border-radius: 5px;
    margin-right: 5px;
    color: #2b2b2b;
}

#what-i-do .service-subtitle span:last-child {
	margin-right: 0;
}

#what-i-do .service-excerpt {
    color: #2b2b2b;
    margin-bottom: 35px;
}

#what-i-do .service-button {
    background-color: #7f7f7f;
    color: #ffffff;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
	text-decoration: none;
}

#what-i-do .service-button:hover {
	background-color: #9c9c9c;
}

#what-i-do .slider-controls {
    position: absolute;
    top: -70px;
    right: 100px;
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: flex-end;
	gap: 15px;
}

#what-i-do .prev-btn, #what-i-do .next-btn {
    background-color: #474747;
    color: #ffffff;
    padding: 12px 22px;
    border: none;
	cursor: pointer;
    border-radius: 8px;
}

#what-i-do .prev-btn:hover, #what-i-do .next-btn:hover {
    background-color: #9c9c9c;
}

#what-i-do .prev-btn:disabled, #what-i-do .next-btn:disabled {
    background-color: #ccc; /* Gray color for disabled state */
    cursor: not-allowed;
}


#form .form {
	background-color: #f2f3f4; 
	border-radius: 15px;
	color: #2b2b2b;
	padding: 40px 70px;
}

#form .form .heading {
	margin-bottom: 30px;
}

#form {
	margin: 0 !important;
}

#form .forminator-row {
	margin-bottom: 20px !important;
}

#form .forminator-row.forminator-row-last {
	margin-bottom: 0 !important;
}

#form .forminator-row:nth-child(4) {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
  	gap: 20px;
}

#form .select2.select2-container.forminator-select, #form .forminator-input, #form .forminator-textarea {
	background-color: transparent;
	color: #2b2b2b;
	border: 1px solid #7f7f7f;
	border-radius: 5px !important;
	padding: 10px !important;
}

#form .forminator-select .select2-selection {
	background-color: transparent !important;
	border-color: transparent !important;
}

#form .forminator-select .select2-selection__rendered, #form .forminator-select .select2-selection__arrow, #form .forminator-select .select2-results__option--selectable {
	color: #2b2b2b !important;
}

#form .forminator-select .select2-selection__rendered {
	padding: 0 !important;
}

#form .forminator-select .select2-selection__arrow {
	width: 20px !important;
	height: 20px !important;
}

#form .forminator-select .forminator-select-dropdown {
	background-color: #d4d4d4 !important;
	border-radius: 5px !important;
}

#form .forminator-select .forminator-select-dropdown.forminator-select-dropdown--above {
	margin-bottom: 5px !important;
	background-color: #f2f3f4 !important;
	border-color: #d4d4d4 !important;
	padding: 0 !important;
}

#form .forminator-select .forminator-select-dropdown.forminator-select-dropdown--below {
	margin-top: 5px !important;
	background-color: #f2f3f4 !important;
	border-color: #7f7f7f !important;
	padding: 0 !important;
}

#form .forminator-select .select2-selection.select2-selection--single:focus, #form .forminator-select .select2-results__option--highlighted, #form .forminator-input:focus, #form .forminator-textarea:focus {
	outline: none !important;
}

#form .forminator-select .select2-results__option--highlighted:first-child {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

#form .forminator-select .select2-results__option--highlighted:last-child {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

#form .forminator-select .select2-results__option--selected, #form .forminator-select .select2-results__option--highlighted {
	background-color: #7f7f7f !important;
	color: #ffffff !important;
}

#form .select2-container.forminator-select {
	border-bottom: none;
}

#form .forminator-field-email {
	padding-right: 0 !important;
	margin-bottom: 0 !important;
}

#form .forminator-field-phone {
	padding-left: 0 !important;	
}

#form .forminator-field-textarea .forminator-description {
	margin-top: -18px !important;
}

#form .forminator-textarea {
	height: 120px
}

#form .forminator-success {
	padding: 14px 12px !important;
}

#form .forminator-loading {
	background-color: #d4d4d4 !important;
	padding: 14px 12px 14px 46px !important;
}

#form .forminator-loading::before {
	top: 15px !important;
}

#form .forminator-error-message, #form .forminator-success, #form .forminator-loading {
	color: #2b2b2b !important;
	border-radius: 5px !important;
	box-shadow: none !important;
}

#form .forminator-button {
	background-color: #7f7f7f;
	color: #ffffff;
	padding: 12px 22px !important;
	border-radius: 8px !important;
}

#form .forminator-button:hover {
	box-shadow: none !important;
	background-color: #9c9c9c;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}
