* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* header section start */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
    z-index: 9999;
}

.header .header_left {
    width: 150px;
}

.header .header_left img {
    width: 100%;
    padding: 10px;
}

.header .header_right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header_right ul {
    display: flex;
    align-items: center;
}

.header .header_right ul li {
    list-style: none;
    position: relative;
}

.header .header_right ul li a {
    text-decoration: none;
    padding: 15px;
    font-size: 1.1em;
    text-transform: uppercase;
    color: #1B6B93;
    font-weight: 600;
    transition: .3s;
}

.header .header_right ul li a:hover {
    color: #F29727;
}

.header .mob_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.header .mob_icon i {
    font-size: 1.8em;
    cursor: pointer;
    display: flex;
    color: #1B6B93;
}

.header .mob_icon i.ri-close-line {
    display: none;
}

.header.active .mob_icon i.ri-close-line {
    display: flex;
    color: #F29727;
}

.header.active .mob_icon i.ri-menu-line {
    display: none;
}

/* header section end */

/* hero section start */
.hero_section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    background: url(img/mohd-affan-hero-section-bg.jpg) 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.hero_section .hero_left {
    flex: 1 1 400px;
    width: 100%;
    padding: 20px;
}

.hero_section .hero_left h3 {
    font-size: 1.5em;
    color: #1B6B93;
}

.hero_section .hero_left h1 {
    font-size: 2em;
    color: #1B6B93;
    padding: 0 0 20px;
}

.hero_section .hero_left p {
    color: #666;
    padding: 0 0 30px;
    font-size: 1.08em;
}

.hero_section .hero_left>a {
    padding: 10px 15px;
    font-size: 1em;
    text-decoration: none;
    font-weight: 600;
    color: #1B6B93;
    border: 2px solid #1B6B93;
    border-radius: 5px;
    text-transform: uppercase;
    transition: .3s;
}

.hero_section .hero_left>a:hover {
    background: #1B6B93;
    color: #fff;
}

.hero_section .hero_right {
    flex: 1 1 400px;
    max-width: 550px;
    width: 100%;
}

.hero_section .hero_right img {
    max-width: 450px;
    width: 100%;
    border-radius: 10px;
}

.social_icon {
    padding: 30px 0;
    display: flex;
    align-content: center;
    gap: 10px;
}

.social_icon i {
    font-size: 1.3em;
    color: #F29727;
    border: 2px solid #F29727;
    padding: 10px;
    display: flex;
    border-radius: 50%;
    transition: .3s;
}

.social_icon i:hover {
    background: #F29727;
    color: #fff;
}

.social_icon a {
    text-decoration: none;
}

/* hero section end */

/* about section start */
.about_section {
    padding: 50px 30px;
}

.about_section .about_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.about_section .about_box h3 {
    font-size: 2.5em;
    color: #F29727;
    text-transform: uppercase;
}

.about_section .about_box h3 span {
    color: #1B6B93;
}

.about_section .about_box .about_box_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_section .about_box .about_box_container p {
    text-align: center;
    padding: 10px 0;
    font-size: 1.05em;
    color: #666;
    font-weight: 400;
}

/* about section end */

/* services section start */
.services_section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    background: url(img/services-bg-mohd-affan.jpg) 100% 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 30px 20px;
}

.services_section>h3 {
    font-size: 2.2em;
    color: #F29727;
    text-transform: uppercase;
    text-align: center;
    margin: 10px;
}

.services_section>h3 span {
    color: #1B6B93;
}

.services_boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
}

.services_boxes .services_box {
    flex: 1 1 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    background: #fff;
    padding: 30px 15px;
    border-radius: 8px;
    box-shadow: .01em .01em .5em .01em rgba(0, 0, 0, .3);
    transition: .2s;
}

.services_boxes .services_box:hover {
    transform: translateY(-12px);
}

.services_boxes .services_box i {
    font-size: 2.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(165deg, #F29727 50%, #1B6B93 50%);
    border-radius: 50%;
    color: #fff;
}

.services_boxes .services_box h3 {
    font-size: 1.5em;
    color: #1B6B93;
    text-transform: uppercase;
}

.services_boxes .services_box p {
    color: #666;
}

/* services section end */

/* porfolio section start */
.portfolio_section {
    padding: 30px 10px;
}

.portfolio_section>h3 {
    font-size: 2.2em;
    color: #F29727;
    text-transform: uppercase;
    text-align: center;
    margin: 10px;
}

.portfolio_section>h3 span {
    color: #1B6B93;
}

.portfolio_boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 30px;
}

.portfolio_boxes .portfolio_box {
    flex: 1 1 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.portfolio_overlay_box {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    overflow: hidden;
}

.portfolio_overlay_box .portfolio_img {
    display: block;
    width: 100%;
    height: auto;
}

.portfolio_overlay_box .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    font-size: 1.3em;
    padding: 20px;
    text-align: center;
}

.portfolio_overlay_box .overlay a {
    text-decoration: none;
    color: #fff;
}

.portfolio_overlay_box:hover .overlay {
    opacity: 1;
}

/* porfolio section end */

/* contact section start */
.contact_section {
    background: url(img/contact-bg-mohd-affan.jpg) 100% 100%;
    padding: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.contact_section > h3 {
    font-size: 2.2em;
    color: #F29727;
    text-transform: uppercase;
    text-align: center;
    margin: 15px;
    background: rgba(255, 255, 255, 0.678);
    padding: 0 2px;
    border-radius: 5px;
}

.contact_section > h3 span {
    color: #1B6B93;
}

.contact_section form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.contact_section form .main_form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px 15px;
}

.contact_left {
    flex: 1 1 350px;
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.contact_left input {
    width: 100%;
    padding: 15px;
    outline: none;
    font-size: .95em;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.913);
    color: #1B6B93;
}

.contact_left input::placeholder {
    color: #04354d;
}

.contact_right {
    flex: 1 1 350px;
    padding: 10px;
    width: 100%;
    height: 100%;
}

.contact_right textarea {
    width: 100%;
    height: 190px;
    padding: 15px;
    font-size: .95em;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.913);
    border: none;
    resize: none;
    color: #1B6B93;
    outline: none;
}

.contact_right textarea::placeholder {
    color: #04354d;
}

.contact_section form button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background: #F29727;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
}

.contact_section form button:hover {
    background: #1B6B93;
}

/* contact section end */

/* footer section start */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 1.2em;
    background: #1B6B93;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

/* footer section end */

/* media section start */
@media screen and (max-width: 63em) {

    /* header mob section start */
    .header .mob_icon {
        display: flex;
        z-index: 1001;
    }

    .header .header_right ul {
        position: fixed;
        flex-direction: column;
        justify-content: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        gap: 15px;
        width: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: .3s ease-in-out;
    }

    .header.active .header_right ul {
        width: 100%;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    /* header mob section end */

    /* hero section start */
    .hero_section {
        padding: 10px;

    }

    .hero_section .hero_box {
        gap: 0px;
    }

    .hero_section .hero_left {
        padding: 10px;
    }

    .hero_section .hero_right {
        padding: 0;
    }

    /* hero section end */

    /* about section start */
    .about_section {
        padding: 10px 15px;
    }

    /* about section end */

    /* services section start */
    .services_section {
        padding: 10px 0px;
    }

    .services_section .services_boxes {
        gap: 30px;
    }

    /* services section end */

    /* portfolio section start */
    .portfolio_boxes {
        padding: 30px 5px;
    }
    /* portfolio section end */

    /* contact section start */
    .contact_section {
        padding: 5px;
    }

    .contact_section form {
        padding: 10px 0 20px;
    }

    .contact_section form .main_form {
        padding: 5px;
    }
    /* contact section end */

}

/* media section end */