/* ===== Background Video ===== */
html{
    scroll-behavior:smooth;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(80%) blur(2px);
}

/* ===== Navbar ===== */
.glass-navbar {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: 0 auto;
  z-index: 1000;
}

.navbar-brand {
font-size: 1.3rem; 
color: #fff !important;
}

.nav-link {
color: #fff !important;
transition: color 0.3s ease;
}

.nav-link:hover {
color: #aad4ff !important;
}

.btn-light {
font-weight: 500;
transition: 0.3s;
}

.btn-light:hover {
background: #aad4ff;
color: #fff;
}

/* ===== General Section Layout ===== */
section {
    padding: 80px 0;
}

.glass-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
    padding: 40px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    color: #e3f2fd;
}

#home {
  padding-top: 100px;
}

.btn-custom {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    transition: 0.3s;
}

.btn-custom:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #000;
}

/* ===== About Section ===== */
.about-img {
width: 180px; 
max-width: 40%;     
height: auto;        
border-radius: 50%;
box-shadow: 0 0 20px rgba(255,255,255,0.4);
transition: transform 0.3s;
}

.about-img:hover {
transform: scale(1.05);
}

.badge-custom {
display: inline-block;
background: rgba(255, 255, 255, 0.3);
color: #fff;
border-radius: 30px;
padding: 8px 20px;
font-weight: 500;
transition: 0.3s;
}

.badge-custom:hover {
background: rgba(255, 255, 255, 0.6);
color: #000;
transform: scale(1.05);
cursor: default;
}

/* ===== Project Cards ===== */
.project-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 180px;
  width: 100%;
  transition: all 0.6s ease-in-out;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform-origin: center;
  cursor: pointer;
}

.project-card:hover {
  height: 400px;
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.project-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
  border-radius: 25px;
  filter: brightness(80%);
}

.project-card:hover .project-img {
  object-fit: contain;
  background-color: #000;
  filter: brightness(100%);
}

.project-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 1.5rem;
}

.project-content h3 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}


.project-content .btn {
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  border-radius: 25px;
  text-transform: lowercase;
  transition: all 0.3s ease;
}

.project-content .btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

/* ===== Contact Icons ===== */
.contact-icons i {
    font-size: 2rem;
    color: #fff;
    margin: 0 15px;
    transition: 0.3s;
}

.contact-icons i:hover {
    color: #aad4ff;
    transform: scale(1.2);
}

