/*--------------------------------------------------------------
	Common
--------------------------------------------------------------*/
html {
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: scrollbar;
}

body {
    background-color: #ebf5fc;
    font: 400 14px/1.8 "Open Sans", sans-serif;
    color: #444; /* Improved text contrast */
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: #febd01; /* Added link color for better visibility */
}

a:hover {
    color: #ffcc33; /* Hover effect for links */
}

.button {
    color: #454545;
    background: transparent;
    border: 2px solid #454545;
    position: relative;
    padding: 0.5em 1em;
    margin: 1em;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-family: 'Comfortaa', sans-serif;
    font-weight: bold;
}

.button:before,
.button:after {
    content: '';
    display: block;
    position: absolute;
    border-color: #454545;
    box-sizing: border-box;
    border-style: solid;
    width: 1em;
    height: 1em;
    transition: all 0.3s ease-in-out;
}

.button:before {
    top: -6px;
    left: -6px;
    border-width: 2px 0 0 2px;
    z-index: 5;
}

.button:after {
    bottom: -6px;
    right: -6px;
    border-width: 0 2px 2px 0;
}

.button:hover:before,
.button:hover:after {
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-color: #fff;
}

.button:hover {
    color: #353535;
    background-color: #fff;
    border-color: #fff;
}

@media screen and (max-width: 480px) {
    .button {
        margin-left: 24%;
    }
}

/*--------------------------------------------------------------
    Homepage Start
--------------------------------------------------------------*/
.home-section {
    min-width: 100%;
    min-height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2)), url('../img/1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.subheading {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
    color: #febd01;
    letter-spacing: 4px;
}

.home-section h1 {
    font-size: 60px;
    font-weight: 800;
    color: #fff; /* Improved text contrast */
}

.home-section h2 {
    font-weight: 800;
    color: #fff; /* Improved text contrast */
}

.landing h2 span {
    color: #febd01;
}

.home-social-warp {
    position: absolute;
    height: 100%;
    right: 60px;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    color: #fff; /* Improved text contrast */
    font-size: 22px;
    text-decoration: none;
}

.home-social a:hover {
    color: #febd01; /* Hover effect for social icons */
    transition: ease-in;
}

@media only screen and (min-width: 992px) {
    .subheading {
        margin-top: 360px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .subheading {
        margin-top: 270px;
    }

    .home-social-warp {
        height: 0px;
        right: 0;
        top: 230px;
        width: 100%;
    }

    .home-social a {
        display: inline-flex;
        width: 40px;
        height: 40px;
        font-size: 25px;
        margin: 0 3px;
    }

    .land-text {
        bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .subheading {
        margin-top: 220px;
    }

    .home-social-warp {
        height: 60px;
        right: 0;
        top: 145px;
        width: 100%;
    }

    .home-social a {
        display: inline-flex;
        width: 40px;
        height: 40px;
        font-size: 24px;
        margin: 0 3px;
    }
}

/* About Me */
.about-me {
    padding: 100px 15px;
    background-color: #666; /* Kept background color */
}

.about-me .section-title {
    flex: 0 0 100%;
    max-width: 100%;
}

.about-me .section-title h1 {
    display: inline-block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff; /* Improved text contrast */
    margin: 0 0 10px;
    position: relative;
}

.about-me .section-title h1:before {
    content: '';
    left: 0;
    position: absolute;
    height: 2px;
    right: 30%;
    background-color: #febd01;
    bottom: 0px;
}

.about-me .section-title p {
    font-family: "Quicksand", Arial, sans-serif;
    color: #ddd; /* Improved text contrast */
}

.about-me .section-title p.small {
    display: block;
    font-size: 14px;
    color: #ccc; /* Improved text contrast */
    font-weight: 400;
    letter-spacing: 2px;
}

.about-me .about-content .row {
    display: flex;
}

.about-me .about-content .row .img {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.about-me .about-content .row .img img {
    width: 100%;
    height: auto;
    transform: rotateY(180deg);
}

@media screen and (max-width: 480px) {
    .about-me .about-content .row {
        flex-direction: column;
    }

    .about-me .about-content .row .img img {
        width: 400px;
    }

    .about-me .about-content .row .text {
        padding-top: 4%;
    }
}

.about-me .about-content .row .text {
    flex: 0 0 66.66%;
    max-width: 100%;
    padding-left: 16px;
}

.about-me .about-content .row .text h4 {
    font-size: 25px;
    font-weight: 600;
    font-family: "Playfair Display", Georgia, serif;
    margin: 0 0 5px;
    color: #fff; /* Improved text contrast */
}

.about-me .about-content .row .text h6 {
    font-size: 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    margin: 0 0 15px;
    color: #febd01; /* Improved text contrast */
    padding-top: 8px;
}

.about-me .about-content .row .text p {
    font-size: 15px;
    font-family: 'Comfortaa', sans-serif;
    letter-spacing: 1.2px;
    font-weight: 400;
    line-height: 24px;
    color: #ddd; /* Improved text contrast */
}

/* Portfolio */
.portfolio {
    padding: 100px 15px;
    background-color: #666; /* Kept background color */
}

.portfolio .section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 19%;
}

.portfolio .section-title h1 {
    display: inline-block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff; /* Improved text contrast */
    margin: 0 0 10px;
    position: relative;
}

.portfolio .section-title h1:before {
    content: '';
    left: 0;
    position: absolute;
    height: 2px;
    right: 30%;
    background-color: #febd01;
    bottom: 0px;
}

.portfolio .section-title p {
    font-family: "Quicksand", Arial, sans-serif;
    color: #ddd; /* Improved text contrast */
}

.portfolio .section-title p.small {
    display: block;
    font-size: 14px;
    color: #ccc; /* Improved text contrast */
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2%;
}

.portfolio .container {
    position: relative;
    justify-content: space-around;
    align-items: center;
    display: flex;
}

.portfolio .container .row {
    width: 320px;
    margin: 20px;
    padding: 40px 30px;
    background: #ebf5fc;
    border-radius: 40px;
    box-shadow: -6px -6px 20px rgba(255, 255, 255, 1),
                6px 6px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 480px) {
    .portfolio .container {
        flex-direction: column;
    }

    .portfolio .section-title h1 {
        margin-left: -18%;
    }

    .portfolio .section-title p {
        margin-left: -18%;
    }

    .portfolio .container {
        margin: auto;
    }
}

.portfolio .container .row .imgBx {
    position: relative;
    text-align: center;
}

.portfolio .row .imgBx img {
    max-width: 280px;
    margin-left: -4%;
    border-radius: 20px;
}

.portfolio .container .row .contentBx {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.portfolio .container .row .contentBx h2 {
    color: #febd01; /* Improved text contrast */
    font-weight: 700;
    font-size: 1.4em;
    letter-spacing: 2px;
}

.portfolio .container .row .contentBx a {
    font-family: 'Comfortaa', sans-serif;
    display: inline-block;
    margin-top: 15px;
    padding: 6px 14px;
    border-radius: 30px;
    color: #444; /* Improved text contrast */
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: -4px -4px 15px rgba(255, 255, 255, 1),
                4px 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio .container .row .contentBx a:hover {
    box-shadow: inset -4px -4px 10px rgba(255, 255, 255, 0.5),
                inset 4px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer-section {
    font-family: "Quicksand", Arial, sans-serif;
    background: #222222;
    margin-top: 5%;
    padding-top: 70px;
    padding-bottom: 50px;
}

.footer-text {
    padding-right: 70px;
}

.footer-text h2 {
    color: #ddd; /* Improved text contrast */
    font-family: "Playfair Display", Georgia, serif;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 17px;
    padding-left: 100px;
}

.footer-text p {
    color: #ddd; /* Improved text contrast */
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    padding-left: 100px;
}

.contact-form {
    padding-top: 57px;
    padding-left: 70px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    padding-bottom: 19px;
    padding-left: 7px;
    font-size: 16px;
    border-bottom: 2px solid #656565;
    background: transparent;
    margin-bottom: 80px;
    color: #fff;
}

.contact-form textarea {
    height: 40px;
    padding: 0;
    margin-bottom: 50px;
}

.copyright {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 800;
    font-style: italic;
    color: #ddd; /* Improved text contrast */
    margin-top: -40px;
    padding-left: 115px;
}

@media screen and (max-width: 480px) {
    .footer-text {
        margin-left: -13%;
    }

    .contact-form {
        margin-left: -15%;
    }

    .copyright {
        margin-left: -13%;
        margin-top: 4%;
    }
}
/* Speciality/Process Section */
.process {
    padding: 100px 15px;
    background-color: #ebf5fc; /* Light background for contrast */
}

.process .section-title {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center; /* Centered title */
    margin-bottom: 50px; /* Added spacing */
}

.process .section-title h1 {
    display: inline-block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    color: #333; /* Darker text for better contrast */
    margin: 0 0 10px;
    position: relative;
}

.process .section-title h1:before {
    content: '';
    left: 50%;
    transform: translateX(-50%); /* Center the underline */
    position: absolute;
    height: 2px;
    width: 60px; /* Fixed width for the underline */
    background-color: #febd01; /* Accent color */
    bottom: -10px;
}

.process .section-title p {
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 16px;
    color: #666; /* Subdued text color */
    margin-top: 20px;
}

.process .section-title p.small {
    display: block;
    font-size: 14px;
    color: #888; /* Lighter text for secondary info */
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 4%;
}

.process .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

.process .container .row {
    width: 300px;
    margin: 20px;
    padding: 40px 30px;
    background: #fff; /* White background for cards */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process .container .row:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.process .container .row .imgBx {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.process .row .imgBx img {
    max-width: 120px;
    height: auto;
    border-radius: 10px; /* Rounded corners for images */
}

.process .container .row .contentBx {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.process .container .row .contentBx h2 {
    color: #333; /* Dark text for headings */
    font-weight: 700;
    font-size: 1.4em;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.process .container .row .contentBx p {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    color: #666; /* Subdued text for descriptions */
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
    .process .container {
        flex-direction: column;
    }

    .process .container .row {
        width: 80%; /* Full width on mobile */
        margin: 20px auto; /* Centered on mobile */
    }

    .process .section-title h1 {
        font-size: 28px; /* Smaller font size for mobile */
    }

    .process .section-title p {
        font-size: 14px; /* Smaller font size for mobile */
    }
}