body {
  margin: 0;
  background: #0b0b0b;
  color: #bebec0;
  font-family: 'Poppins', sans-serif;
   overflow-x: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

p {

  text-align: justify;
}

h2{
  font-size: 22px;

  text-transform: uppercase;
  letter-spacing: 5px;
}

/* NAV */
.navbar {
  padding: 20px;
  background: transparent;
}

/* NAV LINKS */
.desktop-menu a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}


.mob-menu-bottom {
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.mob-menu-bottom:hover {
  color: #ffcc00;
}
/* HOVER TEXT */
.desktop-menu a:hover {
    color: #ffcc00;
  transform: translateY(-2px);
   text-shadow: 0 0 8px rgba(255,122,24,0.4);
}

.navbar.scrolled {
  
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
   background: rgba(255, 255, 255, 0.08); /* transparent */
  backdrop-filter: blur(12px);
}

.navbar.scrolled .desktop-menu a {
 
  
}

/* 🔥 UNDERLINE ANIMATION */
.desktop-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff7a18, #32d2c9);
  transition: 0.3s ease;
}

/* ON HOVER */
.desktop-menu a:hover::after {
  width: 100%;
}

.desktop-menu a.active {
  color: #000;
}

.desktop-menu a.active::after {
  width: 100%;
}



.btn-gradient {
  background: linear-gradient(90deg, #ff7a18, #32d2c9);
  padding: 8px 18px;
  border-radius: 30px;
}

/* MOBILE */
#menuToggle { display:none; }

#mobileMenu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 260px;
  height: 100%;
  background: #111;
  padding: 40px;
  transition: 0.4s;
}

.menu-links a {
  position: relative;
}

.menu-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff7a18, #32d2c9);
  transition: 0.3s;
}

.menu-links a:hover::after {
  width: 100%;
}

#mobileMenu.active { right:0; }

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display:none;
}

#overlay.active { display:block; }

.hero {
  height: 100vh;
  background-image: url('../images/hero.jpg');
  background-position: center 0px; /* IMPORTANT */
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  will-change: background-position;
}
/* overlay */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.8)
  );
}


/* smooth rendering */


/* prevent overflow */
.services {
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* 🔥 BOTTOM LEFT CONTENT (IMPORTANT) */
.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 20px;
  right: 20px;
}

/* LOGO */
.hero-logo img {
  height: 40px;
  margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-bottom {
    text-align: center;
    bottom: 60px;
  }

  .hero-bottom h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  .hero-logo img {
    height: 35px;
    margin-bottom: 10px;
  }
}

/* TEXT */
.hero-bottom h1 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}


@media (max-width: 768px) {
  .hero-bottom {
    left: 20px;
    bottom: 30px;
    right: 20px;
  }

  .hero-bottom h1 {
    font-size: 20px;
  }

  .hero-logo img {
    height: 30px;
  }
}

/* ABOUT */
.about { padding:80px 0; }
.about-text a { color:#ff7a18; }

/* SERVICES */
.services { padding:100px 0; }

.services-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.arrows button {
  width:45px;
  height:45px;
  border-radius:50%;
  background:#222;
  border:none;
  color:#fff;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .about .row {
    text-align: center;
  }

  .about img {
    margin-bottom: 20px;
  }

  .about-text {
    padding: 0 10px;
  }
}

/* SCROLL FIX */
.scroll-container {
   display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;

  /* hide scrollbar */
  -ms-overflow-style: none;  /* IE */
  scrollbar-width: none;     /* Firefox */

}

/* CARD */
.service-card {
  min-width: 280px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* HIDE SCROLLBAR */
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* scroll */
.scroll-container {
  display: flex;
  gap: 24px;
  overflow-x: auto; /* MUST */
  scroll-behavior: smooth;
}
.scroll-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .service-card {
    flex: 0 0 85%;
  }
}

/* 🔥 IMPORTANT CHANGE */
.service-card {
  flex: 0 0 280px; /* fixed width */
  background: #111;
  padding: 40px 30px;
  border-radius: 18px;
}
.card {
  min-width:300px;
  padding:40px;
  background:#111;
  border-radius:16px;
}

/* CLIENTS SECTION */
.clients {
  background: #0b0b0b;
  padding: 100px 0 40px;
}

.clients-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  color: #e5e5e5;
}

/* WHITE STRIP */
/* WHITE STRIP (FULL WIDTH LOOK) */
.logo-strip {
  background: #fff;
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* KEEP LOGOS CENTERED INSIDE CONTAINER */
.logo-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
}

/* OPTIONAL: make it visually wider than container */
.logo-strip {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* LOGOS (BIGGER + CLEAN) */
.logo-track img {
  height: 40px;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .logo-track img {
    height: 30px;
  }
}

/* HOVER EFFECT */
.logo-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* RESPONSIVE */
@media(max-width:768px){
  .desktop-menu{display:none;}
  #menuToggle{display:block;}
}

.footer {
  position: relative;
  background: #0b0b0b;
  padding: 100px 0 40px;
  overflow: hidden;
}

/* 🔥 ORANGE GLOW (RIGHT SIDE EXACT LIKE DESIGN) */
.footer::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,122,24,0.5), transparent 70%);
  filter: blur(100px);
}

/* BADGE */
.footer-badge {
  margin: 0 auto 30px;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 12px;
  color: #aaa;
}

/* DIVIDER LINE */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 50px;
}

/* MAIN FOOTER */
.footer-main h6 {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #ccc;
}



@media (max-width: 768px) {
  .footer-main {
    text-align: center;
  }

  .footer-contact p {
    font-size: 13px;
  }

  .footer-logo img {
    height: 40px;
    margin-bottom: 15px;
  }
}


/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  font-size: 13px;
  margin-bottom: 10px;
  color: #aaa;
  transition: 0.3s;
}

.footer-links li:hover {
  color: #fff;
}

/* NEWSLETTER */
.newsletter input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 8px 0;
  color: #fff;
  font-size: 14px;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.social-icons span {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #aaa;
  transition: 0.3s;
}

.social-icons span:hover {
  border-color: #fff;
  color: #fff;
}

/* LOGO */
.footer-logo {
  font-weight: bold;
  font-size: 18px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}


/* TOGGLE ICON */
#menuToggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* OVERLAY */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 998;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE MENU PANEL */
#mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #0f0f0f;
  padding: 30px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ACTIVE STATE */
#mobileMenu.active {
  transform: translateX(0);
}

/* HEADER */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

#closeMenu {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
 
  width: auto;
  object-fit: contain;
    height: 50px;
  transition: all 0.3s ease;
}

/* spacing with navbar */
.navbar {
   
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* light soft shadow */
  transition: all 0.3s ease;

  padding: 10px 0;

}

/* LINKS */
.menu-links a {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.menu-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* BUTTON */
.menu-btn {
  display: block;
  text-align: center;
  margin-top: 30px;
}

/* MOBILE BREAKPOINT */
@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }
  #menuToggle {
    display: block;
  }
}

/* ICON AREA */
.service-icon {
  margin-bottom: 25px;
}

.service-icon img {
  height: auto;
  opacity: 0.7;
  transition: 0.3s;
}

/* elegant hover */
.service-card:hover .service-icon img {
  opacity: 1;
  transform: translateY(-3px);
}

/* TITLE */
.service-card h5 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
}

/* TEXT */
.service-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* READ MORE */
.read-more {
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
  transition: 0.3s;
}

.read-more span {
  font-size: 14px;
  transition: 0.3s;
}

.service-card:hover .read-more {
  opacity: 1;
}

.service-card:hover .read-more span {
  transform: translateX(4px);
}


/* CLIENT TITLE */
.clients-title {
  font-size: 34px;
  font-weight: 300; /* light weight */
  line-height: 1.5;
  color: #d6d6d6; /* soft grey (not white) */
  text-align: center;
  max-width: 700px;
  margin: 0px auto;
   opacity: 0.9;
  letter-spacing: 0.3px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .clients-title {
    font-size: 22px;
    line-height: 1.4;
    padding: 0 15px;
  }
}

/* LOGO */
.footer-logo img {
  height: 40px;
  object-fit: contain;
}

/* CONTACT TEXT */
.footer-contact p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 12px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ICON STYLE */
.footer-contact .icon {
  font-size: 14px;
  color: #888;
  margin-top: 2px;
}

/* HOVER (SUBTLE) */
.footer-contact p:hover {
  color: #fff;
}

.footer-contact p:hover .icon {
  color: #ff7a18;
}



/*=======================================================================*/


/* INNER HERO */
.inner-hero {
 
  background-image: url('../images/service-banner.jpg');
   position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* darker cinematic overlay */
.inner-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.4)
  );
}


.inner-hero .container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}


/* heading style */



.inner-hero h1 {
  font-size: clamp(16px, 5vw, 36px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6a6a6a;
  font-size: 30px;
  letter-spacing: 20px;
  text-transform: uppercase;
}



/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .inner-hero {
    height: 250px;
  }

  .inner-hero h1 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .inner-hero {
    height: 200px;
  }

  .inner-hero h1 {
    font-size: 30px;
    letter-spacing: 2px;
    margin-top: 25px;
  }

  
}


/* SERVICES PAGE */
.services-page {
  padding: 100px 0;
}

/* CARD SAME STYLE AS HOME */
.service-card {
  background: #111;
  padding: 40px 25px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
}

/* ICON */
.service-icon img {
  height: 40px;
  margin-bottom: 20px;
}

/* TEXT */
.service-card h5 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

/* READ MORE */
.read-more {
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
}

/* IMAGE CONTAINER */
.service-image {
  width: 100%;
  height: 180px; /* thumbnail height */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* IMAGE STYLE */
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill nicely */
  transition: 0.4s ease;
}

/* HOVER ZOOM EFFECT (PREMIUM) */
.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* EVENT META (BOTTOM SECTION) */
.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ITEM */
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #aaa;
}

/* ICON */
.meta-item i {
  font-size: 14px;
  color: #ff7a18;
  transition: 0.3s;
}

/* HOVER EFFECT */
.service-card:hover .meta-item i {
  color: #32d2c9;
}

/*======================SECTION EVENT DETAIL PAGE=================================================*/


/* SECTION SPACING */
.service-detail {
  padding: 100px 0;
}

/* MAIN BOX */
.event-box {
  background: linear-gradient(145deg, #0e0e0e, #090909);
  border-radius: 20px;
  padding: 30px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

/* 🔥 GLOW HOVER */
.event-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(255,122,24,0.25);
}

.event-box h5 {
  margin-bottom: 20px;
}

/* SOFT GLOW */
.event-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at left,
    rgba(255,122,24,0.25),
    transparent 60%
  );
  opacity: 0.6;
}

/* HOVER GLOW */
.event-box:hover {
  box-shadow: 0 15px 60px rgba(255,122,24,0.25);
  transform: translateY(-4px);
}

/* TITLE */
.event-title {
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
}

/* HORIZONTAL LAYOUT */
.event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ITEM */
.event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

/* ICON BOX */
.event-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* ICON */
.event-icon i {
  color: #ff7a18;
  font-size: 18px;
}

/* HOVER EFFECT */
.event-box:hover .event-icon {
  background: linear-gradient(90deg, #ff7a18, #32d2c9);
}

.event-box:hover .event-icon i {
  color: #fff;
}

/* TEXT */
.event-item p {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

.event-item h6 {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .event-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* LIST */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* EVENT ITEMS */
.event-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.event-item i {
  color: #ff7a18;
}

/* GALLERY */
.gallery {
  padding: 60px 0;
}

/* GALLERY ITEM */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.4s;
}

/* HOVER */
.gallery-item:hover img {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(255,122,24,0.4);
}

/* LIGHTBOX BACKGROUND */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: background 0.4s ease, opacity 0.4s ease;
}

/* ACTIVE */
.lightbox.active {
  background: rgba(0,0,0,0.9);
  opacity: 1;
  pointer-events: auto;
}

/* IMAGE EXPAND */
.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 10px;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

/* CLOSE */
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* ICON BOX */
.event-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* ICON */
.event-icon i {
  font-size: 18px;
  color: #ff7a18; /* main color */
}

/* HOVER ICON EFFECT */
.event-box:hover .event-icon {
  background: linear-gradient(90deg, #ff7a18, #32d2c9);
}

.event-box:hover .event-icon i {
  color: #fff;
}

/* TEXT */
.label {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

.event-item h6 {
  margin: 0;
  font-size: 14px;
  color: #fff;
}


/* smooth rendering */
.service-card {
  will-change: transform;
}

/* prevent overflow issues */
.services-page {
  overflow: hidden;
}


/*===============================================================================================================
===================================== celebrity management===================================== 
===============================================================================================================*/

/* SECTION */
.celebrity-page {
  padding: 100px 0;
}

/* HEADING */
.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #b6b6b7;
}

/* CARD */
.celebrity-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

/* IMAGE */
.celebrity-card img {
  width: 100%;
  height: 280px; /* fixed visible height */
  object-fit: cover; /* crop nicely */
}

/* NAME */
.celebrity-card h6 {
  padding: 15px;
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

/* 🔥 GLOW EFFECT */
.celebrity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255,122,24,0.2),
    rgba(50,210,201,0.1),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.celebrity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(255,122,24,0.3);
}

.celebrity-card:hover::before {
  opacity: 1;
}

.celebrity-card:hover img {
  transform: scale(1.05);
}


/* CONTENT AREA */
.celebrity-content {
  padding: 14px 15px 18px;
}

/* NAME */
.celebrity-content h6 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #fff;
}

/* DESCRIPTION */
.celebrity-content p {
  font-size: 12px;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}

.celebrity-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}




/*===============================================================================================================
===================================== CLIENT ===================================== 
===============================================================================================================*/

/* SECTION */
.client-page {
  padding: 100px 0;
}

/* TITLE */
.section-title {
  font-size: 30px;
  color: #fff;
}

/* CARD */
.client-card {
  background: #111;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* LOGO */
.client-card img {
  max-width: 100%;
  height: 50px;
  object-fit: contain;
  opacity: 0.7;
  transition: 0.4s;
}

/* 🔥 LIGHT GLOW EFFECT */
.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,122,24,0.25),
    rgba(50,210,201,0.15),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(255,122,24,0.25);
}

.client-card:hover::before {
  opacity: 1;
}

.client-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.client-card img {
  filter: grayscale(100%);
}

.client-card:hover img {
  filter: grayscale(0%);
}

/* SECTION */
.contact-page {
  padding: 100px 0;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 15px;
  margin-bottom: 15px;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7a18;
  outline: none;
}

/* BUTTON */
.contact-form button {
  border: none;
  cursor: pointer;
}

/* CONTACT INFO */
.contact-info {
  background: #111;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* INFO ITEM */
.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

/* ICON */
.info-item i {
  font-size: 18px;
  color: #ff7a18;
  margin-top: 3px;
}

/* TEXT */
.info-item p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

/* MAP */
.map-section {
  margin-top: 60px;
}

.contact-info:hover {
  box-shadow: 0 10px 40px rgba(255,122,24,0.2);
}

.map-section iframe {
  filter: grayscale(100%) invert(90%) contrast(95%) brightness(90%);
}


/* FOOTER LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

/* LINK STYLE */
.footer-links li a {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
  display: inline-block;
}

/* HOVER COLOR */
.footer-links li a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* 🔥 UNDERLINE ANIMATION */
.footer-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff7a18, #32d2c9);
  transition: 0.3s ease;
}

/* ON HOVER */
.footer-links li a:hover::after {
  width: 100%;
}

/* CONTAINER */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ICON BOX */
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
  transition: 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* ICON */
.social-icons a i {
  z-index: 2;
}

/* 🔥 GLOW BACKGROUND */
.social-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff7a18, #32d2c9);
  opacity: 0;
  transition: 0.3s;
}

/* HOVER */
.social-icons a:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
}

/* SHOW GRADIENT */
.social-icons a:hover::before {
  opacity: 1;
}

.social-icons a:nth-child(1):hover::before { background:#1877f2; } /* Facebook */
.social-icons a:nth-child(2):hover::before { background:#0a66c2; } /* LinkedIn */
.social-icons a:nth-child(3):hover::before { background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); } /* Instagram */


/* Footer logo Glow */

.footer-logo a img {
  transition: transform 0.2s ease;
}

/* CLICK EFFECT */
.footer-logo a:active img {
  transform: scale(0.9);
}

.footer-logo a img {
  transition: transform 0.2s ease, filter 0.3s;
}

/* hover glow */
.footer-logo a:hover img {
  filter: drop-shadow(0 0 10px rgba(255,122,24,0.4));
}

/* click press */
.footer-logo a:active img {
  transform: scale(0.92);
}



/* ==== MAIN LOGO HOVERANIMATION ======*/


/* LOGO CONTAINER */
.logo a {
  display: inline-block;
  position: relative;
}

/* LOGO IMAGE */
.logo img {
  height: 40px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* 🔥 SOFT GLOW LAYER */
.logo a::after {
  content: "";
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle,
    rgba(255,122,24,0.25),
    rgba(50,210,201,0.15),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s ease;
  z-index: -1;
}

/* ✨ HOVER EFFECT */
.logo a:hover img {
  transform: scale(1.05) translateY(-2px);
  filter: drop-shadow(0 5px 15px rgba(255,122,24,0.4));
}

/* BUTTON */
#scrollTopBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(90deg, #ff7a18, #32d2c9);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}

/* SHOW */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* HERO CONTENT POSITION */
.inner-hero {
  position: relative;
}

.hero-content {

  bottom: 40px; /* push to bottom */
  left: 60px;
 
  z-index: 2;
}

/* TITLE */
.hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* SUB TEXT */
.hero-subtext {
  font-size: 18px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 50px;
  margin-top:50px;
  
}

@media (max-width: 768px) {
  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 25px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-subtext {
    font-size: 13px;
  }
}


.mt{
  margin-top: 50px;
}


/* HIDE DESKTOP MENU ON MOBILE */
@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }

  #menuToggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
}

/* HIDE TOGGLE ON DESKTOP */
@media (min-width: 992px) {
  #menuToggle {
    display: none;
  }
}


/* ================= ABOUT SECTION FIX ================= */

/* DESKTOP (keep your design clean) */
.about {
  padding: 100px 0;
}

.about img {
  border-radius: 12px;
}

.about-text {
  padding: 0 20px;
}

.about-text h5 {
  margin-bottom: 15px;
}

.about-text p {
  color: #ccc;
  line-height: 1.7;
}

.about-text a {
  display: inline-block;
  margin-top: 10px;
  color: #ff7a18;
}

/* ================= MOBILE FIX ================= */
/* ================= ABOUT MOBILE FIX ================= */
@media (max-width: 768px) {

  .about .row {
    flex-direction: column;
    text-align: center;
  }

  .about .col-lg-4 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .about-text {
    padding: 20px;
    background: #111;
    border-radius: 12px;
  }

  .about-text h5 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about-text p {
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  .about-text a {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
  }
}

.pp {
  padding: 0 20px;
}

