/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    cursor: none;
}

/* Hide both by default, show only the active one */
.navbar-toggler .close-icon {
  font-size: 1.5rem;
  color: white;
  line-height: 1;
}

.navbar-toggler .navbar-toggler-icon,
.navbar-toggler .close-icon {
  transition: opacity 0.2s ease;
}

/* Outer square cursor with red outline */
.custom-cursor {
  width: 24px;
  height: 24px;
  
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

/* Inner triangle (danger symbol) */
.cursor-triangle {
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 15px solid red;
}

/* Optional: Smooth scroll */
html {
    scroll-behavior: smooth;
}
.page-wrap {
    padding-top: 80px; /* Adjust based on navbar height */
}

/* Hero specific tweaks */
.hero {
  min-height: 80vh;
    background: linear-gradient(45deg, #eecff9, #ffb172);
}

.card {
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}


 
  



.img {
  max-width: 100%;
  height: 300px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.about {
   background: linear-gradient(45deg, #eecff9, #ffb172);
}   

/* About Page Styles*/
    .about-header {
      padding: 4rem 1rem;
      background-color: #f8f9fa;
      border-bottom: 1px solid #dee2e6;
    }
    .lead {
      max-width: 700px;
      margin: 0 auto;
    }
    .about-img {
      border-radius: 0.5rem;
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    }
    .info-box {
      padding: 2rem;
      background-color: #fff;
      border: 1px solid #eaeaea;
      border-radius: 0.5rem;
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
      height: 100%;
    }
    .flip-card {
      background: transparent;
      perspective: 1000px;
      height: 350px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.9s ease-in-out;
      transform-style: preserve-3d;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      border-radius: 12px;
    }

    .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: 12px;
      overflow: hidden;
    }

    .flip-card-front {
      background: white;
      z-index: 2;
    }

    .flip-card-back {
      transform: rotateY(180deg);
      background: linear-gradient(135deg, #4e54c8, #8f94fb);
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      text-align: center;
    }

    .card-img-top {
      height: 200px;
      object-fit: cover;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .flip-card-back h5 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .flip-card-back p {
      font-size: 0.95rem;
    }

    .flip-card-back .socials i {
      font-size: 1.2rem;
      margin: 0 0.4rem;
      cursor: pointer;
      transition: color 0.3s;
    }

    .flip-card-back .socials i:hover {
      color: #ffd700;
    }

    .swiper {
      padding-bottom: 60px;
    }


    .swiper-slide {
      height: auto;
    }
    
   
/* Shared styles for both navigation buttons */
.custom-swiper-btn {
  background-color: #4e54c8;       /* Main brand color */
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Hover effect */
.custom-swiper-btn:hover {
  background-color: #6c70f7;
  transform: scale(1.1) translateY(-50%);
}

/* Left navigation button */
.swiper-prev {
  left: 10px;
}

/* Right navigation button */
.swiper-next {
  right: 10px;
}

/* Icon size */
.custom-swiper-btn i {
  font-size: 1.25rem;
}

/* Popup Modal Styles */
.custom-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-popup {
  background: #fff;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-popup-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
@media (max-width: 576px) {
  .custom-popup {
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
  }

  .close-popup-btn {
    top: 8px;
    right: 10px;
    font-size: 1.3rem;
  }

  .custom-popup h4 {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 0.95rem;
  }
}


  #typewriter {
      font-size: 2.7rem; /* responsive size */
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid #fd0d0d;
      width: fit-content;
      animation: blink 0.7s step-end infinite;
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }
