/* style.css */
:root {
  --brand-color: #2144c0;
  --dark-text: #1d1d1f;
  --light-bg: #f9f9f9;
  /* --light-bg: #e8e8e8; */
  --heading-font: "Cabin Sketch", sans-serif;
  --body-font: "Roboto", sans-serif;
}

html {
  --top-spacing: 130px;
  scroll-padding-top: var(--top-spacing);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}


body {
  /* background-image: url("https://www.digikoredigital.com/assets/images/body-bg.jpg"); */
  font-family: var(--body-font);
  color: var(--dark-text);
}

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

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bg_light {
  /* background-color: var(--light-bg); */
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, #f3f3f3 100%);
}

/* General Styling */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--dark-text);
  font-weight: 700;
}

.section-heading {
  position: relative;
  display: block;
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 1;
  font-weight: 700;

}

.section-heading span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--brand-color);
  font-weight: 700;
}

/* .heading__bg {
  margin: 0 auto;
  display: block;
  width: 15%;
  position: absolute;
  left: 0;
  right: 0;
} */
/* .second_section img, .third_section img, .four_section img, .sixth_section img, .seven_section img {
    margin: auto;
} */
/* .seven_section img {
  filter: grayscale(100%);
} */

/* .section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--brand-color);
    border-radius: 2px;
} */

section {
  padding: 40px 0;
}

/* Navbar */

.navbar {
  /* background-color: rgba(255, 251, 245, 0.9); */
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-nav {
  align-items: center;
}

.fixed-top {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: #fff;
}

.navbar-brand .logo img {
  width: 180px;
}

.nav-link {
  color: var(--dark-text);
  font-weight: 700;
  padding: 8px 12px !important;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-color);
}

/* .btn-brand {
  background-color: var(--brand-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-brand:hover {
  border: 2px solid var(--brand-color);
  transform: translateY(-2px);
} */
.cta_btn,
.btn-brand {
  display: inline-block;
  padding: 8px 28px;
  background: linear-gradient(135deg, #2144c0, #3a5de0);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta_btn {
  margin-top: 1rem;
}

.cta_btn:hover,
.btn-brand:hover {
  background: linear-gradient(135deg, #3a5de0, #2144c0);
  transform: translateY(-3px);
  color: #ffffff;
}

.cta_btn:active,
.btn-brand:active {
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
  /* min-height: 80vh; */
  background-image: url("./img/images/hero-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;


}

.here_left_content {
  position: relative;
}

.hero_img {
  max-width: 180px;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
}
  #home .right_image{
  text-align: center;
  padding: 1rem;
  
 }
/* .arrow_line {
  position: absolute;
  top: 23%;
  left: -18%;
} */


.hero-globe-right {
  animation: spin 20s linear infinite;
  transform-origin: center center;
  /* animation: spin 60s linear 0s infinite normal; */
}

@keyframes spin {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.bouncing_img {
  animation: up-down linear 4s infinite;
}

@keyframes up-down {
  0% {
    transform: translate(1px, 20px);
  }

  24% {
    transform: translate(1px, 30px);
  }

  50% {
    transform: translate(1px, 12px);
  }

  74% {
    transform: translate(1px, 22px);
  }

  100% {
    transform: translate(1px, 22px);
  }
}

.announcement-text.large-announcement {
  font-size: 2.2rem;
}

/* Entertainment Carousel */
.entertainment-section {
  background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, #f3f3f3 100%);
  border-radius: 30px;
}

.sixth_section {
  background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, #f3f3f3 100%);
}

#about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, #f3f3f3 100%);
}

#what_makes_us {
  background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, #f3f3f3 100%);
}

#testimonials {
  background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, #f3f3f3 100%);

}

.entertainment-section .carousel-control-prev-icon,
.entertainment-section .carousel-control-next-icon {
  background-color: var(--dark-text);
  border-radius: 50%;
}

.entertainment-section .carousel img {
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.entertainment-section h4 {
  font-family: var(--body-font);
  font-weight: 700;
  color: var(--dark-text);
}

/* Services Section */
.services-section {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-attachment: fixed;
  /* background-image: linear-gradient(#e8e8e842, #e8e8e896), url(./img/images/patchbg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, #f3f3f3 100%);
}

.testimonials-section {
  background-color: #fff;
}

.customer_desc {
  max-height: 110px;
  overflow-y: auto;
  padding-right: 5px;
}

.customer_desc::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.customer_desc::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.customer_desc::-webkit-scrollbar-thumb {
  background: #2144c0;
  border-radius: 10px;
}

.flying-over-bg,
.testimonials_heading {
  padding: 20px 40px;
  border-radius: 50px;
  /* margin-bottom: 60px; */
  background-image: url("./img/headings-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.fifth_section .flying-over-bg {
  margin-bottom: 0;
}

.flying-over-bg h2 {
  margin: 0;
}

.flying-over-bg h2::after {
  display: none;
}

.service-number {
  font-size: 60px;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--brand-color);
}

.service-title {
  margin-top: -20px;
  font-size: 45px;
  line-height: 1;
  font-weight: 700;
}

.service-title::after {
  left: 0;
  transform: translateX(0);
}

/* About Section */
.pointer_list li {
  margin-bottom: 10px;
  padding-left: 30px;
  list-style: none;
  position: relative;
}

.pointer_list li::before {
  content: "➣";
  position: absolute;
  left: 0px;
  font-size: 22px;
  color: var(--brand-color);
  top: -5px;
}

.team-member-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-photo {
  max-width: 100%;
  height: auto;
}

/* Testimonials */

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid #eee;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  margin-bottom: 0.5rem;
}

.testimonial-card h6 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-card span {
  font-size: 0.8rem;
  color: #999;
}

/* Contact Form */
.contact-form {
  max-width: 800px;
  margin-top: 40px;
}

.contact-form .form-control {
  background-color: #fff;
  padding: 15px;
  border-radius: 0;
  border: none;
  border: 1px solid #eaddcf;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.contact-form .form-control:focus {
  background-color: #fff;
  border-color: var(--brand-color);
  box-shadow: none;
}

/* Footer */
.footer-section {
  /* padding-top: 60px; */
  padding-bottom: 20px;
  background-color: var(--dark-text);
  color: #fffbf5;
}

.footer-section h2 {
  color: #fffbf5;
}

.footer-section p {
  color: #633b02;
}

.footer-globe {
  max-width: 80%;
  margin: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 30px;
}

.footer-social a {
  color: #fffbf5;
  font-size: 1.5rem;
  margin: 0 10px;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--brand-color);
}

.copyright {
  font-size: 0.9rem;
}

.bottomline {
  text-align: center;
}

.service-item .service-image,
.about_rightimg {
  padding: 1.5rem;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 50px;
  right: 20px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 25px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}


@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.wave {
  margin-bottom: -2px;
}

/* Responsive adjustments */
@media only screen and (min-width: 768px) and (max-width: 991.98px) {

  .service-item {
    text-align: center;
  }

  .service-item .service-image {
    margin-top: 0px;
  }

  .team-member-card {
    text-align: center;
  }

  .hero-globe-left {
    max-width: 100px;
  }

  .hero-title {
    font-size: 60px;
  }

  .section-heading {
    font-size: 45px;
  }

  section {
    padding: 25px 0;
  }

  .bottomline img {
    margin: 0.5rem auto !important;
  }

  .bottomline {
    text-align: center;
  }

  .service-number {
    font-size: 40px;
  }

  .service-title {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  section {
    padding: 20px 0;
  }

  .hero-section {
    padding-top: 40px;
    text-align: center;
  }
  #home .right_image{
  padding: 2rem;
 }

  .hero-section .text-start {
    text-align: center !important;
  }

  .hero-globe-left {
    max-width: 75px;
  }

  .announcement-text {
    font-size: 1.5rem;
  }

  .announcement-text.large-announcement {
    font-size: 1.8rem;
  }

  .testimonial-card {
    margin-bottom: 20px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .cta_btn {
    margin-bottom: 1rem;
  }

  .section-heading {
    font-size: 35px;
  }

  .bottomline {
    max-width: 80%;
    margin: auto;
  }

  .service-title {
    font-size: 25px;
    margin-top: 0;

  }

  .service-number {
    font-size: 35px;
  }

  .flying-over-bg,
  .testimonials_heading {
    padding: 20px;
    margin-bottom: 1rem;
  }

  .service-item .service-image {
    margin-top: 0;
  }

  .team-member-card {
    padding: 20px;
    border-radius: 20px;

  }

  .service-text {
    margin-top: 1rem;
  }

}