/* style */
    :root {
      --accent: #9c5c1c;
      --accent-light: #f3e58d;
      --dark: #0d1b25;
      --gold-dark: #9c5c1c;
      --gold-light: #f3e58d;
      --black: #000000;
      --white: #ffffff;
      --text: #222222;
    }
   * {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    /* ===== Top Header ===== */
   .top-header{
    background-color: rgba(0, 0, 0, 0.9);
    color:white;
    font-size:15px;
   }
   .header1 .social-icons{
    margin-left: 40%;
    margin-bottom: 10px;
}
@media screen  and (max-width: 768px){
  .header1 .social-icons{
    margin-left: 0%;
}
.top-text{
  text-align: center;
}
}
/* Social Icons */

.top-text{
  font-size: 15px;
  color: white;
}
.header1 .social-icons a {
  display: inline-block;
  margin-right: 12px;
 background: black;
 border: 2px solid white;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  transition: 0.3s ease;
}

.header1 .social-icons a:hover {
 background: linear-gradient(135deg, #9c5c1c, #f3e58d);
  color: black;
  border: 2px solid white;
  box-shadow: 0px 0px 10px 0px white;
  transform: translateY(-4px);
}
/* first header end */
    /* ===== Header with Video ===== */
    header {
      position: relative;
      height: 500px;
      overflow: hidden;
      color: white;
      width: 100%;
    }
    header video {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    header::after {
      content: "";
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      /*background: rgba(0, 0, 0, 0.6);*/
      z-index: 1;
    }

    /* ===== Navbar ===== */
    .navwrap {
      position: absolute; top: 40px; left: 0; right: 0;
      z-index: 4; display: flex; justify-content: center;
      pointer-events: none;
    }
    nav.site-nav {
      pointer-events: all; width: 100%; 
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 26px; border-radius: 6px;
      background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.06));
      transition: all 0.3s ease;
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand .mark {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: #081018; font-weight: 700; font-size: 18px;
    }
    .brand .name { color: var(--accent); font-weight: 700; font-size: 20px; }
    .navlinks { display: flex; align-items: center; gap: 8px; list-style: none; }
    .navlinks a {
      color: rgba(255,255,255,.95); text-decoration: none;
      padding: 10px 14px; border-radius: 6px; font-weight: 600; transition: all .25s ease;
    }
    .navlinks .active a {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018;
    }
    .navlinks a:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018;
    }
    .cta {
      display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid var(--accent);
      padding: 8px 18px;
      background: transparent; color: #fff;
      font-weight: 700; text-decoration: none; transition: all .3s ease;
    }
    .cta:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018; border-color: transparent;
    }

    /* ===== Hamburger ===== */
    .hamburger { display: none; width: 42px; height: 40px;
      background: transparent; border: none; cursor: pointer;
      align-items: center; justify-content: center; z-index: 1001;
    }
    .hamburger .bar { width: 26px; height: 3px; background: #fff; border-radius: 2px; position: relative; transition: all .3s; }
    .hamburger .bar::before, .hamburger .bar::after {
      content:""; position:absolute; width:100%; height:3px; background:#fff; border-radius:2px; transition: all .3s;
    }
    .hamburger .bar::before { top:-8px; } .hamburger .bar::after { top:8px; }
    .hamburger.active .bar { background:transparent; }
    .hamburger.active .bar::before { transform: rotate(45deg) translate(5px,5px); background: var(--accent); }
    .hamburger.active .bar::after { transform: rotate(-45deg) translate(5px,-5px); background: var(--accent); }

    @media (max-width:900px){
      .navlinks { position: fixed; top:-100%; left:0; width:100%; background: rgba(13,27,37,0.98);
        flex-direction: column; align-items:center; gap:25px; padding:100px 0 40px; transition: top .4s ease;
      }
      .navlinks.active { top:0; }
      .cta { display:none; }
      .hamburger { display:flex; }
    }

    /* ===== Slider ===== */
    .slider {
      position: absolute; top: 40%; left: 50%;
      transform: translate(-50%, calc(-50% + 100px)); /* text 100px lower */
      z-index: 3; width: 90%; max-width: 900px;
      text-align: center; color: white;
    }
    .slide { display: none; opacity: 0; transform: translateX(20px); transition: all 0.8s ease-in-out; }
    .slide.active { display: block; opacity: 1; transform: translateX(0); }
    .slide h1 { font-size: 36px; margin-bottom:40px; }
    .slide p { font-size: 18px; margin-bottom: 30px; }
    .slide button {  font-size: 16px;  background: transparent; color: #fff; cursor: pointer; transition: all .3s ease; }

    /* Slider nav arrows */
    .slider-arrows { position: absolute; top: 30%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); z-index: 5; padding: 0 20px; }
    .slider-arrows i { font-size: 26px; color: transparent; background: transparent; padding: 10px; border-radius: 50%; cursor: pointer; transition: all .3s; }
    .slider-buttons span { display: inline-block; width:12px; height:12px; background: rgba(255,255,255,.5); margin:0 5px; border-radius:50%; cursor:pointer; transition: all .3s; }
    .slider-buttons span.active { background: var(--accent); }
    /* Heading from top */
@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text and button from bottom */
@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation only on active slide */
.slide h1 {
  opacity: 0;
  font-size:25px;
}
.slide p {
  font-size:15px;
}

.slide p,
.slide button {
  opacity: 0;
}

.slide.active h1 {
  animation: slideFromTop 1s ease forwards;
}

.slide.active p {
  animation: slideFromBottom 1s ease 0.3s forwards; /* delay for stagger */
}

.slide.active button {
  animation: slideFromBottom 1s ease 0.5s forwards; /* delay for button */
}

    /* Button with animated border effect */
   @media only screen and (max-width: 768px) {
  .slider-arrows {
    display: none;
  }

  header {
    height: 600px;
  }

  /* Move slider text slightly up */
  .slider {
    transform: translate(-50%, calc(-50% + 50px)); /* reduce 100px to 50px */
  }

  /* Optional: reduce heading and paragraph size for small screens */
  .slide h1 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .slide p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .slide button {
    font-size: 14px;
    padding: 12px 28px;
  }
}

.button_effect {
  position: relative;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 35px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
}

/* Top-left corner */
.button_effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid #9c5c1c;
  border-left: 2px solid #9c5c1c;
  transition: all 0.4s ease;
}

/* Bottom-right corner */
.button_effect::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #9c5c1c;
  border-right: 2px solid #9c5c1c;
  transition: all 0.4s ease;
}

/* Hover – smoothly expand both borders to full box */
.button_effect:hover::before,
.button_effect:hover::after {
  width: 100%;
  height: 100%;
}


    .intro-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 80px 8%;
      background: linear-gradient(120deg, white 50%, rgba(0,64,128,0.05) 50%);
    }

    .intro-text {
      flex: 1 1 45%;
      animation: slideInLeft 1s ease forwards;
    }

    .intro-text h2 {
      color:  #9c5c1c;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 15px;
      border-left: 5px solid black;
      padding-left: 15px;
    }

    .intro-text p {
      font-size: 18px;
      line-height: 1.7;
      text-align: justify;
      color: #333;
      margin-bottom: 25px;
    }

    .intro-text button {
      background: transparent;
      color:   #9c5c1c;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .intro-image {
  flex: 1 1 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 1s ease forwards;
  overflow: hidden; /* extra space control */
  padding: 20px; /* thoda breathing space */
}

.intro-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: scale(1.05); /* thoda zoom for better fit */
  transition: all 0.4s ease;
}

.intro-image img:hover {
  transform: scale(1.1); /* thoda smooth zoom hover effect */
}


    /* Animations */
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Responsive */
    @media (max-width: 900px) {
      .intro-section {
        flex-direction: column;
        text-align: center;
      }
      .intro-text {
        order: 2;
        margin-top: 40px;
      }
      .intro-image img {
        clip-path: circle(45% at 50% 50%);
      }
    }

    /* === Global Presence Section === */
    .global-section {
      position: relative;
      overflow: hidden;
      padding: 100px 8%;
      background: linear-gradient(135deg, #9c5c1c,  #f3e58d);
      color: white;
      text-align: center;
    }

    /* subtle world map background */
    .global-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('../images/World_map_-_low_resolution.svg') center/contain no-repeat;
      opacity: 0.08;
      z-index: 0;
    }

    .global-section h2 {
      font-size: 38px;
      font-weight: 700;
      color: white;
      margin-bottom: 15px;
      position: relative;
      z-index: 2;
      display: inline-block;
    }

    .global-section h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: black;
    }

    .global-section p.intro {
      max-width: 750px;
      margin: 30px auto 70px;
      color: black;
      font-size: 17px;
      line-height: 1.8;
      position: relative;
      z-index: 2;
      font-weight: 500;
    }

    /* --- Locations Grid --- */
    .locations {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      position: relative;
      z-index: 2;
      margin-top: 30px;
    }
.heading-color{
    color:black !important;
}
    .location-card {
      background: rgba(0, 0, 0, 0.85);
      padding: 35px 20px;
      color: white;
      border: 2px solid #f3e58d;
      text-align: center;
      transition: all 0.4s ease;
      border-radius: 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 0 transparent;
      transform: scale(1);
    }

    /* ✨ New hover animation — soft glow + scale + gradient fade */
    .location-card:hover {
      transform: scale(1.05);
      border-color: #9c5c1c;
      box-shadow: 0 0 25px rgba(243, 229, 141, 0.6);
      background: linear-gradient(145deg, black, #9c5c1c);
    }

    .location-icon {
      font-size: 40px;
      color: #f3e58d;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }

    .location-card:hover .location-icon {
      color: white;
      transform: rotateY(360deg);
    }

    .location-card h3 {
      font-size: 20px;
      font-weight: 600;
      color: #f3e58d;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }

    .location-card p {
      font-size: 15px;
      color: #ddd;
      transition: color 0.3s ease;
    }

    .location-card:hover h3,
    .location-card:hover p {
      color: white;
    }

    /* --- Fade-in Animation --- */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .location-card {
      animation: fadeUp 1s ease forwards;
    }

    @media (max-width: 768px) {
      .global-section h2 { font-size: 30px; }
      .global-section p.intro { font-size: 15px; }
    }

    /* --- =======================Section services==================== --- */
    .services-section {
      padding: 100px 8%;
      background: linear-gradient(120deg, rgba(0,64,128,0.05));
      text-align: center;
    }

    .services-section h2 {
      font-size: 38px;
      color: #9c5c1c;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .services-section h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 90px;
      height: 4px;
      background:#9c5c1c;
      border-radius: 3px;
    }

    .services-section p.intro {
      max-width: 750px;
      margin: 25px auto 60px;
      color: #555;
      font-size: 17px;
      line-height: 1.8;
    }

    /* --- Grid --- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 35px;
      justify-items: center;
    }

    /* --- Card --- */
    .service-card {
      background: var(--white);
      border-radius: 18px;
      padding: 45px 30px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      color: #9c5c1c;
    }

    /* --- Hover Overlay Animation --- */
    .service-card::before {
      content: "";
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #9c5c1c, #f3e58d);
      transition: all 0.5s ease;
      z-index: 0;
    }

    .service-card:hover::before {
      top: 0;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 35px rgba(0,0,0,0.1);
    }

    .service-content {
      position: relative;
      z-index: 2;
    }

    .service-icon {
      font-size: 45px;
      color: var(--gold);
      margin-bottom: 20px;
      transition: color 0.3s;
    }

    .service-card:hover .service-icon {
      color: #f3e58d;
    }

    .service-card h3 {
      font-size: 20px;
      color: var(--blue);
      margin-bottom: 10px;
      transition: color 0.3s;
    }

    .service-card p {
      font-size: 15px;
      line-height: 1.7;
      color: #555;
      transition: color 0.3s;
    }

    .service-card:hover h3,
    .service-card:hover p {
      color: black;
    }

    /* --- Explore More Button --- */
    .explore-btn {
      display: inline-block;
      margin-top: 60px;
      background: transparent;
      color: #9c5c1c;
      font-size: 16px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    /* --- Animation --- */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .service-card {
      animation: fadeUp 1s ease forwards;
    }

    @media (max-width: 768px) {
      .services-section h2 { font-size: 30px; }
      .services-section p.intro { font-size: 15px; }
    }

    /* ====== Partners Section ====== */
    .partners-section {
      background: white;
      padding: 70px 0;
      text-align: center;
      overflow: hidden;
      position: relative;
    }

    .partners-section h2 {
      font-size: 34px;
      font-weight: 700;
      color: black;
      margin-bottom: 50px;
      position: relative;
      display: inline-block;
    }

    .partners-section h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: var(--gold-dark);
    }

    .partners-wrapper {
      overflow: hidden;
      width: 100%;
      position: relative;
    }

    .partners-slider {
      display: flex;
      gap: 60px;
      animation: scrollLeft 55s linear infinite;
      width: max-content;
      align-items: center;
    }

    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .partner-card {
      background: black;
      color: #f3e58d;
      padding: 12px 25px;
      display: flex;
      align-items: center;
      gap: 12px;
      border: 2px solid #9c5c1c;
      white-space: nowrap;
      transition: all 0.4s ease;
      box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    }

    .partner-card img {
      height: 40px;
      width: auto;
      filter: brightness(1);
      transition: all 0.4s ease;
    }

    .partner-card:hover {
      background: #f3e58d;
      color: black;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .partner-card:hover img {
      transform: scale(1.05);
    }

    .partner-name {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
      .partners-section h2 { font-size: 26px; }
      .partner-card img { height: 32px; }
      .partner-name { font-size: 14px; }
      .partners-slider { gap: 35px; animation-duration: 40s; }
    }
     
/* ===== TESTIMONIAL SECTION ===== */
.testi-sec {
  padding: 100px 20px;
  background: linear-gradient(135deg, #000000, #3b2a14);
  font-family: "Poppins", sans-serif;
  color:white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* Heading */
.testi-sec h2 {
  font-size: 32px;
  color: #f3e58d;
  margin-bottom: 120px;
  position: relative;
}

.testi-sec h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #9c5c1c;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* Scene */
.scene {
  width: 360px;
  height: 360px;
  perspective: 1000px;
  position: relative;
  margin: 0 auto;
}

/* Cube */
.cube {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
}

/* Faces */
.face {
  position: absolute;
  width: 320px;
  height: 320px;
  padding: 25px;
  border: 2px solid rgba(243, 229, 141, 0.4);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Cube faces positions */
.face:nth-child(1) { transform: rotateY(0deg) translateZ(180px); }
.face:nth-child(2) { transform: rotateY(90deg) translateZ(180px); }
.face:nth-child(3) { transform: rotateY(180deg) translateZ(180px); }
.face:nth-child(4) { transform: rotateY(-90deg) translateZ(180px); }

/* Images */
.face img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #f3e58d;
  margin-bottom: 10px;
  object-fit: cover;
}

/* Text styles */
.face h3 {
  font-size: 18px;
  color: #f3e58d;
  margin: 8px 0 3px;
}

.face span {
  color: rgba(243, 229, 141, 0.8);
  font-size: 13px;
  margin-bottom: 10px;
}

.face p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin: 0 10px;
}

/* Controls */
.controls {
  position: absolute;
  bottom: -70px;
  left: 45%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.button-testimonial {
  background: transparent;
  border: 2px solid #f3e58d;
  color: #f3e58d;
  padding: 8px 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.button-testimonial:hover {
  background:#f3e58d;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .testi-sec {
    padding: 80px 0;
  }

  .scene {
    width: 280px;
    height: 280px;
    perspective: 800px;
  }

  .face {
    width: 250px;
    height: 250px;
    padding: 18px;
  }

  .face img {
    width: 60px;
    height: 60px;
  }

  .face h3 {
    font-size: 16px;
  }

  .face p {
    font-size: 13px;
  }

  .controls {
    bottom: -50px;
  }

  .button-testimonial {
    padding: 6px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .testi-sec h2 {
    font-size: 26px;
  }

  .scene {
    width: 240px;
    height: 240px;
  }

  .face {
    width: 210px;
    height:250px;
  }

  .face img {
    width: 55px;
    height: 55px;
  }

  .face h3 {
    font-size: 15px;
  }

  .face p {
    font-size: 12px;
  }
  
  .controls {
    bottom: -80px;
  }
}
