@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;
}

/* Header section */

header {
    width: 100%;
    padding-left: 100px;
    background-color: #222;
    height: 130px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

header nav a {
    color: #fff;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 16px;
    transition: 0.2s;
    text-decoration: none;
}

a.active {
    background: chocolate;
    border-radius: 2px;
}

a:hover {
    background: chocolate;
    border-radius: 2px;
}

/* Header section */



/* carousel */

.carousel {
    width: 100vw;
    height: 100vh;
    margin-top: -50px;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3) {
    left: 67%;
}

.carousel .list .item:nth-child(4) {
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5) {
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6) {
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7) {
    left: calc(67% + 800px);
    opacity: 0;
}

.list .item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content {
    display: block;
}

.content .title {
    font-size: 70px;
    text-transform: uppercase;
    color: chocolate;
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn {
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1) {
    margin-right: 15px;
}

.content .btn button:nth-child(2) {
    background: transparent;
    color: chocolate;
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover {
    background-color: chocolate;
    color: #fff;
    border-color: chocolate;
}


@keyframes animate {

    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */






/* next prev arrows */

.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: chocolate;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover {
    background: #fff;
    color: #000;
}


/* time running */
.carousel .timeRunning {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: chocolate;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {

    from {
        width: 0%;
    }

    to {
        width: 100%;
    }

}


/* Responsive Design */

@media screen and (max-width: 999px) {

    header {
        padding-left: 50px;
        width: 100%;
        height: 100px;
    }

    .list .item .content {
        left: 50px;
    }

    .content .title,
    .content .name {
        font-size: 70px;
    }

    .content .des {
        font-size: 16px;
    }

}

@media screen and (max-width: 690px) {
    header nav a {
        font-size: 14px;
        margin-right: 0;
    }

    .list .item .content {
        top: 40%;
    }

    .content .title,
    .content .name {
        font-size: 45px;
    }

    .content .btn button {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.revpara {
    background-color: white;
    height: 450px;
    width: 600px;
    margin-top: -550px;
    position: absolute;
    margin-left: 55%;
    border-radius: 10px;
    box-shadow: 3px 0px 33px 0px rgba(0, 0, 0, .1);
}

.revtext {
    font-size: 30px;
    font-weight: 800;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 450px;
    margin-left: 50px;
}

.revtext1 {
    font-size: 18px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 450px;
    margin-left: 50px;
}

@media screen and (max-width:943px) {
    .revpara {
        height: 350px;
        width: 100%;
        margin-top: 100px;
        position: relative;
        margin-left: 0px;
    }

    .revtext {
        position: absolute;
        font-size: 25px;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        width: 90vw;
        margin-left: 10px;
        margin-top: -90px;
    }

    .revtext1 {
        position: absolute;
        font-size: 18px;
        line-height: 25px;
        word-spacing: 5px;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        width: 90vw;
        margin-left: 10px;
        margin-top: -60px;
    }
}

/*customer review*/
.slider-container {
    overflow-x: auto;
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding: 40px;
}

.review-box {
    flex: 0 0 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    padding: 20px;
    text-align: center;
}

.review-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.review-name {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.review-text {
    font-size: 0.95em;
    color: #555;
}

/* Optional: Hide scrollbar */
.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/*about us page*/
.aboutimg {
    position: relative;
    width: 55vw;
    height: 75vh;
    float: right;
}

.aboutbox {
    position: relative;
    margin-left: 0%;
    margin-top: 130px;
    font-family: sans-serif;
}

.abouthead1 {
    color: #5d5d61;
    font-size: 40px;
    font-weight: 900;
    margin-top: -130px;
    margin-left: 30px;
    line-height: 45px;
}

.aboutpara {
    width: 95%;
    line-height: 30px;
    letter-spacing: 2px;
    word-spacing: 4px;
    margin-left: 40px;
    margin-top: 30px;
}

.missionbox {
    padding: 30px;
}

.missionhead {
    text-align: center;
    font-size: 30px;
    font-family: sans-serif;
    font-weight: 900;
    color: #776B5D
}

.missionpara {
    text-align: justify;
    width: 95%;
    line-height: 30px;
    letter-spacing: 2px;
    word-spacing: 4px;
    margin-left: 40px;
}

@media screen and (max-width:942px) {

    .aboutimg {
        position: relative;
        width: 100vw;
        height: 50vh;
        margin-top: 50px;
    }

    .aboutbox {
        position: relative;
        margin-left: 0%;
        margin-top: 0px;
        font-family: sans-serif;
    }

    .abouthead1 {
        font-size: 30px;
        font-weight: 900;
        margin-top: 200px;

    }

    .aboutpara {
        width: 95%;
        line-height: 25px;
        letter-spacing: 1px;
        word-spacing: 3px;
        margin-left: 40px;
        margin-top: 10px;
        padding-left: 0px;
        width: 80vw;
        text-align: justify;
    }

    .missionpara {
        margin-left: 0px;
    }
}
.tfbox {
    height: 50px;
    margin-top: 175px;
    color: #555;
}

.tftext {
    font-size: 20px;
    padding-top: 15px;
    color: black;
    font-weight: 800;
}

.tflink {
    color: black;
}

@media screen and (max-width:748px) {


    .tfbox {
        margin-top:150px;
    }

    .tftext {
        font-size: 13px;
        padding-top: 15px;
        color: black;
        font-weight: 800;
    }
}

/*  inquary card div elements*/
.cardname {
    text-align: center;
    font-family: Californian FB;
    font-size: 40px;
    margin-top: 300px;
    color: #5d5d61;
}

.carddivl {
    height: auto;
    margin-top: 100px;
}

.cardimg {
    height: 60vh;
    width: 43vw;
    margin-top: 50px;
    margin-left: 30px;
    border-radius: 20px;
}

.cardimg2 {
    position: relative;
    height: 60vh;
    width: 43vw;
    margin-top: 50px;
    margin-right: 30px;
    border-radius: 20px;
    float: right;
}

.card1 {
    position: relative;
    height: 80vh;
    width: 100%;
    background-color: #E2DADE;
    margin-top: 20px;
    box-shadow: 0px 0px 5px black;
}

.card2 {
    height: 80vh;
    width: 100%;
    background-color: #E2DAd0;
    margin-top: -30px;
    box-shadow: 0px 0px 5px black;
}

.cardheading {
    position: relative;
    color: #5d5d61;
    padding-left: 10px;
    font-size: 50px;
    margin-top: -400px;
    margin-left: 700px;
}

.cardheading2 {
    color: #5d5d61;
    padding-left: 10px;
    font-size: 50px;
    padding-top: 50px;
    margin-left: 100px;
}

.cardpara {
    position: relative;
    font-family: Agency FB;
    font-size: 20px;
    margin-left: 750px;
    padding: 2px;
}

.cardpara2 {
    width: 700px;
    font-family: Agency FB;
    font-size: 20px;
    margin-left: 50px;
    padding: 2px;
}

.inquary {
    height: 30px;
    width: 100px;
    text-align: center;
    background-color: #ff2424;
    opacity: 0.8;
    padding-top: 10px;
    border-radius: 5PX;
    margin-left: 80%;
    margin-top: 150px;
}

.inquary:active {
    opacity: 0.6;
}

.inquary2 {
    height: 30px;
    width: 100px;
    text-align: center;
    background-color: #ff2424;
    opacity: 0.8;
    padding-top: 10px;
    border-radius: 5PX;
    margin-left: 35%;
    margin-top: 150px;
}

.inquaryanchor {
    text-decoration: none;
    color: #E2DAD6;
}

@media screen and (max-width:943px) {
    .cardname {
        font-size: 30px;
        margin-top: 300px;
    }

    .carddivl {
        margin-left: 10px;
    }

    .card1 {
        width: 95vw;
    }

    .card2 {
        width: 95vw;
        height: px;
        margin-top: 20px;
    }

    .cardimg {
        width: 80%;
        height: 200px;
        margin-left: px;

    }

    .cardimg2 {
        position: absolute;
        width: 80%;
        height: 200px;
        margin-top: 50px;
        margin-left: 30px;
    }

    .cardheading {
        font-size: 20px;
        margin-top: -240px;
        margin-left: 40px;
    }

    .cardheading2 {
        font-size: 20px;
        margin-left: 40px;
        padding-top: 15px;
    }

    .cardpara {
        width: 80%;
        font-size: 15px;
        margin-top: 260px;
        margin-left: 40px;
    }

    .cardpara2 {
        width: 80%;
        font-size: 15px;
        margin-top: 250px;
    }

    .inquary {
        height: 20px;
        width: 80px;
        margin-top: 50px;
        margin-left: 60%;
        padding: 5px;
    }

    .inquaryanchor {
        font-size: 15px;
    }

    .inquary2 {
        position: absolute;
        height: 20px;
        width: 80px;
        margin-top: 50px;
        margin-left: 60%;
        padding: 5px;
    }

    .inquaryanchor2 {
        font-size: 15px;
    }
}

/*contact form*/
.contact-form {
      background: rgba(255, 255, 255, 0.95);
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
      width: 50%;
      animation: slideIn 1s ease-out;
      background: url('4289861.jpg') no-repeat center center fixed;
      background-size: cover;
      font-family: 'Segoe UI', sans-serif;
      justify-content: center;
      align-items: center;
      height: 100vh;
      opacity: 0.8;
    }
@media screen and (max-width:943px){
   .contact-form
    {
        width:100%
    }
    
}
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .contact-form h2 {
      text-align: center;
      margin-bottom: 25px;
      color: #333; 
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px;
      border: none;
      border-bottom: 2px solid #ccc;
      background: transparent;
      outline: none;
      font-size: 16px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #00bcd4;
      box-shadow: 0 2px 6px rgba(0, 188, 212, 0.4);
    }

    .form-group textarea {
      resize: vertical;
      height: 100px;
    }

    .btn-submit {
      width: 100%;
      background: #00bcd4;
      color: white;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }

    .btn-submit:hover {
      background: #0097a7;
      transform: scale(1.03);
    }

    @media (max-width: 600px) {
      .contact-form {
        padding: 25px;
      }
    }
    .backimg{
        background: rgba(255, 255, 255, 0.95);
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
      width: 100%;
      animation: slideIn 1s ease-out;
      background: url('9.jpg') no-repeat center center fixed;
      background-size: cover;
      font-family: 'Segoe UI', sans-serif;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .textba{
        font-size: 100px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-transform: initial;
        text-decoration: wavy;
        text-align: center;
        margin-top: -200px;
    }
    /*footer*/
    .site-footer {
  background-color: #111;
  color: #f1f1f1;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: -150px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #00bcd4;
  margin-bottom: 15px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    width: 100%;
  }
}
.fixed-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.fixed-icons .icon {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.fixed-icons .icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.fixed-icons .icon img {
  width: 32px;
  height: 32px;
}