/* ======= HERO SECTION ======= */

body{padding-top:0px;}
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 0 8% 60px;
  background: radial-gradient(circle at top left, #001020, #000);
  color: white;
  position: relative;
  overflow: hidden;
  perspective: 1500px;
  margin-top: 0px;
  margin-bottom: -63px;
  padding-top:90px !important;
}

/* Animated gradient background glow */
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg, #00f0ff, #007bff, #ff00ff, #00ff99, #00f0ff);
  filter: blur(180px);
  opacity: 0.2;
  animation: rotateBg 10s linear infinite;
  z-index: 0;
}
@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* LEFT SIDE CONTENT */
.hero-content {
  flex: 1;
  z-index: 2;
  animation: fadeInLeft 1.5s ease;
  margin-top: 0;
  padding-top: 80px;
  margin-bottom: 40px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 15px;
  margin-top: 0;
  background: linear-gradient(90deg, #00f0ff, #00ff99, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.hero-subtitle {
  font-size: 18px;
  color: #d0d0d0;
  margin-bottom: 40px;
  line-height: 1.6;
  margin-top: 15px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(90deg, #007bff, #007bff, #007bff);
  border: none;
  color: white;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(0,255,255,0.0);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 65px;
}
.hero-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(0,255,255,0.0);
}

/* Social Icons Row under Get Started button */
.hero-social-row {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 8px;
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
  margin-top: -5px;
}

.social-icon-row {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #00f0ff;
  font-size: 16px;
   margin-top: 50px;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: floatUpDown 3s ease-in-out infinite;
}

.social-icon-row:nth-child(1) { animation-delay: 0s; }
.social-icon-row:nth-child(2) { animation-delay: 0.2s; }
.social-icon-row:nth-child(3) { animation-delay: 0.4s; }
.social-icon-row:nth-child(4) { animation-delay: 0.6s; }

.social-icon-row:hover {
  background: rgba(0, 240, 255, 0.2);
  transform: translateY(-5px) scale(1.1);
  color: #fff;
   

  border-color: #00f0ff;
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
  animation-play-state: paused;
}

/* Social media text */
.social-text {
  color: #00f0ff;
  font-size: 13px;
  font-weight: 600;
  margin-top: 50px;
  margin-right: 12px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* RIGHT SIDE IMAGE - INCREASED HEIGHT */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
 align-items:flex-end;
   z-index: 2;
  margin-top: 0;
  padding-top: 40px;

  height: 100%; /* Ensure full height */
}

.hero-image img {
  max-height: 750px; /* increased */
  min-height: 680px; /* increased */
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.8s ease;
  filter: brightness(1.1) contrast(1.1) saturate(1.1);
  background: transparent !important;
  mix-blend-mode: normal !important;
  object-fit: contain;
  margin-bottom :-80px !important;
}


/* ANIMATIONS */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ======= FLOATING ELEMENTS ======= */
.floating-elements {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  pointer-events: none;
  z-index: 3;
}

/* Floating Logo */
.floating-logo {
  position: absolute;
  top: 10px;
  left: 25px;
  opacity: 0;
  animation: fadeInFloat 2s ease 0.5s forwards, floatUpDown 4s ease-in-out 2.5s infinite;
  pointer-events: auto;
}

.floating-logo img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.7));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.floating-logo:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(0, 240, 255, 1));
  animation-play-state: paused;
}

/* Floating Language Selector */
.floating-language {
  position: absolute;
  top: 10px;
  right: 25px;
  opacity: 0;
  animation: fadeInFloat 2s ease 1.5s forwards, floatUpDown 5s ease-in-out 3s infinite;
  pointer-events: auto;
}

.language-selector {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 25px;
  padding: 6px 16px;
  color: #00f0ff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.language-selector:hover {
  background: rgba(0, 240, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
  animation-play-state: paused;
}

.language-selector i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.language-selector:hover i {
  transform: rotate(180deg);
}

/* Floating Animations */
@keyframes fadeInFloat {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Floating Particles */
.floating-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.6);
  animation: floatParticle 8s infinite ease-in-out;
}

.floating-particle:nth-child(1) {
  width: 5px;
  height: 5px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(45deg, #00f0ff, #00ff99);
}

.floating-particle:nth-child(2) {
  width: 3px;
  height: 3px;
  top: 55%;
  left: 85%;
  animation-delay: 1s;
  background: linear-gradient(45deg, #007bff, #ff00ff);
}

.floating-particle:nth-child(3) {
  width: 6px;
  height: 6px;
  top: 75%;
  left: 15%;
  animation-delay: 2s;
  background: linear-gradient(45deg, #ff00ff, #00f0ff);
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(12px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-12px) translateX(-12px) scale(0.8);
    opacity: 0.5;
  }
  75% {
    transform: translateY(8px) translateX(8px) scale(1.05);
    opacity: 0.6;
  }
}

/* RESPONSIVE DESIGN */

@media (max-width: 768px) {
  .hero-section {
    padding: 0 20px 40px;
  }
  
  .hero-content {
    margin-top: 15px;
    padding-top: 70px;
  }
  
  .hero-image img {
    max-height: 450px; /* Adjusted for mobile */
    min-height: 350px;
  }
  
  .floating-logo img {
    width: 35px;
    height: 35px;
  }
  
  .social-icon-row {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .language-selector {
    padding: 5px 12px;
    font-size: 12px;
  }
  
  .social-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 0 15px 30px;
  }
  
  .hero-content {
    margin-top: 10px;
    padding-top: 60px;
  }
  
  .hero-image img {
    max-height: 400px; /* Smaller for mobile */
    min-height: 300px;
  }
  
  .hero-social-row {
    gap: 8px;
  }
  
  .social-icon-row {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
/* KEEP SIDE BY SIDE EVEN ON MOBILE */
@media (max-width: 992px){
  .hero-section{
    flex-direction: row !important;
    text-align: left !important;
  }

  .hero-content{
    width:50% !important;
  }

  .hero-image{
    width:50% !important;
    justify-content:center !important;
  }

  .hero-image img{
    max-height:430px !important;
    min-height:auto !important;
    margin-bottom:0 !important;
  }
}
/* MAKE HERO SMALLER IN MOBILE */
@media (max-width: 992px){
  .hero-section{
    min-height: 60vh !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .hero-content{
    padding-top: 20px !important;
  }

  .hero-title{
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .hero-subtitle,
  .hero-content p{
    font-size: 15px !important;
    max-width: 90% !important;
  }

  .hero-image img{
    max-height: 300px !important;
    min-height: auto !important;
    margin-bottom: 0 !important;
    transform: none !important;
  }

  .social-icon-row{
    width: 30px !important;
    height: 30px !important;
    font-size: 13px !important;
    margin-top: 10px !important;
  }

  .hero-btn{
    padding: 10px 22px !important;
    font-size: 14px !important;
    margin-bottom: 25px !important;
  }
}
/* === MOBILE HERO FIX LIKE DESKTOP STYLE === */
@media(max-width:768px){

  .hero-section{
    flex-direction: row !important;
    align-items: center !important;
    min-height: 85vh !important;
    padding: 0 20px !important;
  }

  .hero-content{
    width:55% !important;
    padding-top: 40px !important;
  }

  .hero-title{
    font-size:26px !important;
    line-height:1.3 !important;
    margin-bottom:15px !important;
  }

  .hero-content p{
    font-size:14px !important;
    line-height:1.4 !important;
    max-width:100% !important;
  }

  .hero-social-row{
    margin-top:10px !important;
  }

  .hero-btn{
    margin-top:25px !important;
    padding:10px 22px !important;
    font-size:14px !important;
  }

  .hero-image{
    width:45% !important;
    display:flex;
    justify-content:flex-end !important;
  }

  .hero-image img{
    max-height:280px !important;
    min-height:auto !important;
    margin-bottom:0 !important;
    transform:none !important; /* remove 3d tilt */
  }
}
/* FINAL MOBILE FIX - MATCH DESKTOP STYLE */
/* FINAL MOBILE HERO – same layout as desktop but smaller */
@media(max-width:768px){

  .hero-section{
    flex-direction:row !important;
    align-items:center !important;
    min-height:60vh !important;
    padding:0 14px !important;
  }

  .hero-content{
    width:50% !important;
    padding-top:70px !important;
  }

  .hero-title{
    font-size:18px !important;
    line-height:1.2 !important;
    margin-bottom:10px !important;
  }

  .hero-content p{
    font-size:10px !important;
    line-height:1.35 !important;
    margin-bottom:12px !important;
  }

  .hero-btn{
    padding:2px 18px !important;
    font-size:12px !important;
  }

  /* ↓ add this for smaller gap */
  .social-icon-row{
    margin-top:10px !important;
  }

  .hero-image{
    width:50% !important;
    justify-content:center !important;
  }

  .hero-image img{
    max-height:260px !important; /* increased */
    transform:none !important;
    margin-bottom:0 !important;
}

}

