*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-track{
  background-color: var(--secondary-color);
 
  
}
::-webkit-scrollbar-thumb{
  background: var(--cta-color);

}
/* Scroll to top button */
#scrollTopBtn {
  position: fixed;
  bottom: 60px;
  right: 5px;
  background: #004080;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  z-index: 1100;
}
#scrollTopBtn:hover {
  background: #0066cc;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

.word-break-fix {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a{
  text-decoration: none;
}
body{
  font-family: Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  background-size: cover;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--text-color);
  width: 100%;
}
@media (max-width: 768px) {
    body {font-family: sans-serif, arial;}    
}
:root{
  --primary-color: #7D3D00;
  --Dark-color: #000;
  --cta-color:#64dc78;
  --text-color:#333;
  --secondary-color:  #fff;
  

}
/*SCROLL ANIMATION*/
   
   /*   
.box{
  opacity: 0;
  transform: translateX(400%);
  transition: transform 2s ease-in-out;
}
.box.show{
  transform: translateX(0);
  opacity: 1;
}
*/



.loader{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: 1s, visibility 1s;
}
.loader img{
  height: 200px;
  
}

.disapear{
  opacity: 0;
  visibility: hidden;
}

.whatsapp{
  position: fixed;  
  right: 1px;
  bottom:0px;
  width: 50px; 
  z-index: 2100;
}


/*POP UP FORM*/

.popup-form{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6000;
  background-color: var(--primary-color);
  width: 90vw;
  height: 100%;
  
 
}
.btn-primary{
    border: none;
}
.btn-secondary{
    border: none;
}
.holder{
  flex-wrap: nowrap;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 90%;
  height: 90vh;
  justify-content: start;
  align-items: center;
  background-color:lightgrey;
  overflow: scroll;
  border-radius: 10px;
  padding: 10px;
}

.holder form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

fieldset{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px;
}




form p {
  font-size: 1rem;
  color:var(text-color);
}

fieldset {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  width: 100%;
}

legend {
  font-weight: bold;
  color: #333;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: 500;
}
.lab{
  display: inline;
  width: 100px;
  margin-top: 10px;
}


input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input[type="checkbox"] {
  margin-right: 10px;
}



.popup-form .close-btn{
  position: absolute;
  top: 20px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: red;
  cursor: pointer;
  border-style: none;
  border-radius: 50px;
  z-index: 2000;
}



/* SQUARE TRAIL */

.square-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 2200;
}

.square {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  pointer-events: none;
  z-index: 3100;
  border-radius: 10px;
  pointer-events: none;
  /*transform: translate(-50%, -50%);*/
  animation: squared 5s linear;
  opacity: 0;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
@keyframes squared {
  0% {
      transform: translate(-50%, -50%);
      opacity: 1;
      filter: hue-rotate(0deg);
  }
  100% {
      transform: translate(-50%, -3000%);
      opacity: 0;
      filter: hue-rotate(720deg);}
}


/*MENU SIDE*/
.menul{
  position: sticky;
  border-style: none;
  background-color: var(--primary-color);
  margin: 0px;
  top: -1px;
  left: 0px;
 height: 60px;
 width: 100vw;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 outline: none;
 
 box-shadow: 0px 2px 2px rgb(8, 8, 8, 0.5);
 z-index: 2000;
}
.logo-side{
 display: flex;
 justify-content: center;
 align-items: center;
 height: 100%;
 width: 150px;
 margin-left: 15px;

}
.logo-side img{
  height: 50px;
  width: 100px;

}


/*NAV SIDE!*/
.nav-side1{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1;
  flex-direction: row;
  padding-left: 0px;
  padding-right: 10px;
}
.nav-item:hover .nav-link{
  color: var(--cta-color);
}
@media (max-width:993px) {
  .navbar-nav{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 70px;
    right: 10px;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    width: 100vw;
    height: 70vh;
    padding: 20px;
    transition: ease-in;
    overflow: scroll;
  }
 
}
.nav-link{
  color: var(--secondary-color);
}
.navbar-toggler{
  border: solid 2px var(--cta-color);
  background-color: var(--cta-color);
}
.navbar-toggler-icon{
  border: solid 2px var(--cta-color);
}

.aha{
  color: var(--secondary-color);
  border-bottom: solid 2px var(--cta-color);
}

.aha a{
  color: var(--secondary-color);
}

.dropdown, .navbar-collapse, .dropdown-menu{
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.dropdown-item{
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.dropdown-item:hover{
  background-color: var(--primary-color);
  color: var(--cta-color);
}


.primary-btn{
  color: var(--secondary-color);
  font-size: 16px;
  background-color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  border-style: none;
  cursor: pointer;
  transition: ease-in-out;
  transition-duration: 0.1s;
  min-width: 100px;
  overflow: none;
  opacity: 1;
  margin-left: 40px;
  overflow: none;
  align-items: center;
  justify-content: center;
  margin: 5px;

}
.primary-btn:hover{
  background-color: var(--cta-color);
}

.secondary-btn{
  color: var(--text-color);
  font-size: 16px;
  border: none;
  outline-style: none;
  background-color: var(--cta-color);
  padding: 10px 20px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  border-style: none;
  cursor: pointer;
  transition: ease-in-out;
  transition-duration: 0.1s;
  min-width: 100px;
  overflow: none;
  cursor: pointer;
  transition: ease-in-out;
  transition-duration: 0.1s;
  transition: ease;
  animation-name: apear21;
  animation-timing-function: 2s;
  animation-duration: 1s;
  animation-delay: 2.4s;
  transition-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  align-items: center;
  margin: 5px;

}
@keyframes apear21{
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
  
}


.secondary-btn:hover{
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 5px;
}
.hero-btns{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
   background: none;
}








  

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 0;
    }

    .btn-primary, .btn-secondary {
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

    .btn-primary {
      background-color: #000046;
      color: #fff;
    }

    .btn-secondary {
      background-color: #64dc78;
      color: #000;
    }




    /*SECTION 2*/

.section2{
  width: 100vw;
  height: 80vh;
  position: relative;
  display: flex;
  flex-direction: row;
  /*background-color: #009CFD;*/
}
.section2move{
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: row;
  animation-name: movesky;
  animation-timing-function: 0.2s;
  animation-duration: 100s;
  transition: ease-in-out;
  transition-duration: 3s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;

}
.caro{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 80vh;

}
.carousel{
  width: 100vw;
}
.carousel-item{
  height: 80vh;
}
.carousel-caption h5{
  color: var(--secondary-color);
 font-size: 40px;
 font-weight: bolder;

}
.carousel-caption p{
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: bold;
}

@keyframes movesky {
    from{
         transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
  
}
.section2move img{
  width: 100vw;
  height: 80vh;
  margin: 0px;
  border: none;
}

.hero{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 80vh;
  background-color: rgba(5, 5, 5, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}

h1{
  color:  var(--cta-color);
  text-align: center;
  font-size: 2rem;
  font-weight: bolder;
  overflow: none;
  margin: 5px;
  transition: ease;
  animation-name: bounce;
  animation-timing-function: 5s;
  animation-duration: 1s;
  animation-delay: 1s;
  transition-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;

}
@keyframes bounce {
  0%
  {
      transform: translateY(-200px); opacity: 1;
  }
  20%,60%{
      transform: translateY(0); opacity: 1;
  }
  40% {
      transform: translateY(-30px); opacity: 1;
  }
  80% {
      transform: translateY(-15px); opacity: 1;
  }
  100% {
      transform: translateY(0); opacity: 1;
  }
}



.hero p{
  color: var(--secondary-color);
  text-align: center;
  margin: 5px;
  font-size: 0.9rem;
  width: auto;
  max-width: 700px;
  transition: ease;
  animation-name: apear;
  animation-timing-function: 2s;
  animation-duration: 1s;
  animation-delay: 1.7s;
  transition-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;

}
@keyframes apear {
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
  
}



    /*OTHERS*/
    .about, .services, .why-choose, .portfolio, .blog-preview, .contact {
      padding: 40px 10px;
      background-color: #f9f9f9;
    }
    h2{
      color: var(--cta-color);
      font-weight: bold;
      font-size: 2rem;
    }
  .about{
      background: url(images/event-people.jpg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    .about p{
      color: var(--secondary-color);
    }

    .services .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .service-card1 {
      background: url(images/event-plan.jpg);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }
    .service-card1:hover{
      box-shadow: 0 0 20px rgba(249, 250, 249, 0.4);
    }
    .service-card2 {
      background: url(images/travel-p.jpg);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }
    .service-card2:hover{
      box-shadow: 0 0 20px rgba(249, 250, 249, 0.4);
    }
    .service-card3 {
      background: url(images/business-promotion-4.jpeg);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }
    .service-card3:hover{
      box-shadow: 0 0 20px rgba(249, 250, 249, 0.4);
    }
.service-card-cover{
  background-color: rgba(78, 77, 77, 0.8);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  width: 100%;
}
.service-card-cover h3{
  color: var(--secondary-color);
}
.service-card-cover p{
  color: var(--secondary-color);
}
.serv{
  display: flex;
  flex-direction: column;

}
.serv1{
  display: flex;
  flex-direction: column;
  flex: 1;
}
.serv1 img{
  max-width: 300px;
  height: max-content;
}




 .why-choose{
  background-color: var(--primary-color);
 }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
     
    }
    .why-card{
      border-radius: 10px;
      background-color: var(--text-color);
      padding: 10px;
    }
    .why-card h5{
      color: var(--secondary-color);
      font-size: 15px;
      font-weight: bold;
    }
    .why-card p{
      color: var(--secondary-color);
      font-size: 12px;
    }

    .projects-grid{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .project-card{
      background-color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 0 20px rgb(160, 159, 159, 0.6);
      cursor: pointer;
    }
    .project-card:hover{
      background-color: var(--primary-color);
      box-shadow: 0 0 20px rgba(90, 221, 85, 0.6);
    }
    .project-card h5{
      color: var(--text-color);
    }
    .project-card p{
      color: var(--text-color);
    }
    .project-card:hover h5{
      color: var(--secondary-color);
    }
    .project-card:hover p{
      color: var(--secondary-color);
    }
    .project-card img{
      width: 280px;
      height: 220px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgb(160, 159, 159, 0.6)
    }
    .project-card h5{
     text-align: center;
    }
    .project-card p{
      text-align: center;
    }




/*BLOG Preview*/

.blog-preview ul li{
  color: var(--secondary-color);
}
.bloger{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--text-color);
  clip-path: polygon(0 8%, 83% 0, 100% 91%, 20% 99%);
  padding: 20px;
  flex-wrap: wrap;
}




    /*FORM*/
/*
    form input, form select, form textarea {
      width: 100%;
      margin-bottom: 10px;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    form button {
      border: none;
      cursor: pointer;
    }

*/
    
    
    /*Footer*/

    footer {
      background:  var(--primary-color);
      color: var(--secondary-color);
      padding: 40px 20px;
      text-align: center;
    }

    .footer-links, .social-icons {
      margin-bottom: 20px;
    }

    .footer-links a, .social-icons a {
      color: var(--secondary-color);
      margin: 0 10px;
      text-decoration: none;
    }
    .footer-links a:hover{
      color: var(--cta-color);
     
    }
  
    .social-icons a:hover{
      color: var(--cta-color);
     
    }
    .btn-secondary:hover{
     opacity: 0.9;
     color: var(--secondary-color);
    }

    .newsletter input {
      width: 70%;
      padding: 10px;
      margin: 10px;
    }

    .newsletter button {
      padding: 10px 20px;
    }
 
/*Advertising Section*/
.advertising{
 position: relative;
}
.line{
 position: absolute;
 left: -10px;
 top: -10px;
 z-index: 5;
}
.line img{
  width: 150px;
  height: 150px;
}

.advert{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  
 
}
.advert1{
  flex: 1;
  min-width: 250px;
  z-index: 6;
}
.advert2{
 display: flex;
 flex-direction: column;
 justify-content: center;
 flex: 1;
 align-items: center;
 position: relative;
 align-items: center;
 min-width: 250px;

}


.clockinga{
  height: 0px;
  width: 300px;
  position: absolute;
  top: 140px;
  left: -8px;
  animation-name: roll;
  animation-iteration-count: 1;
  animation: 60s roll infinite linear;
  transition: ease;
}
@keyframes roll {
  from{
    transform: rotate(0);
}
to{
   transform: rotate(360deg);
}
}
.clocking0a{
  height: 300px;
  width: 0px;
  position: absolute;
  top: -6px;
  left: 140px;
  animation-name: roll;
  animation-iteration-count: 1;
  animation: 60s roll infinite linear;
  transition: ease;
}

@keyframes roll {
  from{
    transform: rotate(0);
}
to{
   transform: rotate(360deg);
}
}


.clocking1a{
  position: absolute;
  background-color: rgb(233, 10, 147);
  width: 20px;
  height: 20px;
  left: -20px;
  top: -10px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.clocking2a{
  position: absolute;
  background-color: var(--cta-color);
  width: 20px;
  height: 20px;
  top: -20px;
  right:-20px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.clocking0a .clocking1a{
  position: absolute;
  background-color: blueviolet;
  width: 20px;
  height: 20px;
  left: 0px;
  top: -20px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.clocking0a .clocking2a{
  position: absolute;
  background-color:  blue;
  width: 20px;
  height: 20px;
  top: 300px;
  left: 10px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}



/* FAQ Section */
.faq-section {
  text-align: center;
}

.faq-accordion {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  font-size: 1.25em;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: background var(--transition-speed) ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--dark-text);
  font-size: 1.05em;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
