@font-face {
    font-family: 'Sentient-Medium';
    src: url('../fonts/heading/Sentient-Medium.woff2') format('woff2'),
            url('../fonts/heading/Sentient-Medium.woff') format('woff'),
            url('../fonts/heading/Sentient-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Sentient-Bold';
    src: url('../fonts/heading/Sentient-Bold.woff2') format('woff2'),
         url('../fonts/heading/Sentient-Bold.woff') format('woff'),
         url('../fonts/heading/Sentient-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans-Regular';
    src: url('../fonts/body/GeneralSans-Regular.woff2') format('woff2'),
         url('../fonts/body/GeneralSans-Regular.woff') format('woff'),
         url('../fonts/body/GeneralSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans-Medium';
    src: url('../fonts/body/GeneralSans-Medium.woff2') format('woff2'),
         url('../fonts/body/GeneralSans-Medium.woff') format('woff'),
         url('../fonts/body/GeneralSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'GeneralSans-Bold';
    src: url('../fonts/body/GeneralSans-Bold.woff2') format('woff2'),
         url('../fonts/body/GeneralSans-Bold.woff') format('woff'),
         url('../fonts/body/GeneralSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: currentColor;
    font-family: 'GeneralSans-Medium';
}

html {
    scroll-behavior: smooth;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
    font-family: 'Sentient-Medium';
    font-weight: 600;
    font-style: normal;
}

:root {
    --color-accent: #dc3545;
    --color-black: #101010;
    --color-white: #ffffff;
    --color-border: #dddddd;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.narrow-container {
    max-width: 1200px;
}

.medium-container {
    max-width: 1500px;
}

img {
    width: 100%;
    height: auto;
}

.button {
    padding: 12px 20px;
    font-size: 18px;
    background: var(--color-black);
    color: var(--color-white);
    display: inline-block;
    border-radius: 8px;
    border: 2px solid var(--color-black);
    font-size: 18px;
    text-transform: capitalize;
}

.button-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
}

.button-outline {
    background: transparent;
    border-color: var(--color-black);
    color: var(--color-black);
}

.button-link {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    color: var(--color-accent);
}

.hidden {
    display: none;
}

body.hamburger-active {
    overflow: hidden;
}

@media (max-width:1279px) and (min-width:768px) {
    .laptop-hide {
        display: none;
    }
}

@media (max-width:767px) {
    .mobile-hide {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .button {
        padding: 8px 15px;
        font-size: 15px;
    }

    .button-link {
        font-size: 18px;
    }
}

@media (min-width:1280px) {
    .desktop-hide {
        display: none;
    }
}

/* Section Header CSS Start */

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
}

.section-view-all-button {
    margin-top: 40px;
    text-align: center;
}

@media (max-width:767px) {

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Section Header CSS End */


/* Announcement Bar CSS Start */

#announcement-bar {
    background: var(--color-accent);
    padding: 8px 0;
    color: var(--color-white);
}

.announcement-bar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.announcement-bar-text p {
    font-size: 16px;
    line-height: 1.6;
}

.announcement-bar-contact ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.announcement-bar-text-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-bar-contact-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    color: var(--color-accent);
    border-radius: 100%;
}

.announcement-bar-contact-icon svg {
    width: 18px;
    height: 18px;
}

.announcement-bar-text-with-icon p,
.announcement-bar-text-with-icon p a {
    font-size: 16px;
}

@media (max-width:1439px) {
    .announcement-bar-contact-text {
        display: none;
    }
}

@media (max-width:1279px) {
    .announcement-bar-flex {
        justify-content: center;
    }
    .announcement-bar-text p {
        text-align: center;
    }
}

@media (max-width:767px) {
    .announcement-bar-text p {
        font-size: 14px;
    }
}

/* Announcement Bar CSS End */



/* Header CSS Start */

#header {
    padding: 15px 0;
    background: var(--color-black);
    color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo {
    display: flex;
    flex: 1 0 0;
}

.header-logo a {
    display: flex;
}

.header-logo img {
    width: 100%;
    max-width: 150px;
}

.header-navigation ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-navigation ul li a {
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.4s ease-in-out;
}

.header-navigation ul li a:hover {
    background: var(--color-accent);
    transition: 0.4s ease-in-out;
}

#header-hamburger-icon {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

#header-hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#header-hamburger-icon span:nth-child(1) {
    top: 0px;
}

#header-hamburger-icon span:nth-child(2),#header-hamburger-icon span:nth-child(3) {
    top: 10px;
}

#header-hamburger-icon span:nth-child(4) {
    top: 20px;
}

#header-hamburger-icon.hamburger-active span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#header-hamburger-icon.hamburger-active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#header-hamburger-icon.hamburger-active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#header-hamburger-icon.hamburger-active span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.header-mobile-menu {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    width: 100%;
    height: 81vh;
    background: #202020;
    padding: 20px;
    transform: translateX(-110%);
    transition: 0.4s ease-in-out;
    overflow-y: scroll;
    z-index: 10;
}

.header.header-sticky .header-mobile-menu {
    height: 91vh;
}

.header-mobile-menu.hamburger-active {
    transform: translateX(0%);
    transition: 0.4s ease-in-out;
}

.header-mobile-navigation ul li {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}

.header-mobile-navigation ul li a {
    display: inline-block;
    font-size: 18px;
    padding: 5px 0;
}

.header-mobile-menu hr {
    border-color: var(--color-border);
    opacity: .2;
    margin: 30px 0;
}

.header-mobile-contact ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}

.header-mobile-contact-text-with-icon {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.header-mobile-contact-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    color: var(--color-accent);
    border-radius: 100%;
}

.header-mobile-contact-icon svg {
    width: 18px;
    height: 18px;
}

.header-mobile-contact-text-with-icon p,
.header-mobile-contact-text-with-icon p a {
    font-size: 16px;
}

.header-mobile-button,
.header-mobile-button a {
    text-align: center;
    width: 100%;
}

@media (max-width:999px) {

    .header-logo img {
        max-width: 120px;
    }

    .header-navigation ul li {
        gap: 0px;
    }

    .header-navigation ul li a {
        font-size: 16px;
        padding: 6px 15px;
    }
}

/* Header CSS End */



/* Slideshow CSS Start */

.slideshow-item {
    position: relative;
}

.slideshow-img {
    display: flex;
    position: relative;
}

.slideshow-img::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-180deg, #00000000, #00000070, #000000);
    opacity: .9;
}

.slideshow-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    text-align: center;
}

.slideshow-text-inner h1 {
    font-size: 44px;
    font-weight: 600;
    color: var(--color-white);
}

.slideshow-text-inner p {
    font-size: 18px;
    line-height: 1.6;
    margin: 15px 30px;
    color: var(--color-white);
}

@media (max-width:767px) {

    .slideshow-img::before {
        content: inherit;
    }

    .slideshow-text {
        position: inherit;
        max-width: 100%;
        padding: 30px 20px 50px;
        bottom: 0;
    }

    .slideshow-text-inner h1 {
        font-size: 22px;
        color: var(--color-black);
    }
    
    .slideshow-text-inner p {
        font-size: 14px;
        margin: 10px 20px;
        color: var(--color-black);
    }
}

/* Slideshow CSS End */




/* Services CSS Start */

#services {
    padding: 100px 0;
    background: #f5f6f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.services-img {
    display: flex;
}

.services-img img {
    border-radius: 20px;
}

.services-text {
    padding: 30px 20px;
}

.services-text h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.services-text .service-list ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.services-text .service-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-text .service-list ul li span {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 100%;
}

.services-text .service-list ul li span svg {
    width: 16px;
    height: 16px;
}

.services-text .service-list ul li {
    font-size: 16px;
}

@media (max-width:767px) {
    #services {
        padding: 50px 0;
    }
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .services-text {
        padding: 20px 0px;
    }
    .services-text h3 {
        font-size: 20px;
    }
    
    .services-text p {
        font-size: 14px;
    }

    .services-text .service-list ul li span {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        max-width: 26px;
        max-height: 26px;
    }

    .services-text .service-list ul li span svg {
        width: 14px;
        height: 14px;
    }
}

/* Services CSS End */




/* Our Works CSS Start */

#our-works {
    padding: 100px 0;
}

.our-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.our-works-item {
    margin-bottom: 1rem;
}

@media (max-width:767px) {
    #our-works {
        padding: 50px 0;
    }

    .our-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .our-works-item {
        margin-bottom: 0.5rem;
    }
}

/* Our Works CSS End */





/* FAQ's CSS Start */

#faqs {
    padding: 100px 0;
}

.faqs-grid {
    display: grid;
    gap: 15px;
}

.faqs-item {
    background: #f5f6f9;
    border: 1px solid #eeeeee70;
    border-radius: 8px;
}

.faqs-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.faqs-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.faqs-icon svg {
    width: 22px;
    height: 22px;
}

.faqs-answer {
    display: none;
    padding: 0 30px 30px;
}

.faqs-answer p {
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width:768px) {
    #faqs {
        padding: 50px 0;
    }

    .faqs-question {
        padding: 12px 20px;
        font-size: 16px;
    }

    .faqs-answer {
        padding: 0 20px 20px;
    }

    .faqs-answer p {
        font-size: 14px;
    }
}

/* FAQ's CSS End */





/* Testimonial CSS Start */

#testimonial {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    height: 100%;
}

.testimonial-item {
    padding: 30px;
    background-color: #f5f6f9;
    border-radius: 12px;
    border: 1px solid #eeeeee50;
}

.testimonial-star {
    font-size: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 600;
}

.5-star-rates {
    display: flex;
    align-items: center;
    gap: 10px;
}

.5-star-rates svg {
    width: 20px;
    height: 20px;
}

@media (max-width:1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width:999px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .5-star-rates {
        gap: 6px;
    }
    
    .5-star-rates svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width:767px) {
    #testimonial {
        padding: 50px 0;
    }

    .testimonial-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-star {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
        margin: 15px 0;
    }
    
    .testimonial-author {
        font-size: 16px;
    }
}

/* Testimonial CSS End */






/* About Us CSS Start */

.about-us {
    padding: 100px 0;
}

.about-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 70px;
}

.about-us-img {
    display: flex;
}

.about-us-img img {
    border-radius: 20px;
}

.about-us-text h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-us-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-us-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-us-text .about-us-list ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.about-us-text .about-us-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-us-text .about-us-list ul li span {
    display: flex;
}

.about-us-text .about-us-list ul li span svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    color: green;
}

.about-us-text .about-us-list ul li {
    font-size: 16px;
}

@media (max-width:999px) {
    .about-us-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .about-us-text h3 {
        font-size: 22px;
    }
    
    .about-us-text h4 {
        font-size: 16px;
    }
    
    .about-us-text p {
        font-size: 14px;
    }

    .about-us-text .about-us-list ul li {
        font-size: 14px;
    }
}

@media (max-width:767px) {
    .about-us {
        padding: 50px 0;
    }
}

/* About Us CSS End */






/* Contact Us CSS Start */

.contact-us {
    padding: 100px 0;
}

.contact-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contact-us-text .section-header {
    text-align: left;
}

.contact-us-contact ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}

.contact-us-text-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-us-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 100%;
}

.contact-us-contact-icon svg {
    width: 26px;
    height: 26px;
}

.contact-us-text-with-icon p,
.contact-us-text-with-icon p a {
    font-size: 20px;
}

.contact-us-form {
    width: 100%;
}

.contact-us-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-us-form-field {
    padding: 15px 20px;
    outline: none;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    color: var(--color-black);
}

.contact-us-form-field::placeholder,
.contact-us-form-service::placeholder {
    opacity: 1;
    color: var(--color-black);
}

.contact-us-form-service {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.contact-us-form-textarea {
    resize: vertical;
}

.contact-us-form-service option:first-child {
    opacity: 0.6;
}

.contact-us-form-button {
    width: fit-content;
    cursor: pointer;
}

@media (max-width:999px) {

    .contact-us-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}

@media (max-width:767px) {

    .contact-us {
        padding: 50px 0;
    }

    .contact-us-text-with-icon {
        gap: 10px;
    }

    .contact-us-contact-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
        max-width: 26px;
        max-height: 26px;
    }
    
    .contact-us-contact-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-us-text-with-icon p,
    .contact-us-text-with-icon p a {
        font-size: 15px;
    }

    .contact-us-form form {
        gap: 15px;
    }

    .contact-us-form-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .contact-us-form-field {
        padding: 15px 20px;
        outline: none;
        border: 1.5px solid var(--color-border);
        border-radius: 8px;
        width: 100%;
        font-size: 16px;
        color: var(--color-black);
    }
}

/* Contact Us CSS End */









/* Location CSS Start */

.location iframe {
    display: flex;
}

/* Location CSS End */








/* Footer CSS Start */

.footer {
    padding: 30px 0;
    background: var(--color-black);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    max-width: 150px;
}

.footer-copyright-left,
.footer-copyright-right {
    color: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
}

.footer-copyright-right {
    text-align: right;
}

@media (max-width:999px) {
    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    } 

    .footer-logo {
        grid-row: 1;
        margin-bottom: 20px;
    }

    .footer-copyright-left,
    .footer-copyright-right {
        text-align: center;
        font-size: 14px;
    }
}

/* Footer CSS End */