* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Satoshi', sans-serif;
  color: white;
  background: #111;
  overflow-x: hidden;
}





.slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideShow 20s infinite;
}

.slideshow img:nth-child(1) { animation-delay: 0s; }
.slideshow img:nth-child(2) { animation-delay: 5s; }
.slideshow img:nth-child(3) { animation-delay: 10s; }
.slideshow img:nth-child(4) { animation-delay: 15s; }

@keyframes slideShow {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 480px) {
  .slideshow {
    height: 100vh; /* adjust as needed */
  }
}



.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}
.logo {
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(0deg, #00eaff, #1500ff); /* bottom to top */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.logo-img {
  height: 70px;
  width: auto;
  vertical-align: middle; /* Ensures the image is aligned with the text */
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  position: relative;
  padding: 10px 18px;
  font-size: 1rem;
  color: #00d5ff; /* ocean blue */
  border: 2px solid transparent;
  border-radius: 8px;
  border-color: #00d5ff;
  transition: all 0.4s ease;
  text-decoration: none;

}

.nav-links li a:hover {
  color: #1500ff; 
  border: 2px solid transparent;
  border-radius: 8px;
  border-color: #1500ff;

}

/* Hamburger style */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #00d5ff;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 830px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 50px;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    border-radius: 12px;
    width: 200px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-in-out;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
  max-width: 700px;
}

.btn {
  padding: 15px 30px;
  background-color: #00d5ff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn:hover {
  background-color: #1500ff;
  color: #fff;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-down svg {
  width: 40px;
  height: 40px;
  stroke: #00d5ff;
  transition: stroke 0.3s ease;
}

.scroll-down:hover svg {
  stroke: #1500ff;
}

/* Keyframes */
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Tablet Devices */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* 📱 Smaller Tablets & Big Phones */
@media (max-width: 768px) {
  .hero-content {
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.95rem;
  }
}

/* 📱 Small Phones */
@media (max-width: 480px) {
  .hero-content {
    padding: 60px 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .scroll-down svg {
    width: 24px;
    height: 24px;
  }
}


.intro {
  padding: 100px 50px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.intro-container {
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease forwards;
}

.tagline {
  font-size: 1.5rem;
  color: #00eaff;
  margin-top: -10px;
  margin-bottom: 30px;
}

/* Gradient effect on h2 */
.intro h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(0deg, #00eaff, #1500ff); /* bottom to top */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* About content */
.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  animation: bounceUp 2s infinite;
}

.scroll-up:hover {
  transform: scale(1.1);
}

.scroll-up.show {
  opacity: 1;
  visibility: visible;
}


@keyframes bounceUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


@media (max-width: 1024px) {
  .intro {
    padding: 80px 40px;
  }

  .intro h2 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .about-content p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .intro {
    padding: 60px 30px;
  }

  .intro h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .intro {
    padding: 50px 20px;
  }

  .intro h2 {
    font-size: 1.7rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .about-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .scroll-up svg {
    width: 24px;
    height: 24px;
  }
}


.mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 50px 0;
  gap: 30px;
}

.box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  width: 45%;
  box-shadow: 0 0 10px rgba(0, 213, 255, 0.2);
  transition: transform 0.3s ease;
}

/* Hover effect */
.box:hover {
  box-shadow: 0 0 10px rgba(0, 17, 255, 0.2);
  transform: scale(1.05);
}

.box h3 {
  color: #00eaff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.box p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.6;
}

/* 📱 Responsive adjustments for mobile */
@media (max-width: 768px) {
  .box {
    width: 100%;
    padding: 20px;
  }

  .mission-vision {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .box h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .box p {
    font-size: 0.95rem;
    text-align: left; /* Align left for better readability */
  }
}


.services-section {
  padding: 60px 20px;
  text-align: center;
}

.services-heading {
  font-size: 2.8rem;
  color: #00eaff;
  margin-bottom: 40px;
  background: linear-gradient(to right, #00eaff, #1500ff);
  /* -webkit-background-clip: text; */
  -webkit-text-fill-color: transparent;
}

.services-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 40px;
  padding: 60px 100px;
  scrollbar-width: none;
  perspective: 1500px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

.services-scroll::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-width: 300px;
  height: 300px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid #00d5ff;
  border-radius: 50%;
  padding: 25px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 213, 255, 0.2);
  text-align: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
  clip-path: circle(50% at 50% 50%);
  transform-style: preserve-3d;
}

.service-card:hover {
  box-shadow: 0 0 50px rgba(0, 213, 255, 0.6);
  transform: scale(1.08);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #00eaff;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
  max-width: 220px;
}

/* Tablets */
@media (max-width: 1024px) {
  .services-heading {
    font-size: 2.4rem;
  }

  .services-scroll {
    padding: 50px 40px;
    gap: 30px;
  }

  .service-card {
    min-width: 280px;
    height: 280px;
    padding: 20px;
  }

  .service-icon {
    font-size: 2.8rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-heading {
    font-size: 2.2rem;
  }

  .services-scroll {
    padding: 40px 20px;
    gap: 25px;
  }

  .service-card {
    min-width: 240px;
    height: 240px;
    padding: 18px;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .service-card h4 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Very Small Devices */
@media (max-width: 480px) {
  .services-heading {
    font-size: 1.8rem;
  }

  .service-card {
    min-width: 220px;
    height: 220px;
    padding: 15px;
  }

  .service-icon {
    font-size: 2.2rem;
  }

  .service-card h4 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }
}



/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .box {
    width: 100%;
  }
}


/* about us part  */

.about-content {
  padding: 100px 50px;
  background-color: #111;
  color: #fff;
  line-height: 1.8;
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  animation: fadeInUp 1.2s ease forwards;
}

.main-heading {
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(0deg, #00eaff, #1500ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.highlight {
  font-weight: bold;
  color: #00eaff;
  display: inline-block;
  margin-bottom: 10px;
}


.ceo-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap; /* So it stacks nicely on small screens */
}

.animated-ceo-img {
  width: 100%;
  max-width: 250px;
  border-radius: 14px;
}

.ceo-bio {
  max-width: 600px;
  text-align: left;
}


.closing-line {
  font-style: italic;
  color: #ccc;
  margin-top: 40px;
}

/* contact us page  */

.contact-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px 20px;
  background: linear-gradient(145deg, #111827, #1f2937);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.contact-section h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  text-align: center;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.subtext {
  text-align: center;
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 40px;
  padding: 0 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #1e1e2f;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #2d2d3a;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #60a5fa;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  line-height: 1.6;
  color: #d1d5db;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover {
  color: #3b82f6;
  text-decoration: underline;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .contact-section h1 {
    font-size: 2.2rem;
  }

  .subtext {
    font-size: 1rem;
  }

  .contact-card h3 {
    font-size: 1.1rem;
  }

  .contact-card p,
  .contact-card a {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 20px 15px;
  }

  .contact-section h1 {
    font-size: 1.8rem;
  }

  .subtext {
    font-size: 0.95rem;
  }

  .contact-grid {
    gap: 20px;
  }
}


/* services page  */
.services-section {
  background: #0d0d0d;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 40px;
}
.flip-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.flip-card {
  background: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.1);
}

/* === FRONT STYLING === */
.flip-card-front {
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #00bfff;
  font-size: 1.8rem;
  font-weight: bold;
  border: 1px solid rgba(0, 191, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* === BACK STYLING === */
.flip-card-back {
  background: #1a1a1a;
  color: #ccc;
  transform: rotateY(180deg);
  font-size: 0.95rem;
  overflow-y: auto;
  text-align: left;
  display: block; /* Important: Prevents flex issues with scroll */
  scrollbar-width: thin;
  scrollbar-color: #00bfff #111;
}

/* WebKit Scrollbar Styling */
.flip-card-back::-webkit-scrollbar {
  width: 6px;
}

.flip-card-back::-webkit-scrollbar-thumb {
  background-color: #00bfff;
  border-radius: 10px;
}

.flip-card-back::-webkit-scrollbar-track {
  background: #111;
}

/* Extra polish for back content */
.flip-card-back h4 {
  color: #88cfff;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.flip-card-back p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.flip-card-back ul {
  padding-left: 20px;
  margin-top: 10px;
}

.flip-card-back ul li {
  list-style-type: disc;
  margin-bottom: 6px;
}

/* Manual flip trigger class */
.flipped {
  transform: rotateY(180deg) !important;
}



/* contact part in the page  */
.contact-us-section {
  background: linear-gradient(to right, #00eaff, #1500ff);
  color: white;
  text-align: center;
  padding: 200px 20px;
  margin-top: 60px;
}

.contact-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.contact-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  background-color: white;
  color: #1500ff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
  background-color: white;
  color: rgb(2, 196, 255);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Tablet */
@media (max-width: 1024px) {
  .contact-us-section {
    padding: 160px 20px;
  }

  .contact-heading {
    font-size: 2.2rem;
  }

  .contact-text {
    font-size: 1.1rem;
  }

  .contact-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-us-section {
    padding: 140px 15px;
  }

  .contact-heading {
    font-size: 2rem;
  }

  .contact-text {
    font-size: 1rem;
  }

  .contact-button {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .contact-us-section {
    padding: 100px 15px;
  }

  .contact-heading {
    font-size: 1.7rem;
  }

  .contact-text {
    font-size: 0.95rem;
  }

  .contact-button {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}




/* footer part  */
.footer {
  background-color: #000;
  color: #eee;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #00d5ff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00d5ff;
}

.footer-logo {
  height: 60px;
  margin-bottom: 10px;
}

.brand p {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #777;
}

/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    justify-content: space-around;
  }

  .footer-col {
    flex: 1 1 45%;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
    display: block;
  }

  .footer-col ul {
    padding-left: 0;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-col h3 {
    font-size: 1.2rem;
  }

  .footer-col ul li {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 10px;
  }
}


