@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #df1219;
    --secondary-color: #04223e;
    --about-year-div: #fca114;
    --topnavbar-border-color: #b40007;
    --white-color: #fff;
    --black-color: #000;
    --btn-hover-color: #ff0008;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
}

.top_navbar {
    background-color: var(--primary-color);
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    position: absolute;
}

.top_navbar_inner_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 500px;
    padding-left: 300px;
    position: relative;
    height: 100%;
}

.top_navbar_inner_div .phone_email_div {
    display: flex;
    gap: 25px;
    color: var(--white-color);
    font-family: 'Poppins';
}

.top_navbar_inner_div .phone_email_div i {
    font-size: 17px;
}

.top_navbar_inner_div .phone_email_div span {
    font-size: 15px;
}

.top_navbar_inner_div .social_media_div {
    display: flex;
}

.top_navbar_inner_div .social_media_div .social_icon_div i {
    cursor: pointer;
}

.top_navbar_inner_div .social_media_div>.social_icon_div:nth-child(1) {
    border-left: 1px solid var(--topnavbar-border-color);
    padding: 0 10px;
    height: 35px;
    display: flex;
    align-items: center;
}

.top_navbar_inner_div .social_media_div>.social_icon_div {
    border-right: 1px solid var(--topnavbar-border-color);
    padding: 0 10px;
    height: 35px;
    display: flex;
    align-items: center;
    color: var(--white-color);
}

/* main navbar */

nav {
    width: 100%;
    height: 115px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    top: 0px;
    left: 0;
    z-index: 1;
    background-color: var(--white-color);
}



.logo_div_design::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 115px;
    width: 30%;
    clip-path: polygon(0% 20%, 0 0, 91% 0, 100% 100%, 100% 100%, 61% 100%, 0 100%);
    background-color: var(--secondary-color);
    z-index: 4 !important;
    transition: all 0.3s ease;
}


.logo_div_design .container {
    display: flex;
    align-items: center;
    height: 115px;
}

.nav_grid_div {
    display: grid;
    grid-template-columns: 200px auto;
    width: 100%;
    /* background-color: #fca114; */
    height: 100%;
}

.nav_grid_div .logo_div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100 !important;
}

.logo_div_design .logo_div .header_strip {
    position: absolute;
    top: 0;
    left: 69px;
    background-color: var(--primary-color);
    width: 188px;
    height: 100%;
    clip-path: polygon(72% 0, 66% 0%, 92% 100%, 98% 100%);
    transition: all 0.3s ease;
}

.nav_grid_div .logo_div img {
    width: 70%;
}

.nav_grid_div .logo_div span {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: var(--white-color);
}

.nav_grid_div .main_menu_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 100px;
    height: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.nav_grid_div .main_menu_div ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav_grid_div .main_menu_div ul li a {
    text-decoration: none;
    color: var(--black-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav_grid_div .main_menu_div ul li a:hover {
    color: var(--primary-color);
}

.search_btn_main_div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.search_btn_main_div .search_div i {
    font-size: 22px;
    cursor: pointer;
}

.toggle_btn {
    display: none;
}

.toggle_btn span {
    background-color: #f0f0f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.toggle_btn i {
    font-size: 17px;
}

.nav_contact_btn {
    border: none;
    display: block;
    position: relative;
    padding: 0.6em 2.2em;
    font-size: 18px;
    background: transparent;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: var(--primary-color);
    z-index: 1;
    font-family: inherit;
    font-weight: 500;
}

.nav_contact_btn span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    border: 4px solid var(--primary-color);
}

.nav_contact_btn span::before {
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    height: 500%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    transition: all 0.3s;
}

.nav_contact_btn:hover span::before {
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 100%;
    background: var(--primary-color);
}

.nav_contact_btn:hover {
    color: var(--white-color);
}

.nav_contact_btn a {
    text-decoration: none;
    color: var(--primary-color);
}

.nav_contact_btn:hover a {
    color: var(--white-color);
}


.modal-body input {
    padding: 8px 20px;
    width: 100%;
    outline: none;
    border: 1px solid #bdbdbd;
}

.modal-content {
    border-radius: 0 !important;
    height: 150px;
}

.modal-body button {
    margin-top: 20px;
    border: none;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    font-family: 'poppins';
}

/* side window */

#sideWindow {
    position: fixed;
    top: 0;
    right: -400px;
    /* Hidden off-screen initially */
    width: 300px;
    height: 100%;
    background-color: var(--white-color);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    /* padding: 20px; */
    z-index: 1001;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

#overlay.active {
    display: block;
    /* Show overlay */
}

#sideWindow.open {
    right: 0;
    /* Slide in */
}

#sideWindow #closeButton i {
    transition: all 0.3s;
    font-size: 20px;
}

#sideWindow #closeButton:hover i {
    transform: rotate(360deg);
}

#sideWindow .logo_div {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}


#sideWindow .logo_div img {
    width: 55%;
}

#sideWindow .logo_div button {
    background-color: transparent;
    border: 1px solid;
    padding: 0 10px;
    height: 40px;
}

#sideWindow .logo_div span {
    font-size: 25px;
    font-weight: 600;
}

#sideWindow .main_menu_div ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

#sideWindow .main_menu_div ul li {
    border-bottom: 1px solid #dddddd;
    padding: 7px 20px;
}


#sideWindow .main_menu_div ul li a {
    text-decoration: none;
    color: var(--black-color);
    font-size: 17px;
    font-family: 'poppins', sans-serif;
}

.sideWindow_btn {
    padding: 20px;
}

.sideWindow_btn .btn {
    padding: 12px 20px;
    width: 100%;
    background-color: var(--primary-color);
    font-size: 17px;
    font-family: 'poppins', serif;
    color: var(--white-color);
    border-radius: 0%;
    transition: all 0.3s;
}

.sideWindow_btn .btn:hover {
    background-color: var(--btn-hover-color);
}

#sideWindow .sideWindow_contact_info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 20px;
}

#sideWindow .sideWindow_contact_info .icon_div {
    background-color: var(--secondary-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

#sideWindow .sideWindow_contact_info .icon_div i {
    color: var(--white-color);
    font-size: 18px;
}

#sideWindow .sideWindow_contact_info span {
    font-family: 'poppins';
}

.sideWindow_social_media_div {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.sideWindow_social_media_div .sideWindow_social_icon_div {
    width: 35px;
    height: 35px;
    border: 1px solid var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
}


/* media queries */

@media (max-width: 1440px) {

    .top_navbar_inner_div {
        gap: 480px;
    }

    .logo_div_design::before {
        width: 25%;
    }

    .logo_div_design .logo_div .header_strip {
        left: 69px;
        width: 213px;
        clip-path: polygon(83% 0, 77% 0%, 92% 100%, 98% 100%);
    }

    .nav_grid_div .main_menu_div {
        padding-left: 160px;
    }
}

@media (max-width: 1024px) {
    .top_navbar_inner_div {
        gap: 130px;
    }

    .logo_div_design .logo_div .header_strip {
        width: 141px;
    }

    .nav_grid_div .main_menu_div {
        padding-left: 50px !important;
    }
}

@media (max-width: 992px) {
    .top_navbar {
        display: none;
    }

    .toggle_btn {
        display: block;
    }

    .logo_div_design::before {
        width: 40%;
    }

    #navbar .main_menu_div {
        margin: 0;
        margin-left: 170px;
    }

    #navbar .main_menu_div ul {
        display: none;
    }

    .logo_div_design .logo_div .header_strip {
        left: 69px;
        width: 188px;
        clip-path: polygon(82% 0, 75% 0%, 92% 100%, 98% 100%);
    }
}

@media (max-width: 768px) {

    #navbar .main_menu_div .search_div,
    #navbar .main_menu_div .btn_div {
        display: none;
    }

    #navbar .main_menu_div {
        margin-left: 0px;
        padding-left: 160px !important;
    }

    .logo_div_design::before {
        width: 60%;
    }

    .nav_grid_div .logo_div span {
        font-size: 25px;
    }

    .logo_div_design .logo_div .header_strip {
        left: 69px;
        width: 170px;
        clip-path: polygon(85% 0, 79% 0%, 92% 100%, 98% 100%);
    }
}

@media (max-width: 576px) {
    #navbar .main_menu_div {
        margin-left: 0px;
        padding-left: 70px !important;
    }
}

/*======= Carousel Container ===========*/


.carousel {
    position: relative;
    width: 100%;
    max-height: 90vh;
    height: 90vh;
    margin: auto;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeInImage 5s forwards;
}

.carousel-slide>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-slide h1 {
    color: var(--white-color);
    font-size: 5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: slideInText 1.5s forwards;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    font-size: 2rem;
    padding: 10px;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@keyframes fadeInImage {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes slideInText {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========breadcrumb ==============*/


.breadcrumb_main_div {
    width: 100%;
    height: 50vh;
    position: relative;
}

.breadcrumb_main_div img {
    height: 100%;
}

.breadcrumb_main_div img {
    width: 100%;
}

.breadcrumb_content_div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
}

.breadcrumb_content_div>div {
    text-align: center;
}

.breadcrumb_content_div h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 50px;
}

.breadcrumb_content_div a {
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'poppins', sans-serif;
    transition: color 0.3s;
}

.breadcrumb_content_div a:hover {
    color: var(--white-color);
}

.breadcrumb_content_div i {
    margin: 0 5px;
}

.breadcrumb_content_div span {
    font-family: 'poppins';
}

@media (max-width: 768px) {
    .breadcrumb_content_div h1 {
        font-size: 38px;
    }
}



/* =========about section========== */

.about_grid_div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 100px 0;
    width: 100%;
}

.about_grid_div .image_div {
    display: flex;
    gap: 20px;
    position: relative;
}

/* .about_grid_div .image_div .img1{
    width: 300px;
} */

.about_grid_div .about_year_div {
    background-color: var(--about-year-div);
    padding: 30px 40px;
    position: relative;
    top: 110px;
}

.about_grid_div .about_year_div::after {
    content: '';
    width: 45px;
    height: 45px;
    position: absolute;
    bottom: 0px;
    right: -1px;
    background-color: var(--white-color);
    clip-path: polygon(100% 2%, 100% 100%, 2% 100%, 50% 50%);
}

.about_grid_div .about_year_div>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about_grid_div .about_year_div>div p {
    font-size: 14px;
    margin: 0;

}

.about_grid_div .about_year_div h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 45px;
    margin: 0;
}

.about_grid_div .about_year_div p {
    /* font-family: 'Poppins', sans-serif; */
    font-size: 14px;
    margin-top: 10px;
}

.about_grid_div .image_div .img2 {
    width: 260px;
    height: 250px;
    position: absolute;
    bottom: 0;
    object-fit: cover;
}


.about_content_div {
    padding: 0 50px;
}

.about_content_div h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 45px;
}

.about_content_div p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin-top: 20px;
}

.about_content_div .icon_div {
    width: 100px;
    height: 40px;
    background-color: #e3e3e3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_content_div .feature_main_div {
    display: flex;
}

.about_content_div .about_feature_div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about_content_div .icon_div i {
    font-size: 18px;
}

.about_content_div .feature_main_div p {
    font-size: 14px;
}

/* From Uiverse.io by SujitAdroja */
.about_btn {
    color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    margin-top: 20px;
}

.about_btn:hover {
    color: var(--white-color);
}

.about_btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: var(--primary-color);
    z-index: -1;
    transition: all 1s;
}

.about_btn:hover::before {
    width: 160%;
}

.about_btn a {
    text-decoration: none;
    color: var(--primary-color);
}

.about_btn:hover a {
    color: var(--white-color);
}

@media (max-width: 1024px) {
    .about_grid_div {
        grid-template-columns: 1fr;
    }

    .about_grid_div .image_div .img2 {
        width: 52%;
    }

}

@media (max-width: 992px) {
    .about_grid_div {
        grid-template-columns: 1fr;
    }

    .about_content_div {
        margin-top: 20px;
        padding: 0 10px;
    }

    .about_grid_div .about_year_div::after {
        bottom: -1px;
    }

    .about_grid_div .image_div .img2 {
        width: 310px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .carousel {
        height: 50vh;
    }

    .carousel-slide h1 {
        font-size: 3.5rem;
    }

    .image_div {
        flex-direction: column;
        height: 1110px;
    }

    .about_year_div {
        top: 0 !important;
    }

    .about_grid_div .image_div .img2 {
        width: 100%;
        height: 250px;
    }

    .about_content_div {
        padding: 0;
    }

    .feature_main_div {
        flex-direction: column;
    }

    .about_content_div h1 {
        font-size: 30px;
    }

    .about_content_div p {
        font-size: 13px;
        text-align: justify;
    }

    .about_content_div .feature_main_div p {
        font-size: 13px;
        text-align: left;
    }
}

/* =======cta02========= */

.parallax {
    position: relative;
    height: 50vh;
    /* Replace with your image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-image 0.5s ease-in-out;
}

/* Content on the parallax */
.parallax-content {
    position: absolute;
    text-align: center;
    color: var(--white-color);
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.parallax-content h1 {
    font-size: 60px;
    margin: 0;
}

.parallax-content p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.parallax-content a {
    text-decoration: none;
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s;
    font-family: 'poppins', serif;
    margin-top: 20px;
}

.parallax-content a:hover {
    background-color: var(--btn-hover-color);
    color: var(--white-color);
}

/* Normal content */
.content {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .parallax-content h1 {
        font-size: 45px;
    }
}


/* =======services======== */

.service_main_div {
    margin: 100px 0;
}

.service_heading h1 {
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 600;
}

.service_box_main_div {
    display: flex;
    justify-content: space-evenly;
}

.service_box {
    width: 370px;
    height: 300px;
    padding: 30px;
    background-color: rgb(255, 243, 243);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.service_box::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: -100%;
    left: 0;
    transition: all 0.4s;
}

.service_box:hover::before {
    top: 0;
}

.service_box:hover,
.service_box:hover .service_btn a {
    color: var(--white-color);
}

.service_box .icon_div {
    width: 70px;
    height: 70px;
    background-color: rgb(252, 231, 231);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

.service_box:hover .icon_div {
    transform: rotateY(360deg);
}

.service_box .icon_div img {
    width: 50px;
}

.service_box .icon_number_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service_box .service_number_div {
    font-size: 50px;
    font-family: 'poppins', serif;
    font-weight: 800;
    color: #dfdfdf;
}

.service_box .service_box_heading_div h5 {
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service_box .service_box_content_div p {
    font-family: 'poppins', sans-serif;
    font-size: 14px;
    position: relative;
    z-index: 3;
}

.service_box .service_btn a {
    text-decoration: none;
    color: var(--black-color);
    font-family: 'poppins', sans-serif;
    position: relative;
    z-index: 4;
}

.service_box .service_btn span {
    position: relative;
    z-index: 5;
}

@media (max-width: 992px) {
    .service_box_main_div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .service_box {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .service_heading h1 {
        font-size: 30px;
    }
}


/* ==========contact Us========== */

.contact_main_div {
    margin: 100px 50px;
}

.contact_us_div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin: 100px 0 50px 0;
}

.contact_us_div h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
    margin: 0;
    text-align: center;
}

.contact_us_div p {
    font-family: 'poppins', sans-serif;
    font-size: 15px;
    color: #333;
    text-align: center;
}

.conatct_grid_div {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    margin: 100px 0;
}

.contact_form_div {
    padding: 20px;
    width: 100%;
}

.contact_form_div h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact_form_div form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_form_div form .contact_input_div {
    display: flex;
    gap: 20px;
}

.contact_form_div .name_email_div input,
.contact_form_div .phone_subject_div input,
.contact_form_div .message_div textarea {
    display: flex;
    width: 100%;
}

.contact_form_div form input,
.contact_form_div form textarea {
    padding: 10px;
    border: 1px solid #c1c1c1;
    outline: none;
    /* border-radius: 5px; */
}

.contact_form_div form button {
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    font-family: 'poppins', sans-serif;
}

/* contact address */

.contact_info_div {
    background-image: url('../images/about/bailey-alexander-CuCnnDyvFSM-unsplash.jpg');
    background-size: cover;
    width: 75%;
}

.contact_info_overlay {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
}

.contact_info_icon_div {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_info_icon_div i {
    font-size: 24px;
    color: var(--white-color);
}

.contact_info_inner_div {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #a6a6a6;
    padding: 30px 0;
    width: 100%;
}

.contact_info_inner_div h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--white-color);
    padding-bottom: 10px;
}

.contact_info_inner_div p {
    font-family: 'poppins', sans-serif;
    font-size: 15px;
    color: var(--white-color);
}


.contact_info_inner_div a {
    text-decoration: none;
    color: var(--white-color);
    font-family: 'poppins', sans-serif;
}

.contact_info_inner_div a:hover {
    color: var(--white-color);
}

@media (max-width: 992px) {
    .conatct_grid_div {
        grid-template-columns: 1fr;
    }

    .contact_info_div {
        width: 100%;
    }

    .contact_form_div {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .contact_main_div {
        margin: 100px 0px;
    }
}


/* =========cta02======== */

.cta02_main_div {
    background-image: url('../images/cta02/World-Map.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 65vh;
    overflow: hidden;
}

.cta02_overlay {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.cta02_shape1_div {
    position: absolute;
    top: 10%;
    left: 0;
    animation: shape1 5s infinite;
}

.cta02_shape2_div {
    position: absolute;
    bottom: 0px;
    right: 0;
}

.cta02_shape2_div img {
    width: 70%;
    position: relative;
    right: -139px;
}

@keyframes shape1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

.cta02_shape1_div img {
    width: 50%;
}


.heading_div h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    color: var(--white-color);
    text-align: center;
    margin-top: 80px;
    font-weight: 600;
}

.line_div {
    margin: 20px auto;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    position: relative;
    top: 137px;
}

.cta02_flex_div {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin: 70px 0;
    position: relative;
    z-index: 1;
}

.cta02_content {
    padding: 20px;
    color: var(--white-color);
    border-radius: 10px;
    width: 23%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.cta02_flex_div .cta02_content .icon_div {
    width: 70px;
    height: 70px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta02_flex_div .cta02_content .icon_div img {
    width: 50px;
}

/* .cta02_flex_div .cta02_content .icon_div i {
    font-size: 24px;
    color: var(--primary-color);
} */

.cta02_flex_div .cta02_content h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    margin: 10px 0;
    text-align: center;
    margin-top: 20px;
}

.cta02_flex_div .cta02_content p {
    font-family: 'poppins', sans-serif;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 992px) {
    .cta02_main_div {
        height: auto;
    }

    .cta02_flex_div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cta02_content {
        width: 100%;
        margin-bottom: 20px;
    }

    .line_div {
        display: none;
    }
}

@media (max-width: 768px) {
    .cta02_shape2_div img {
        width: 44%;
        position: relative;
        right: -240px;
    }
}

/* =======footer========= */

.footer .container {
    margin-top: 130px !important;
}

.footer_main_div {
    width: 100%;
    height: 60vh;
    background-color: var(--black-color);
    display: flex;
    align-items: center;
    margin-top: -80px;
    overflow: hidden;
}

.subscribe_div {
    width: 100%;
    height: 200px;
    background-color: var(--primary-color);
    position: relative;
}

.subscribe_div>div {
    display: flex;
    align-items: center;
    gap: 100px;
    height: 100%;
    padding: 0 100px;
}

.subscribe_div>div p {
    margin: 0;
    color: var(--white-color);
    font-family: 'Montserrat', sans-serif;
}

.subscribe_div>div h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--white-color);
    width: 400px;
}

.subscribe_div .input_div {
    display: flex;
}

.subscribe_div>div input {
    padding: 12px 20px;
    width: 400px;
    border: none;
    outline: none;
}

.subscribe_div .input_div button {
    border: none;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-family: 'poppins', sans-serif;
    padding: 0 20px;
}

.footer_grid_div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer_logo_div img {
    width: 60%;
}

.footer_logo_div>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_logo_div h4 {
    color: var(--white-color);
}

.footer_logo_div p {
    color: #c8c8c8;
    font-family: 'poppins', sans-serif;
    text-align: justify;
    font-size: 15px;
    margin-top: 15px;
}

.footer_quick_links_div h5 {
    color: #c8c8c8;
    font-size: 22px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.footer_quick_links_div>div {
    display: flex;
    justify-content: center;
}

.footer_quick_links_div ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.footer_quick_links_div ul li a {
    color: #c8c8c8;
    text-decoration: none;
    font-size: 17px;
    font-family: 'poppins', sans-serif;
    position: relative;
}

.footer_quick_links_div ul li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--white-color);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s;
}

.footer_quick_links_div ul li a:hover::after,
.footer_quick_links_div ul li a:hover {
    width: 100%;
    left: 0;
    color: var(--white-color);
}

.footer_gallery_div img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    /* margin-bottom: 10px; */
    margin-top: 20px;
}


.footer_main_div hr {
    color: #c8c8c8;
}

.copyright_inner_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright_inner_div p {
    color: var(--white-color);
    font-family: 'poppins', sans-serif;
    font-size: 14px;
    margin: 0;
}

.copyright_inner_div p a {
    color: var(--primary-color);
    text-decoration: none;
}

.copyright_inner_div p a:hover {
    text-decoration: underline;
}

.copyright_inner_div .social_icon_div {
    display: flex;
    gap: 10px;
}

.copyright_inner_div .social_icon_div i {
    color: var(--white-color);
}

@media (max-width:992px) {
    .footer_grid_div {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }

    .subscribe_div>div {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .subscribe_div {
        width: 100%;
        height: 220px;
        background-color: var(--primary-color);
        position: relative;
    }

    .subscribe_div>div p {
        margin-top: 20px;
    }

    .footer_logo_div p{
        text-align: left;
        padding-right: 10px;
    }

    .footer_quick_links_div h5 {
        text-align: left;
    }

    .footer_quick_links_div>div {
        justify-content: left;
    }
    .footer_quick_links_div ul{
        padding: 0;
    }
}

@media (max-width: 768px) {
    .footer_main_div {
        height: auto;
        padding-bottom: 20px;
    }

    .footer_grid_div {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .footer_quick_links_div h5 {
        text-align: left;
    }

    .footer_quick_links_div ul {
        padding: 0;
    }

    .footer_quick_links_div>div {
        display: flex;
        justify-content: start;
    }

    .subscribe_div>div h1,
    .subscribe_div>div p {
        text-align: center;
    }

    .subscribe_div>div input {
        width: 200px;
    }

    .footer_logo_div p {
        font-size: 13px;
    }
}