/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #0F1215;
  color: #fff;
  line-height: 1.6;
} */


a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}
/* header */
/* Core Layout */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: rgba(41, 40, 40, 0.6);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  animation: fadeDown 0.8s ease forwards;
  border-bottom: 1px solid rgba(180, 13, 13, 0.05);
}

@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo + Character */
.logo-animation-wrapper {
  position: relative;
  width: 125px;
  height: 125px;
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(253, 197, 1, 0.6));
  animation: pulseLogo 2s infinite ease-in-out;
}

.logo-character {
  position: absolute;
  width: 100px;
  height: 40px;
  background: url('images/bot-unscreen.gif') no-repeat center/contain;
  top: -5px;
  left: 14.5%;
  transform: translateX(-30%);
  animation: appearBot 8s infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(253, 197, 1, 0.6));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(253, 197, 1, 1));
  }
}

@keyframes appearBot {
  0%, 15% {
    opacity: 0;
    transform: translate(-50%, -20px);
  }

  20% {
    opacity: 1;
    transform: translate(-50%, -5px);
  }

  40% {
    transform: translate(-50%, 0);
  }

  65% {
    transform: translate(-50%, 5px);
  }

  85% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 50px);
  }
}


/* Navigation Links */
/* Base */
.nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #000;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #fdc501;
}


/* Nav links */
.nav-links {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin-top: 20px;
  transition: max-height 0.4s ease;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 36px; /* increased */
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  position: relative;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.05); /* visible base background */
}

.nav-links li a:hover {
  color: #fdc501;
  background-color: rgba(253, 197, 1, 0.1); /* hover background */
  border-color: #fdc501;
  transform: scale(1.05);
  text-shadow: 0 0 6px #fdc501;
  box-shadow: 0 0 10px rgba(253, 197, 1, 0.2);
}

.nav-links li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fdc501, transparent);
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
  opacity: 0.7;
}

.nav-links li a:hover::before {
  left: 100%;
  opacity: 1;
}
.nav-links li a:hover {
  color: #fdc501;
  border-color: #fdc501;
  transform: scale(1.05);
  text-shadow: 0 0 6px #fdc501;
  box-shadow: 0 0 10px rgba(253, 197, 1, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
 
  .nav-links {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    background-color: #111;
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
  }
  .nav-links.show {
    max-height: 400px; /* enough space for menu items */
    padding: 15px 0;
  }
}


/* Social Icons */
.social-icons {
  display: flex;
  gap: 30px;
  list-style: none;
  padding-bottom: 20px;
}

.social-icons li a {
  color: #ffffffcc;
  font-size: 18px;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 30px;

}

.social-icons li a::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: 0.3s;
  border-radius: 50%;
  z-index: -1;
}

.social-icons li a:hover::before {
  opacity: 1;
  transform: scale(1.5);
}

.social-icons li a:hover {
  color: #fdc501;
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #fdc501);
}



/* hero section */
/* === HERO SECTION WITH PARTICLES BACKGROUND AND ORIGINAL FLEXSLIDER STYLES === */

.hero-section {
  height: 100vh;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-inner {
  z-index: 1;
  position: relative;
  max-width: 900px;
  padding: 20px;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s ease, transform 1s ease;
  width: 100%;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.slide-heading {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.slide-sub {
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.hero-cta-wrapper {
  position: absolute;
  right: 340px;
  bottom: -90px;
  animation: fadeInUp 1.5s ease forwards;
}

.btn-cta {
  padding: 14px 32px;
  background: linear-gradient(145deg, #fdc501, #e64e04);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: linear-gradient(145deg, #00f0ff, #fdc501);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,255,255,0.4);
  color: black;
}

@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}




/* portfolio */

.portfolio-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px 5%;
  background: #0d0f11;
  gap: 50px;
  flex-wrap: wrap;
}

.portfolio-info {
  flex: 1;
  max-width: 500px;
}

.highlight-title {
  font-size: 2.6rem;
  color: #fdc501;
  margin-bottom: 20px;
}

.highlight-description {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.8;
  background: linear-gradient(to right, #fdc501, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.view-projects-btn {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fdc501, #ff6f00);
  color: #000;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(253, 197, 1, 0.4);
  transition: all 0.4s ease;
}

.view-projects-btn:hover {
  background: linear-gradient(135deg, #00f0ff, #fdc501);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.portfolio-cards-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.portfolio-card {
  position: relative;
  background: #1a1d22;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease;
}

.portfolio-card h3 {
  background: rgba(0, 0, 0, 0.85);
  color: #fdc501;
  text-align: center;
  padding: 10px;
  font-size: 1.1rem;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 200px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover img {
  filter: blur(4px);
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
  pointer-events: auto;
}

.project-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-links a {
  color: #fdc501;
  text-decoration: none;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.project-links a:hover {
  background: #fdc501;
  color: #000;
}

.project-links i {
  margin-right: 8px;
}

/* internal page */

.panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #0d0f11;
  color: #fff;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.6s ease;
}

.panel.active {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2rem;
  cursor: pointer;
  color: #fdc501;
  z-index: 10001;
  pointer-events: auto;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #fff;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.video-modal-content {
  position: relative;
  margin: 5% auto;
  padding: 0;
  width: 80%;
  max-width: 800px;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #fdc501;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
}

.video-modal-close:hover,
.video-modal-close:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

#modalVideo {
  width: 100%;
  height: 500px;
  display: block;
}


/* Responsive Fix for smaller screens */
@media (max-width: 900px) {
  .portfolio-section {
    flex-direction: column;
  }

  .portfolio-cards-grid {
    grid-template-columns: 1fr;
  }
}



/* services */
.services-preview-section {
  padding: 80px 5%;
  background: #0d0f11;
}

.services-heading {
  font-size: 2.8rem;
  color: #fdc501;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(253, 197, 1, 0.2);
}

.services-preview-container {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.services-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  flex: 1.2;
  max-width: 640px;
}

.services-text {
  flex: 1;
  max-width: 600px;
}

@media screen and (max-width: 1024px) {
  .services-preview-container {
    flex-direction: column;
    align-items: center;
  }

  .services-images {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .services-text {
    text-align: center;
    margin-top: 40px;
  }
}


.services-preview-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.services-images {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.services-text {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  background: #1a1d22;
  border-radius: 16px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  color: #fff;
  box-shadow: 0 0 40px rgba(253, 197, 1, 0.3);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease;
}

.service-modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fdc501;
  cursor: pointer; /* FIX: Shows hand cursor */
}
.modal-close:hover {
  color: #fff;
}


.services-text {
  flex: 1;
  padding: 40px;
  background: linear-gradient(145deg, #111418, #0b0e11);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(253, 197, 1, 0.15), inset 0 0 15px rgba(255,255,255,0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  backdrop-filter: blur(6px);
}

.services-text:hover {
  transform: rotateY(1.5deg) rotateX(1.5deg);
  box-shadow: 0 25px 50px rgba(253, 197, 1, 0.3);
}

.services-text h1 {
  font-size: 2.8rem;
  color: #fdc501;
  text-shadow: 0 0 10px rgba(253, 197, 1, 0.4);
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fdc501, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1.2s ease-out;
}

.services-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #cccccc;
  margin-bottom: 35px;
  animation: fadeInUp 1.2s ease-out;
}

.see-all-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fdc501, #ff6f00);
  color: #0f1216;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(253, 197, 1, 0.4), 0 0 12px rgba(255, 255, 255, 0.05) inset;
  transition: all 0.4s ease;
  animation: pulseGlow 2.5s infinite;
  cursor: pointer;
}

.see-all-btn:hover {
  background: linear-gradient(135deg, #00f0ff, #fdc501);
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
  transform: scale(1.05) rotateX(4deg);
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(253, 197, 1, 0.3); }
  50% { box-shadow: 0 0 25px rgba(253, 197, 1, 0.6); }
}

.image-card {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  transform-style: preserve-3d;
  background: linear-gradient(145deg, #1a1d22, #0f1012);
}

.image-card:hover {
  transform: scale(1.05) rotateY(5deg) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(253, 197, 1, 0.3), 0 0 30px rgba(0, 255, 255, 0.2);
  z-index: 2;
}

.image-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: opacity 0.5s ease;
  backface-visibility: hidden;
}

.card-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fdc501;
  text-align: center;
  padding: 12px 0;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(253, 197, 1, 0.4);
  transition: all 0.4s ease;
}

.image-card:hover .card-title {
  background: rgba(0, 0, 0, 0.8);
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff;
}



/*  */



/* about us section */

.about-section {
  background: #0f1216;
  color: #fff;
  padding: 100px 200px;
  font-family: 'Montserrat', sans-serif;
}

.section-head h1 {
  font-size: 2.8rem;
  color: #fdc501;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 10px rgba(253, 197, 1, 0.2);
}

.section-head h1::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #fdc501, #ff8000);
  transition: width 0.4s ease-in-out;
}

.section-head h1:hover::after {
  width: 100%;
}

.section-head p {
  max-width: 100%;
  line-height: 1.8;
  margin-top: 20px;
  color: #e0e0e0;
  font-size: 1.05rem;
  transition: all 0.5s ease;
}

.section-head p:hover {
  color: #fff;
  text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.1);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.info-card {
  background: #1a1d22;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.info-card h3 {
  position: relative;
  text-align: center;
  font-size: 1.3rem;
  /* padding-left: 160px;  */
  color: #fdc501;

}

.info-card h3::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #ff8000;
  left: 130px;
  
}



.info-card p {
  font-size: 0.97rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}



.about-more-btn {
  margin-top: 30px;
  padding: 12px 28px;
  background: linear-gradient(90deg, #fdc501, #ff8000);
  color: #0f1216;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(253, 197, 1, 0.2);
  transition: all 0.4s ease;
}

.about-more-btn:hover {
  background: linear-gradient(90deg, #ff8000, #fdc501);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(253, 197, 1, 0.3);
}


@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}

.panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 1600px;
  height: 100vh;
  background: #111;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  transform: translateX(100%);
}

.panel.active {
  animation: slideInRight 0.9s ease forwards;
}

.panel.closing {
  animation: slideOutRight 0.9s ease forwards;
}


/* meet our expertise */

/* Section Styles */
.expertise-section {
  padding: 100px 20px;
  background-color: #0e0e0e;
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.expertise-heading {
  font-size: 3rem;
  color: #fdc501;
  display: inline-block;
  position: relative;
  text-shadow: 1px 1px 10px rgba(253, 197, 1, 0.3);
}

.expertise-heading span {
  color: #ff6f00;
}

/* Grid layout */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card styles */
.expert-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: 300px;
  background: #1a1d22;
}

.expert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.expert-details {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.expert-details h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fdc501;
}

.expert-details p {
  margin: 0;
  font-size: 0.95rem;
  color: #ddd;
}

.expert-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 1.2s ease;
  z-index: 3;
}

.expert-card:hover img {
  filter: brightness(0.4) blur(1px);
}

.expert-card:hover .expert-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.expert-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.expert-overlay p {
  font-size: 1rem;
  color: #fdc501;
}

/* Scroll Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.expertise-section {
  background: #111417;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.expert-title {
  font-size: 2.8rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: #fdc501;
  text-shadow: 2px 2px 10px rgba(253, 197, 1, 0.2);
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.expert-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  height: 300px;
  transition: transform 0.4s ease;
}

.expert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.6s ease, transform 0.5s ease;
}

.expert-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
  z-index: 2;
  transition: opacity 0.6s ease;
}

.expert-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #fdc501;
}

.expert-info p {
  font-size: 0.95rem;
  color: #ffffff;
}

.expert-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 1;
}

.expert-card:hover img {
  filter: blur(4px);
  transform: scale(1.05);
}

.expert-card:hover::before {
  width: 250%;
  height: 250%;
}

.expert-card:hover .expert-info {
  opacity: 1;
}

.expert-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fdc501;
  text-align: center;
  position: relative;
  display: inline-block;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #fdc501, #ff7f00);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: fadeInUp 0.8s ease-out forwards;
}

.expert-title::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #fdc501, #ff7f00);
  bottom: -10px;
  left: 0;
  transition: width 0.5s ease-in-out;
}

.expert-title:hover::after {
  width: 100%;
}

/* Optional Entrance Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.social-icons li a {
  color: #fdc501;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons li a:hover {
  color: #fff;
}
/*review styles  */


.reviews-section {
  background: #111417;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.review-heading {
  font-size: 2.5rem;
  color: #fdc501;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #fdc501, #ff8000);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.carousel-container {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  display: flex;
  gap: 20px;
  min-width: 100%;
  justify-content: center;
}

.review-card {
  background: #1b1f23;
  border-radius: 10px;
  padding: 20px;
  width: 45%;
  box-shadow: 0 0 10px rgba(253, 197, 1, 0.15);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: scale(1.03);
}

.stars {
  color: #fdc501;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.customer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.customer img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.customer-info h4 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.customer-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #ccc;
}

.controls {
  margin-top: 30px;
}

.controls button {
  background: #fdc501;
  border: none;
  color: #111417;
  padding: 10px 20px;
  margin: 0 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.controls button:hover {
  background: #ff8000;
}


/* contact styles */



.contact-section {
  background: #0e0f12;
  padding: 100px 40px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: flex-start;
}
.contact-form .contact-heading {
  font-size: 2rem;
  color: #fdc501;
  margin-bottom: 25px;
  position: relative;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 1px solid #333;
  background: #181a1f;
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  transition: border 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #fdc501;
  outline: none;
}
.contact-form button {
  background: #fdc501;
  color: #000;
  padding: 14px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #ffac00;
}
.contact-info .intro-message p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #e0e0e0;
  font-size: 1.05rem;
}
.contact-info .intro-message strong {
  color: #fff;
}
.contact-info .address-block h4 {
  margin-top: 25px;
  color: #fdc501;
}
.contact-info .address-block ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
}
.contact-info .address-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.contact-info .address-block ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #fdc501;
}
@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* chat box */


 .chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
  }

  .chat-toggle {
    background-color: #007bff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: background 0.3s;
  }
  .chat-toggle:hover {
    background-color: #0056b3;
  }

  .chat-popup {
    display: none;
    flex-direction: column;
    width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    margin-bottom: 10px;
  }

  .chat-header {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    font-size: 18px;
  }

  .chat-body {
    padding: 15px;
    font-size: 15px;
    color: #333;
    max-height: 300px;
    overflow-y: auto;
  }

  .chat-input {
    display: flex;
    border-top: 1px solid #ddd;
  }
  .chat-input input {
    flex-grow: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
    outline: none;
  }
  .chat-input button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
  }
  .chat-input button:hover {
    background-color: #0056b3;
  }
/* footer styles */

.custom-footer {
  background-color: #0d0d0d;
  color: #ccc;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  border-top: 1px solid #1f1f1f;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social a {
  margin: 0 10px;
  font-size: 20px;
  color: #ccc;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: #fdc501;
  transform: scale(1.2);
}

.footer-container {
  padding: 40px 20px;
  background-color: #111417;
  text-align: center;
  color: white;
}

.footer-backtop {
  padding-bottom: 30px;
}

.footer-backtop button {
  background-color: #fd4f00;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-backtop button:hover {
  background-color: #ff7f00;
}

.footer-copy {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #999;
}

.footer-copy span {
  color: #fdc501;
  font-weight: 500;
}
/* Add these at the end of your CSS file */

/* Page fade-in on load */
body {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body.loaded {
  opacity: 1;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* optional */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #fdc501;
  border-radius: 10px;
}

 /* Responsive Media Queries */
    @media (max-width: 1024px) {
      /* Tablet Styles */
      .nav-links {
        gap: 10px;
      }
      
      .nav-links li a {
        padding: 8px 12px;
        font-size: 13px;
      }
      
      .social-icons {
        gap: 15px;
      }
      
      .slide-heading {
        font-size: 32px;
      }
      
      .slide-sub {
        font-size: 17px;
      }
      
      .portfolio-cards-grid {
        grid-template-columns: 1fr 1fr;
      }
      
      .services-images {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      /* Mobile Styles */
      .logo-animation-wrapper {
        width: 80px;
        height: 80px;
      }
      
      .logo-character {
        width: 60px;
        height: 35px;
      }
      
      .hamburger {
        display: flex;
      }
      
      .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: rgba(13, 15, 17, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 20px;
        transition: right 0.4s ease;
        z-index: 999;
      }
      
      .nav.active {
        right: 0;
      }
      
      .nav-links {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 40px;
        width: 100%;
      }
      
      .nav-links li a {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 16px;
      }
      
      .social-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }
      
      .hero-section {
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
      }
      
      .slide-heading {
        font-size: 24px;
        padding: 0 15px;
      }
      
      .slide-sub {
        font-size: 15px;
        padding: 0 15px;
      }
      
      .hero-cta-wrapper {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
      }
      
      .portfolio-cards-grid {
        grid-template-columns: 1fr;
      }
      
      .services-images {
        grid-template-columns: 1fr;
      }
      
      .expertise-grid {
        grid-template-columns: 1fr 1fr;
      }
      
      .review-slide {
        min-width: 100%;
      }
    }

    @media (max-width: 480px) {
      /* Small Mobile Styles */
      .logo-animation-wrapper {
        width: 70px;
        height: 70px;
      }
      
      .slide-heading {
        font-size: 22px;
      }
      
      .slide-sub {
        font-size: 14px;
      }
      
      .btn-cta {
        padding: 10px 24px;
        font-size: 14px;
      }
      
      .expertise-grid {
        grid-template-columns: 1fr;
      }
      
      .contact-form, .contact-info {
        padding: 0 10px;
      }
    }
/* responsive */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.menu-toggle {
  display: none;
}

/* Mobile View */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.menu-toggle {
  display: none;
}

/* Mobile View */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links,
  .social-icons {
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .nav-links.open,
  .social-icons.open {
    display: flex;
  }

  .hidden-on-mobile {
    display: none;
  }
}
