/* Slider Base Structure */
.slider-container {
  position: relative;
  max-width: 800px; /* Adjust to match your project needs */
  margin: auto;
  overflow: hidden;
}

/* Hide slides by default */
.slide {
  display: none;
}

.slide img {
  width: 100%;
  vertical-align: middle;
  transition: transform ease-in-out 0.4s;
}

/* Hover Zoom Effect from your snippet mapped to actual classes */
.slide:hover img {
  transform: scale(1.1);
}

/* Navigation Arrow Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Dots Navigation Indicator */
.dots-container {
  text-align: center;
  padding: 15px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: #454035; /* Using color from your border scheme */
}

/* Animation Effect */
.fade {
  animation-name: fade;
  animation-duration: 0.5s;
}

@keyframes fade {
  from { opacity: .4 } 
  to { opacity: 1 }
}

h1{
  font-size: 40px;
  margin-top: 20px;
  color: #e74c3c;
  text-align: center;
}
H2{
  margin-top: 10px;
  color: #ff0000;
}
h3{
  margin-top: 8px;
}

.navbar{
  background-color: rgb(162, 187, 209);
}

.container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.card{
  height: 500px;
  width: 290px;
  margin: 20px;
  box-shadow: 0 3px 5px #000;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #222;
}
.card .bg-image img{
  width: 100%;
  height: 230px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0%, 100% 70%, 45% 100%, 0 70%);
}
.card .pic img{
  height: 120px;
  width: 120px;
  border-radius: 50%;
  border: 10px solid #222;
  margin-top: -90px;
  position: relative;
  background-color: #454035;
}        
.card .info h3{
  color: #ffffff;
  font-size: 20px;
  padding: 10px 0;
}
.card .info span{
  font-size: 20px;
   color: #ff0000;
}
.card .info p{
  font-size: 13px;
  padding: 10px 20px;
  color: #999;
}
.card .info .icon a{
  font-size: 20px;
  text-decoration: none;
  color: #e74c3c;
  margin-top: 20px;
  padding: 0 5px;
}
.card .info .icon a:hover{
  color: #f0f0f0;
}
/* services */
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container_1{
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  width: 1100px;
  margin: 0 auto;
}
.card1{
  position: relative;
  height: 250px;
  width: 200px;
  margin: 10px;
}
.card1:active{
  transform: scale(0.96);
}
.card1 input{
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.card1 input:checked ~ .card1-content{
  border-color: #ffffff;
}
.card1 .card1-content{
  position: relative;
  cursor: pointer;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 4px 4 0 rgba(0,0,0,0.02);
}
.card1 img{
  position: relative;
  height: 100%;
  width: 300px;
  left: 50%;
  transform: translate(-50%,0);
  transition: all ease 0.3s;
}
.card1:hover img{
  width: 100%;
  height: 240px;
}
.card1 input:checked ~ .card1-content img{
  filter:grayscale(0.4);
}
.content h3 {margin: 0 0 8px 0;}
h3{
  text-align: center;
}
.content{
  position: absolute;
  bottom: -122px;
  width: 100%;
  padding: 12px;
  background-color:rgb(255, 255, 255);
}
.card1:hover .content{
  bottom: 0;
}
.card1 input:checked ~ .card1-content:before,
.card1 input:checked ~ .card1-content:after{
  content: '';
  position: absolute;
  z-index: 1;
}
.card1-content:before{
  height: 20px;
  width: 20px;
  top: 10px;
  right: 10px;
  border:1px solid rgb(255, 255, 255);
  border-radius: 50%;
  background-color: #4580e5;
}
.card1-content:after{
  height: 4px;
  width: 8px;
  top: 16px;
  right: 16px;
  border:1px solid rgb(255, 255, 255);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}
#btn{
 
 
  margin-bottom: 10px;
  margin-left: 50px;
  background-color: rgb(255, 245, 153);
  font-size: 20px;
}
#card-body{
  color: aquamarine;
}

/* ===== ANIMATED BACKGROUND ===== */
#bg-canvas {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== SMOOTH SCROLLING & TRANSITIONS ===== */
html { 
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for sticky navbar */
}
* { transition: all 0.3s ease; }
body { overflow-x: hidden; }

/* ===== NAVBAR ENHANCEMENTS ===== */
.navbar {
  background: linear-gradient(135deg, rgba(100,50,200,0.95) 0%, rgba(50,150,100,0.95) 100%) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.navbar:hover { 
  box-shadow: 0 6px 20px rgba(100,50,200,0.4);
}

.nav-link { 
  color: white !important;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00ff00, #ff00ff);
  transition: left 0.3s ease;
}

.nav-link:hover::after { left: 0; }
.nav-link:hover { color: #00ff88 !important; transform: translateY(-3px); }

/* ===== HERO VIDEO ===== */
#home video {
  max-height: 85vh;
  width: 100%;
  object-fit: cover;
 /* border-bottom: 3px solid #020202;*/
  animation: slideDown 0.8s ease;
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== SECTION TITLES ===== */
h1 {
  font-size: 40px;
  margin-top: 20px;
  background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  animation: fadeInScale 0.6s ease;
}

h2 {
  margin-top: 10px;
  color: #ff0000;
  animation: pulse 2s ease infinite;
}

@keyframes fadeInScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== BADGE STYLING ===== */
.badge {
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
  animation: glow 2s ease infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 15px rgba(255,0,0,0.5); }
  50% { box-shadow: 0 0 25px rgba(255,0,0,0.8); }
}

/* ===== CARD ANIMATIONS ===== */
.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  height: 500px;
  width: 290px;
  margin: 20px;
  background: linear-gradient(135deg, rgba(30,30,60,0.95), rgba(60,30,80,0.95));
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  border: 2px solid rgba(100,50,200,0.5);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  animation: cardFloat 3s ease infinite;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(100,50,200,0.6);
  border-color: rgba(100,200,50,0.8);
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.card .bg-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0%, 100% 70%, 45% 100%, 0 70%);
  transition: all 0.5s ease;
}

.card:hover .bg-image img {
  filter: brightness(1.2) saturate(1.3);
  transform: scale(1.1);
}

.card .pic img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  border: 4px solid rgba(100,200,50,0.8);
  margin-top: -90px;
  position: relative;
  background: linear-gradient(135deg, #6c32c8, #3c96d4);
  box-shadow: 0 0 20px rgba(100,50,200,0.6);
  animation: rotatePic 20s linear infinite;
}

@keyframes rotatePic {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card .info h3 {
  color: #00ff88;
  font-size: 20px;
  padding: 10px 0;
  text-shadow: 0 0 10px rgba(0,255,136,0.5);
}

.card .info span {
  font-size: 20px;
  color: #ff00ff;
  text-shadow: 0 0 10px rgba(255,0,255,0.5);
}

.card .info p {
  font-size: 13px;
  padding: 10px 20px;
  color: #aaa;
}

.card .info .icon a {
  font-size: 20px;
  text-decoration: none;
  color: #00ffff;
  margin-top: 20px;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(100,50,200,0.3);
  transition: all 0.3s ease;
}

.card .info .icon a:hover {
  color: #ff00ff;
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 15px rgba(255,0,255,0.6);
  background: rgba(255,0,255,0.3);
}

/* ===== SERVICE CARDS (card1) ===== */
.container_1 {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  width: 1100px;
  margin: 0 auto;
  justify-content: center;
}

.card1 {
  position: relative;
  height: 250px;
  width: 200px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card1:hover {
  transform: scale(1.08) rotateY(5deg);
}

.card1:active {
  transform: scale(0.96);
}

.card1 input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.card1 input:checked ~ .card1-content {
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0,255,136,0.6);
}

.card1 .card1-content {
  position: relative;
  cursor: pointer;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  border: 3px solid rgba(100,50,200,0.6);
  background: linear-gradient(135deg, rgba(30,30,60,0.9), rgba(60,30,80,0.9));
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.card1:hover .card1-content {
  box-shadow: 0 12px 30px rgba(100,50,200,0.5);
  border-color: rgba(0,255,136,0.8);
}

.card1 img {
  position: relative;
  height: 100%;
  width: 300px;
  left: 50%;
  transform: translate(-50%,0);
  transition: all 0.4s ease;
  filter: saturate(1);
}

.card1:hover img {
  width: 100%;
  height: 240px;
  filter: brightness(1.1) saturate(1.2);
}

.card1 input:checked ~ .card1-content img {
  filter: grayscale(0.3) brightness(1.1);
}

.content {
  position: absolute;
  bottom: -122px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, rgba(100,50,200,0.95), rgba(0,255,136,0.1));
  border-top: 2px solid rgba(0,255,136,0.5);
  transition: all 0.4s ease;
  color: white;
}

.content h3 {
  margin: 0;
  color: #00ff88;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(0,255,136,0.5);
}

.card1:hover .content {
  bottom: 0;
}

.card1-content:before {
  height: 20px;
  width: 20px;
  top: 10px;
  right: 10px;
  border: 2px solid rgba(0,255,136,0.6);
  border-radius: 50%;
  background-color: rgba(100,50,200,0.5);
  position: absolute;
  z-index: 1;
  transition: all 0.3s ease;
}

.card1 input:checked ~ .card1-content:before {
  background-color: #00ff88;
  box-shadow: 0 0 10px rgba(0,255,136,0.8);
  border-color: #00ff88;
}

.card1-content:after {
  height: 4px;
  width: 8px;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(0,255,136,0.6);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
  position: absolute;
  z-index: 1;
  transition: all 0.3s ease;
}

/* ===== GALLERY ANIMATIONS ===== */
.gallery .gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
}

.gallery .gallery-item:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(100,50,200,0.5);
}

.gallery .gallery-item img {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  height: auto;
}

.gallery .gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.gallerya .gallerya-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
}

.gallerya .gallerya-item:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(100,200,50,0.5);
}

.gallerya .gallerya-item img {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallerya .gallerya-item:hover img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

/* ===== BUTTONS ===== */
.btn {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-danger {
  background: linear-gradient(135deg, #ff0000, #ff6b6b) !important;
  border: none;
  box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,0,0,0.5);
  background: linear-gradient(135deg, #ff6b6b, #ff0000) !important;
}

#btn {
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffff00, #ffcc00) !important;
  font-size: 18px;
  border: none;
  box-shadow: 0 5px 15px rgba(255,200,0,0.4);
  transition: all 0.3s ease;
}

#btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255,200,0,0.6);
}

/* ===== FORMS & INPUT ===== */
.form-control {
  background: rgba(100,50,200,0.2) !important;
  border: 2px solid rgba(100,50,200,0.5) !important;
  color: white !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(100,50,200,0.3) !important;
  border-color: #00ff88 !important;
  box-shadow: 0 0 15px rgba(0,255,136,0.5) !important;
  color: white !important;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .container_1 { width: 100%; }
  .card { width: calc(50% - 40px); }
}

/* Add scroll margin to all sections with IDs for proper anchor alignment */
[id] { scroll-margin-top: 50px; }

@media (max-width: 768px) {
  html { scroll-padding-top: 80px; }
  [id] { scroll-margin-top: 80px; }
  .navbar { padding: 10px 0; }
  .card { width: 100%; margin: 12px 0; height: auto; }
  .card1 { width: calc(50% - 20px); height: 200px; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .card .bg-image img { height: 180px; }
  .card .pic img { height: 90px; width: 90px; margin-top: -60px; }
  
  .gallery .gallery-item { width: 100%; }
  .gallerya .gallerya-item { width: 100%; }
}

@media (max-width: 480px) {
  html { scroll-padding-top: 70px; }
  [id] { scroll-margin-top: 70px; }
  .navbar { flex-direction: column; }
  .nav-link { padding: 8px 0; }
  .card { box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
  .card1 { width: 100%; height: 200px; margin: 8px 0; }
  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
  .container_1 { width: 100%; margin: 0; }
  .content { padding: 8px; }
  .content h3 { font-size: 14px; }
  #btn { margin-left: 0; padding: 8px 16px; }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff00ff, #00ff88);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00ff88, #ff00ff);
}

/* ===== ABOUT-US SECTION ===== */
.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(100,50,200,0.05), rgba(50,200,100,0.05));
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(200,100,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(100,255,150,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff00ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInScale 0.8s ease;
}

.about-subtitle {
  text-align: center;
  font-size: 18px;
  color: rgba(0, 255, 136, 0.8);
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(0,255,136,0.5);
  animation: fadeInScale 0.8s ease 0.2s backwards;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: fadeIn 0.8s ease 0.4s backwards;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-card {
  background: linear-gradient(135deg, rgba(100,50,200,0.15), rgba(50,150,100,0.15));
  border: 2px solid rgba(100,200,50,0.5);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: cardFloat 3s ease infinite;
}

.about-card:hover {
  transform: translateX(10px);
  border-color: rgba(0,255,136,0.8);
  box-shadow: 0 10px 30px rgba(100,50,200,0.3);
  background: linear-gradient(135deg, rgba(100,50,200,0.25), rgba(50,150,100,0.25));
}

.about-card h2 {
  color: #00ff88;
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0,255,136,0.5);
  animation: pulse 2s ease infinite;
}

.about-card p {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-size: 15px;
}

.about-list {
  list-style: none;
  padding: 0;
  color: rgba(255,255,255,0.85);
}

.about-list li {
  padding: 12px 0;
  font-size: 16px;
  color: #00ff88;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.about-list li:hover {
  transform: translateX(10px);
  color: #ff00ff;
  text-shadow: 0 0 10px rgba(255,0,255,0.5);
}

/* Images Section */
.about-images {
  animation: fadeIn 0.8s ease 0.6s backwards;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.image-item {
  position: relative;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid rgba(100,200,50,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.image-item:hover {
  transform: scale(1.05) rotateY(5deg);
  border-color: rgba(0,255,136,0.9);
  box-shadow: 0 15px 40px rgba(100,50,200,0.5);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.9) saturate(1);
}

.image-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.3);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(100,50,200,0.9) 100%);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: flex-end;
  height: 100%;
  justify-content: center;
}

.image-item:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay p {
  color: #00ff88;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0,255,136,0.8);
  animation: fadeIn 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-title {
    font-size: 36px;
  }
  
  .image-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .about-subtitle {
    font-size: 16px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-card {
    padding: 20px;
  }
  
  .about-card h2 {
    font-size: 20px;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .image-item {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 10px;
  }
  
  .about-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .about-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .about-content {
    gap: 20px;
  }
  
  .about-card {
    padding: 15px;
    border-radius: 10px;
  }
  
  .about-card h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .about-card p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .about-list li {
    padding: 8px 0;
    font-size: 14px;
  }
  
  .image-item {
    height: 180px;
    border-width: 2px;
  }
  
  .image-overlay p {
    font-size: 14px;
  }
}

/* ===== LOADING & FADE IN ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body { animation: fadeIn 0.5s ease; }

/* ===== VIDEO SECTION WITH SCROLL INDICATOR ===== */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  display: block;
  font-size: 48px;
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0,255,136,0.8), 0 0 40px rgba(100,50,200,0.6);
  animation: glow 2s ease-in-out infinite;
}

.scroll-indicator p {
  color: #00ff88;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  text-shadow: 0 0 10px rgba(0,255,136,0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-20px); }
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 10px rgba(0,255,136,0.6), 0 0 20px rgba(100,50,200,0.4); }
  50% { text-shadow: 0 0 20px rgba(0,255,136,1), 0 0 40px rgba(100,50,200,0.8); }
}

/* ===== SECTION STYLING ===== */
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin: 40px 0 30px;
  background: linear-gradient(135deg, #00ff88, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0,255,136,0.3);
  animation: fadeIn 0.8s ease;
}

.badge-gradient {
  background: linear-gradient(135deg, #00ff88 0%, #ff00ff 100%);
  padding: 8px 20px;
  border-radius: 50px;
  color: #0a0e27;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(0,255,136,0.5), 0 0 40px rgba(100,50,200,0.3);
  display: inline-block;
}

/* ===== SERVICES & SALES SECTION ===== */
.services-section, .sales-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10,14,39,0.7), rgba(50,20,80,0.65));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,255,136,0.2);
  border-bottom: 1px solid rgba(255,0,255,0.2);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(100,50,200,0.1), transparent),
              radial-gradient(circle at 80% 80%, rgba(0,255,136,0.1), transparent);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(0,255,136,0.1), rgba(100,50,200,0.1));
  border: 2px solid rgba(0,255,136,0.4);
  border-radius: 20px;
  text-decoration: none;
  color: #00ff88;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.2), transparent);
  transition: left 0.5s ease;
}

.service-btn:hover::before {
  left: 100%;
}

.service-btn:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(0,255,136,0.9);
  box-shadow: 0 0 30px rgba(0,255,136,0.6), 0 0 60px rgba(100,50,200,0.4);
  background: linear-gradient(135deg, rgba(0,255,136,0.2), rgba(100,50,200,0.2));
}

.service-btn i {
  font-size: 80px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(0,255,136,0.5));
}

.service-btn:hover i {
  font-size: 100px;
  color: #ff00ff;
  filter: drop-shadow(0 0 20px rgba(255,0,255,0.8));
  transform: rotate(-10deg) scale(1.1);
}

.service-btn p {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(0,255,136,0.6);
}

/* ===== GALLERY SLIDER (Modern Card Layout) ===== */
.gallery-slider {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10,14,39,0.7), rgba(30,20,50,0.65));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,255,136,0.2);
  border-bottom: 1px solid rgba(255,0,255,0.2);
  overflow: hidden;
}

.gallery-header {
  max-width: 1400px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-title {
  text-align: left;
}

.gallery-subtitle {
  color: rgba(0,255,136,0.7);
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: 1px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slide-counter {
  color: #00ff88;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

#current-slide {
  color: #fff;
  font-size: 24px;
}

.slider-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0,255,136,0.1);
  border: 2px solid rgba(0,255,136,0.4);
  color: #00ff88;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav-btn:hover {
  background: rgba(0,255,136,0.3);
  border-color: #00ff88;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0,255,136,0.5);
}

.slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 0;
}

.slide-card {
  min-width: calc(25% - 19px);
  flex-shrink: 0;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(0,255,136,0.3);
  background: rgba(0,0,0,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
  cursor: pointer;
}

.slide-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,255,136,0.8);
  box-shadow: 0 15px 40px rgba(0,255,136,0.3);
}

.slide-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

.slide-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.slide-card:hover .slide-overlay {
  transform: translateY(0);
}

.slide-overlay h3 {
  color: #00ff88;
  font-size: 20px;
  margin: 0 0 8px 0;
  text-shadow: 0 0 10px rgba(0,255,136,0.6);
}

.slide-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
  .slide-card {
    min-width: calc(33.333% - 17px);
  }
}

@media (max-width: 768px) {
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gallery-title {
    text-align: center;
    width: 100%;
  }
  
  .slider-controls {
    width: 100%;
    justify-content: center;
  }
  
  .slide-card {
    min-width: calc(50% - 13px);
    height: 280px;
  }
  
  .slide-card img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .slide-card {
    min-width: 100%;
    height: 250px;
  }
  
  .slide-card img {
    height: 250px;
  }
  
  .slider-track {
    gap: 15px;
  }
}

/* ===== SIGN-IN SECTION ===== */
.signin-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10,14,39,0.7), rgba(50,20,80,0.65));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,255,136,0.2);
  border-bottom: 1px solid rgba(255,0,255,0.2);
}

.signin-container {
  max-width: 1000px;
  margin: 0 auto;
}

.signin-header {
  text-align: center;
  margin-bottom: 50px;
}

.signin-subtitle {
  color: #00ff88;
  font-size: 16px;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
}

.signin-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.signin-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0,255,136,0.4);
  box-shadow: 0 0 40px rgba(100,50,200,0.3);
}

.signin-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
  filter: brightness(0.9);
}

.signin-image:hover img {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.signin-form-container {
  background: linear-gradient(135deg, rgba(0,255,136,0.05), rgba(100,50,200,0.05));
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(0,255,136,0.3);
  box-shadow: 0 0 30px rgba(100,50,200,0.2);
}

.form-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(0,255,136,0.2);
}

.toggle-btn {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: rgba(0,255,136,0.6);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.toggle-btn.active {
  color: #00ff88;
  border-bottom-color: #00ff88;
  box-shadow: 0 5px 15px rgba(0,255,136,0.3);
  text-shadow: 0 0 10px rgba(0,255,136,0.6);
}

.toggle-btn:hover:not(.active) {
  color: rgba(0,255,136,0.8);
}

.signin-form {
  display: none;
}

.signin-form.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0,0,0,0.3);
  border: 2px solid rgba(0,255,136,0.3);
  border-radius: 10px;
  color: #00ff88;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input::placeholder {
  color: rgba(0,255,136,0.5);
}

.form-group input:focus {
  outline: none;
  border-color: rgba(0,255,136,0.9);
  box-shadow: 0 0 20px rgba(0,255,136,0.4), inset 0 0 10px rgba(0,255,136,0.1);
  background: rgba(0,255,136,0.05);
}

.signin-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #00ff88, #ff00ff);
  border: none;
  border-radius: 10px;
  color: #0a0e27;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0,255,136,0.4);
  margin-top: 10px;
}

.signin-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0,255,136,0.6), 0 0 60px rgba(100,50,200,0.4);
}

.signin-btn a {
  text-decoration: none;
  color: inherit;
}
.signin-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0,255,136,0.4);
  box-shadow: 0 0 40px rgba(100,50,200,0.3);
  min-height: 300px; /* keeps panel stable when image hides */
}

/* Message overlay — hidden by default */
.signin-message {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,39,0.92), rgba(50,20,80,0.88));
  backdrop-filter: blur(6px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.signin-message.visible {
  display: flex;
}

.signin-message .msg-icon {
  font-size: 56px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(0,255,136,0.7));
}

.signin-message h3 {
  color: #00ff88;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 0 14px rgba(0,255,136,0.6);
  letter-spacing: 1px;
}

.signin-message p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.6;
}

.signin-message .msg-username {
  color: #ff00ff;
  text-shadow: 0 0 10px rgba(255,0,255,0.6);
  font-weight: 700;
}
/* ===== FOOTER BLEND ===== */
.footer-blend {
  background: linear-gradient(135deg, rgba(10,14,39,0.7), rgba(50,20,80,0.65));
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(0,255,136,0.3);
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer-blend::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 50%, rgba(100,50,200,0.15), transparent),
              radial-gradient(circle at 90% 50%, rgba(0,255,136,0.1), transparent);
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,255,136,0.2);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(0,255,136,0.4));
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  filter: drop-shadow(0 0 20px rgba(0,255,136,0.8));
  transform: rotate(10deg) scale(1.1);
}

.footer-logo h3 {
  color: #00ff88;
  font-size: 24px;
  text-shadow: 0 0 10px rgba(0,255,136,0.6);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: #00ff88;
  font-size: 18px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
#end{
  padding-left: 50px;
  letter-spacing: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(0,255,136,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column a:hover {
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0,255,136,0.6);
  transform: translateX(5px);
}

.footer-clock {
  text-align: center;
  padding: 30px;
  background: rgba(0,255,136,0.05);
  border: 2px solid rgba(0,255,136,0.3);
  border-radius: 15px;
  margin-bottom: 30px;
}

.footer-clock h4 {
  color: #00ff88;
  font-size: 16px;
  margin: 0 0 15px 0;
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
}

.clock-display {
  font-size: 32px;
  color: #ff00ff;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 15px rgba(255,0,255,0.6), 0 0 30px rgba(0,255,136,0.3);
  letter-spacing: 2px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,255,136,0.2);
}

.footer-bottom p {
  color: rgba(0,255,136,0.6);
  font-size: 14px;
  margin: 0;
  transition: all 0.3s ease;
}

.footer-bottom:hover p {
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .signin-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-btn {
    min-height: 200px;
    padding: 30px 15px;
  }
  
  .service-btn i {
    font-size: 60px;
  }
  
  .service-btn:hover i {
    font-size: 80px;
  }
  
  .signin-form-container {
    padding: 25px;
  }
  
  .toggle-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}
