@import url('https://fonts.googleapis.com/css2?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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
}

:root {
    --mainColor: #FF0000;
    --secondColor: #FFFFFF;
    --grayColor: #F83e3e;
}

/* STYLES */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #f2e3e3;
}

.max-width {
    max-width: 85%;
    margin: 0 auto;
}

.section {
    min-height: 100vh;
    width: 100%;
    padding: 60px 0;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.row .col-2 {
    flex-basis: 47%;
}

.col-3 {
    flex-basis: 30%;
}

.btn-primary {
    background: var(--secondColor);
    border: 1px solid var(--mainColor);
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    padding: 10px 25px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-10px);
    background: transparent;
}

.title {
    margin-bottom: 30px;
}

.title h4 {
    font-size: 17px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--mainColor);
}

.title h1 {
    font-size: 50px;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--mainColor);
    letter-spacing: .8px;

}

.title h1 span {
    color: var(--mainColor);
}

.title .title-line {
    background: var(--mainColor);
    width: 605px;
    height: 3px;
    border-radius: 4px;

}

a {
    text-decoration: none;
}

li {
    list-style: none;
}


/* RESPONSIVE */
@media (max-width:900px) {
    .row .col-2 {
        flex-basis: 100%;
        margin-bottom: 40px;
    }

    .title h4 {
        font-size: 15px;
    }

    .title h1 {
        font-size: 40px;
    }

    .row .col-3 {
        flex-basis: 47%;
        margin-bottom: 40px;
    }
}

@media (max-width:600px) {
    .row .col-3 {
        flex-basis: 100%;
    }

    .title h4 {
        font-size: 12px;
    }

    .title h1 {
        font-size: 35px;
    }
}

@media (max-width:480px) {
    .title {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title h1,
    .title h4 {
        text-align: center;
    }
}

/* NAVBAR STYLE  */
.navbar {
    background: #f2e3e3;
    height: 90px;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar .max-width .logo img {
  width: 250px; 
  height: auto; 
  margin: 10px;
  position: absolute; 
  top: 0; 
  left: 0;

}

.navbar .max-width .links {
    display: flex;
    align-items: center;
}

.navbar .max-width .links li a {
    font-size: 15px;
    font-weight: 500;
    padding: 0 20px;
    color: #ff0000;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
}

.navbar .max-width .links li a:hover {
    color: #000000;

}

ul li ul.dropdown li {
    display: block;
}

ul li ul.dropdown {
    width: 100%;
    background: #f2e3e3 ;
    position: absolute;
    z-index: 999;
    display: none;
}

ul li a:hover {
    background: #f2e3e3;
}

ul li:hover ul.dropdown {
    display: block;
}


/* TOGGLE MENU  */
.toggle-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
}

.toggle-menu i {
    font-size: 22px;
    color: #FFFFFF;
}

/* RESPONSIVE */
@media (max-width:900px) {
    .navbar .max-width .links {
        position: fixed;
        left: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.9);
        min-height: 100vh;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        z-index: 3;
        transform: translateX(100%);
        transition: transform .3s ease-in-out;
    }

    .navbar .max-width .links.show {
        transform: translateX(0);
    }

    .toggle-menu {
        display: block;
        z-index: 4;
    }
}

.footer {
  width: 100%;
  height: 10rem;
  background-color: #17181b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  width: 60%;
  display: flex;
  justify-content: space-between;
}

.copyright {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: #a7a7a7;
}

.social-list a {
  margin: 0 2rem;
}

.social-list i {
  font-size: 1rem;
  color: #a7a7a7;
}

.scroll-btn {
  position: fixed;
  right: 5rem;
  bottom: 5rem;
  width: 3rem;
  height: 3rem;
  background-color: #e2b646;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

@media (max-width: 1500px) {
  .about-us-img-wrapper {
    grid-row: 3 / -1;
  }

  .card {
    width: 34rem;
  }

  .contact-wrapper {
    width: 80%;
    height: 65rem;
  }

  .footer-content {
    width: 80%;
  }
}

/* CONTACT STYLES  */
.contact .contact-form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--mainColor);
}

.contact .contact-form label {
  display: block;
  margin-bottom: 5px;
  color: var(--mainColor);
}

.contact .contact-form input,
.contact .contact-form textarea {
  padding: 12px;
  font-size: 17px;
  background-color: transparent;
  color: #000000;
  width: 100%;
  outline: none;
  border: 1px solid var(--mainColor);
}

.contact .contact-form input {
  height: 60px;
}

.contact .contact-form textarea {
  height: 200px;
}

.contact p {
  color: var(--mainColor);
}

.contact .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.contact .contact-info .contact-desc h4 {
  font-size: 20px;
  letter-spacing: 1px;
  color: #ff0000;
}

.contact .contact-info .contact-desc p {
  color: var(--grayColor);

} 

.contact .contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
}

.contact .contact-info .contact-icon i {
  font-size: 45px;
  color: var(--mainColor);
  cursor: pointer;
  transition: transform .3s ease-in-out;
}

.contact .contact-info .contact-icon i:hover {
  transform: translateY(-10px);
}

.contact-info .location {
  display: flex;
  align-items: center;
  margin-bottom: 15px; 

}

.contact-info .location i {
  margin-right: 8px; 
  font-size: 1.2em; 
}


.map-container {
  max-width: 400px; 
  width: 100%; 
  height: 250px; 
}

.map-container iframe {
  width: 500px;
  height: 250px;
  border: none; 
}


.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mainImg {
  color: black;
  width: 55%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 7px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.text-blk.headingText {
  font-size: 30px;
  font-weight: 700;
  line-height: 34px;
  color: #4b4b4b;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
  width: 40%;
  margin: 0 0 0 0;
}

.text-blk.subHeadingText {
  color: #000000;
  font-size: 25px;
  line-height: 34px;
  font-weight: 700;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}

.text-blk.description {
  font-size: 20px;
  line-height: 34px;
  color: #000000;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.explore {
font-size: 20px;
line-height: 28px;
color: var(--mainColor);
background-color: var(--secondColor);
padding-top: 10px;
padding-right: 50px;
padding-bottom: 10px;
padding-left: 50px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: outset;
border-right-style: outset;
border-bottom-style: outset;
border-left-style: outset;
border-top-color: rgb(255, 17, 0);
border-right-color: rgb(255, 17, 0);
border-bottom-color: rgb(255, 17, 0);
border-left-color: rgb(255, 17, 0);
border-image-source: initial;
border-image-slice: initial;
border-image-width: initial;
border-image-outset: initial;
border-image-repeat: initial;
cursor: pointer;

}
      
.explore:hover {
background-image: initial;
background-position-x: initial;
background-position-y: initial;
background-size: initial;
background-repeat-x: initial;
background-repeat-y: initial;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: rgb(0, 55, 255);
color: rgb(255, 255, 255);

}
                
.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  margin-top: 100px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  flex-direction: row-reverse;
  margin: 100px auto 50px auto;
}

.allText.aboveText {
  margin: 0 0 0 40px;
}

.allText.bottomText {
  margin: 0 40px 0 0;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .text-blk.description {
    font-size: 20px;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .text-blk.subHeadingText {
    font-size: 22px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin: 30px 0 0 40px;
  }

  .allText.bottomText {
    margin: 30px 40px 0 0;
  }
}

@media (max-width: 768px) {
  .mainImg {
    width: 90%;
  }

  .allText {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 25px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 25px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin: 40px 0 0 0;
  }

  .responsive-container-block.Container {
    margin: 80px auto 50px auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin: 50px auto 50px auto;
  }

  .allText.bottomText {
    margin: 40px 0 0 0;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .mainImg {
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .text-blk.subHeadingText {
    font-size: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .text-blk.description {
    font-size: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
}

.grid > div {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2e3e3;
    padding: 10px;
    border-radius: 5px;
    box-shadow: #f2e3e3;
}

.grid > div img {
    max-width: 100%;
    height: auto;
}
