/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(to right, #444af2, #37384f);
  color: #333;
  overflow-x: hidden;
  color: #fcf9f9;

}

/* Background Animation */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(100, 149, 237, 0.1);
  animation: float 15s infinite linear;
}

.circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circle:nth-child(3) {
  width: 250px;
  height: 250px;
  top: 60%;
  left: 10%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.circle:nth-child(4) {
  width: 150px;
  height: 150px;
  top: 80%;
  left: 70%;
  animation-delay: 1s;
  animation-duration: 10s;
}

.circle:nth-child(5) {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 50%;
  animation-delay: 3s;
  animation-duration: 8s;
}

@keyframes float {
  0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
  }
  100% {
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
  }
}

/* Header Styles */
.header {
  background-color: #2b2b39;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
      transform: translateY(-100%);
  }
  to {
      transform: translateY(0);
  }
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f6fafa;
  cursor: pointer;
  transition: color 0.3s;
}

.logo h1 a:hover {
  color: #386044;
}

.logo h1 a {
  color: #f4efef;
  text-decoration: none;
}



















:root {
    --primary-color: #3b82f6;  /* Brighter blue for better contrast on dark */
    --secondary-color: #2563eb;
    --text-color: #f9fafb;     /* Light text for dark background */
    --light-color: #1f2937;
    --dark-color: #111827;
    --nav-bg: #000000;         /* Pure black background */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.navbar {
    background-color: var(--nav-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    width: 300px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-container:focus-within {
    box-shadow: 0 0 0 2px var(--primary-color);
    background-color: rgba(255, 255, 255, 0.2);
}

.search-input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 0.5rem;
    outline: none;
    font-size: 0.9rem;
    color: white;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.search-button:hover {
    color: white;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .hamburger {
        display: block;
        order: 3;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .navbar-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--nav-bg);
        width: 100%;
        text-align: center;
        transition: all 0.5s ease;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .search-container {
        order: 2;
        margin: 0 1rem;
        width: auto;
        flex-grow: 1;
    }
    
    .navbar-brand {
        order: 1;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 992px) {
    .navbar-menu {
        gap: 1rem;
    }
    
    .search-container {
        width: 200px;
    }
}
/* ... (keep all previous CSS rules above) ... */

/* Mobile Styles - Specific Width Adjustments */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .hamburger {
        display: block;
        order: 2;
        margin-left: auto; /* Pushes hamburger to right */
    }
    
    .navbar-brand {
        order: 1;
    }
    
    .search-container {
        order: 3;
        width: 100%;
        margin: 0.5rem 0 0 0;
    }
    
    /* Hamburger animation styles remain the same */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .navbar-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--nav-bg);
        width: 100%;
        text-align: center;
        transition: all 0.5s ease;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-menu.active {
        left: 0;
    }
}

/* Specific adjustments for 560px */
@media (max-width: 560px) {
    .navbar-container {
        padding: 0 0.8rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hamburger {
        padding: 0.4rem;
    }
    
    .bar {
        width: 22px;
        height: 2.5px;
    }
    .search-container {
        width: 90%;
        margin: 0.5rem auto 0 auto;
    }
}

/* Specific adjustments for 360px */
@media (max-width: 360px) {
    .navbar-container {
        padding: 0 0.6rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .hamburger {
        padding: 0.3rem;
    }
    
    .bar {
        width: 20px;
        height: 2px;
    }
     .search-container {
        width: 85%;
        padding: 0.4rem 0.8rem;
    }
    
    .search-input {
        font-size: 0.8rem;
    }
}

/* Specific adjustments for 320px */
@media (max-width: 320px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .hamburger {
        padding: 0.25rem;
    }
    
    .bar {
        width: 18px;
    }
     .search-container {
        width: 85%;
        padding: 0.4rem 0.8rem;
    }
    
    .search-input {
        font-size: 0.8rem;
    }.search-container {
        width: 80%;
        padding: 0.3rem 0.7rem;
    }
    
    .search-input {
        font-size: 0.75rem;
    }
    
    .search-button {
        font-size: 0.8rem;
    }
}





















.navbar {
    background: linear-gradient(135deg, #080000, #24394e);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;

}

.navbar-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(180, 226, 219);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


























 /* Base Styles */
.navbar {
    background-color: #90a1b1;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand {
    color: #ecf0f1;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}


/* Search Bar Styles */
.navbar-search {
    position: relative;
    display: flex;
    width: 400px;
    margin: 0 20px;
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    border-radius: 25px;
    padding: 3px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px 25px 25px 25px;
    font-size: 0.9rem;
    outline: none;
    background-color: #191f24;
}

.search-button {
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: rgb(30, 16, 16);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: linear-gradient(135deg, #5d3a99 0%, #8c40ab 100%);
}










/* Suggestions Dropdown */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgb(238, 230, 230);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.suggestions.show {
    display: block;
}

.suggestions div {
    padding: 10px 15px;
    cursor: pointer;
    color: #2c3e50;
    transition: background-color 0.2s;
}

.suggestions div:hover {
    background-color: #f1f1f1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #a2ccd5;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        flex-wrap: wrap;
    }
    
    .navbar-search {
        order: 3;
        width: 100%;
        margin: 10px 0 0 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .search-input {
        border-radius: 25px 25px 25px 25px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .search-input {
        padding: 8px 12px;
    }
}



















/* Reset some default styles */

.container {
  padding: 30px;
}

.div-bar {
 width: 100%;
  background-color: #f1eff3;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center children horizontally */
  gap: 15px;









 /* width: 100%;
  max-width: 2000px;
  padding: 25px;
  display: grid;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;*/
}

.bar-text {
  margin: 0;
  color: #1a1515;
  font-size: 16px;
}

.box-container {
  display: flex;
  justify-content: center; /* Center boxes horizontally */
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 10px;
  width: 100%; /* Take full width of parent */
}

.boss {
  text-align: center;
  color: #1e1414;
  font-size: medium;
}
.bosss {
  text-align: center;
  color: #05040b;
  font-size: 1.5rem;
}

.box {
  padding: 20px 90px;
  background-color: #1e1930;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  flex: 0 0 auto; /* Don't grow or shrink */
}

.box:hover {
  background-color: #45a049;
  transform: translateY(-2px); /* Add slight lift effect */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsive adjustments */








@media (max-width: 906px) {

  .box {
  padding: 15px 40px;
  }
}




@media (max-width: 736px) {
   .box {
  padding: 10px 22px;
  }
}
.box-container {
    display: flex;
    justify-content: center; /* Center boxes horizontally */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 2px;
    width: 100%; /* Take full width of parent */
  }
  






@media (max-width: 600px) {
  .box-container {
      flex-direction: row; /* Keep row layout on mobile */
  }
  
  .box {
      padding: 7px 10px; /* Slightly smaller on mobile */
  }

.box-container {
    display: flex;
    justify-content: center; /* Center boxes horizontally */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 3px;
    width: 100%; /* Take full width of parent */
  }
  
}

@media (max-width: 540px) {
   .box {
  padding: 10px 10px;
  }
  .box-container {
    display: flex;
    justify-content: center; /* Center boxes horizontally */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 3px;
    width: 100%; /* Take full width of parent */
  }
  
}
































@media (max-width: 481px) {

  .div-bar {
gap: 5px;
width: 100%;
max-width: 3000px;
padding: 15px;
display: grid;
border-radius: 10px;
overflow: hidden;

  background-color: #f1eff3;
  flex-direction: column;
  align-items: center; /* Center children horizontally */
  gap: 15px;
}

.container {
  padding: 10px;


  .boss {
    text-align: center;
    color: #0a0909;
    font-size: 0.7rem;
    text-decoration: none;
  }
  .bosss {
    text-align: center;
    color: #05040b;
    font-size: 1rem;
    text-decoration: none;
  }

  .box-container {
    display: flex;
    justify-content: center; /* Center boxes horizontally */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 10px;
    width: 100%; /* Take full width of parent */
  }
  




  .box {
    padding: 10px 8px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 0 auto; /* Don't grow or shrink */
  }



}

}








@media (max-width: 400px) {
  .box-container {
      flex-direction: row; /* Keep row layout on mobile */
      gap: 0px;
  }
  
  .box {
      padding: 5px 5px; /* Slightly smaller on mobile */
  }


boss {
  text-align: center;
  color: #fbfbfb;
  font-size: 0.2rem;
}
.bosss {
  text-align: center;
  color: #05040b;
  font-size: 1rem;
}
}


























/*devoloper section */
.developer-card {
  width: 100%;
  max-width: 2000px;
  display: grid;
  grid-template-columns: 380px 1fr;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.developer-card:hover {
  transform: translateY(-5px);
}

.profile-sidebar {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  box-shadow: 20PX 20px0 #050111;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.developer-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.developer-title {
  font-size: 2rem;
  color: #64d5cc;
  margin-bottom: 20px;
  font-weight: 500;
}

.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #444af2, #37384f);
  margin: 15px 0;
}

.contact-info {
  margin-top: auto;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.contact-item i {
  margin-right: 10px;
  color: #666;
}

.profile-main {
  padding: 30px;
}

.section-title {
  font-size: 1rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: #444af2;
}

.bio-text {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ddd;
}





/*container*/

.container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.column-box {
  display: block;
  width: 300px;
  padding: 20px;
  background-color: #2e2359;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.column-box:hover {
  background-color: #388E3C;
}















@media (max-width: 1365px) {
  .profile-sidebar {
    padding: 20px;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  .container {
  gap: 12px;
  flex-direction: row;
}


.column-box {
  display: block;
  width: 250px;
  padding: 15px;

}
}





@media (max-width: 1365px) {
  .profile-sidebar {
    padding: 20px;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  .container {
  gap: 12px;
  flex-direction: row;
}


.column-box {
  display: block;
  width: 200px;
  padding: 15px;

}
}








@media (max-width: 1024px) {
  .profile-sidebar {
    padding: 20px;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  .container {
  gap: 12px;
  flex-direction: row;
}


.column-box {
  display: block;
  width: 160px;
  padding: 15px;

}
}





@media (max-width: 948px) {
  .profile-sidebar {
    padding: 20px;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  .container {
  gap: 12px;
  flex-direction: row;
}


.column-box {
  display: block;
  width: 140px;
  padding: 15px;

}
}




@media (max-width: 885px) {
  .profile-sidebar {
    padding: 20px;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  .container {
  gap: 12px;
  flex-direction: row;
}


.column-box {
  display: block;
  width: 120px;
  padding: 15px;

}
}





@media (max-width: 768px) {
 /* .developer-card {
    grid-template-columns: 1fr;
  }
  */
  .developer-card {
  width: 100%;
  max-width: 2000px;
  display: grid;
  grid-template-columns: 200px 1fr;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}
  .profile-sidebar {
    padding: 10px;
  }
  
  .profile-image {
    width: 120px;
    height: 120px;
  }
  .container {
  gap: 12px;
  flex-direction: row;
}


.column-box {
  display: block;
  width: 130px;
  padding: 7px;

}
}



@media (max-width: 689px) {
  .developer-card {
  width: 100%;
  max-width: 2000px;
  display: grid;
  grid-template-columns: 200px 1fr;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}
  .container {
  gap: 30px;
  flex-direction: column;
}


.column-box {
  display: block;
  width: 230px;
  padding: 7px;

}
}


@media (max-width: 481px) {
  .column-box {
  display: block;
  width: 150px;
  padding: 7px;

}
}






@media (max-width: 400px) {
.developer-card {
  width: 100%;
  max-width: 2000px;
  display: grid;
  grid-template-columns: 140px 1fr;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}
.profile-sidebar {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.developer-name {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}


.developer-title {
  font-size: 1.3rem;
  
}


.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #444af2, #37384f);
  margin: 15px 0;
}

.contact-info {
  margin-top: auto;
  width: 190%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.70rem;
}

.contact-item i {
  margin-right: 10px;
  color: #666;
}

.profile-main {
  padding: 30px;
}

.section-title {
  font-size: 0.7rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: #444af2;
}

.bio-text {
  line-height: 1.4;
  margin-bottom: 20px;
  color: #ddd;
  font-size: small;
}


.container {
  gap: 5 px;
  flex-direction: column;
}


.column-box {
  display: block;
  width: 150px;
  padding: 7px;

}
}















/*fault site */



aside {
  width: 730px;
  /*background-color: rgba(0, 0, 0, 0.2);*/
  padding: 20px;
  height: 150vh;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.big-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
 /* backdrop-filter: blur(10px);*/
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.big-container p {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.big-container p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(to bottom, #6a11cb, #2575fc);
  border-radius: 5px;
}

main {
  flex: 1;
  padding-right: 320px; /* To account for the aside width */
}


















  

/*own*/
.photo-bar {
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f5e7e7;
  border-radius: 20px;

 
}

.rs {
  text-align: center;
  color: #000;
  
}

.helper-text {
  color: #090606;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  padding: 20px;
}

.photo-list {
  display: flex;
  gap: 90px;
  flex-wrap: wrap;


}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  width: 140px;
  height: 140px;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #f6ecec;
  text-align: center;
  font-size: 12px;
  padding: 5px 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.photo-item:hover .photo-name {
  opacity: 1;
}

/* Features Section */
.features {
  padding: 80px 0;
}

.container-sec {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section--title {
  text-align: center;
  margin-bottom: 60px;
}

.section--title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.section--title p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }
  
  .section--title h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* Container Styles */
.container-sec {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title Styles */
.section--title {
  text-align: center;
  margin-bottom: 60px;
}

.section--title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.section--title p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* Subjects Section */
.subjects {
  padding: 50px 0;
}

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.subject-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.subject-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


.subject-card:hover .subject-img img {
  transform: scale(1.05);
}

.subject-content {
  padding: 25px;
}

.subject-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.subject-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Responsive Adjustments 
@media (max-width: 768px) {
  .subjects {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .subjects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .subject-img {
    height: 180px;
  }
}
*/











/* Footer Styles */
footer {
  color: rgb(244, 243, 248);
  padding: 4rem 4rem 0;
  background-color: #050111;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-section {
  width: 30%;
  margin-bottom: 2rem;
  
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #f5f4f7;
  text-decoration: underline;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  list-style: none;
}

.footer-section ul li a {
  text-decoration: none;
  color: #51ac9e;
  transition: all 0.3s;
}

.footer-section ul li a:hover {
  color: #f8f9fe;
  padding-left: 5px;
}

.footer-section p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: #bacff8;
}

.footer-section p i {
  margin-right: 10px;
  color: rgb(248, 246, 246);
}

.site-social {
  display: flex;
 /* justify-content: center;*/
  gap: 1.7rem;
}

.developer-social a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.3s;
}

.developer-social a:hover {
  color: #aaa;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  background-color: #050303;
  height: 100%;
  margin: 100;
  padding: 100;

}







/* Add to your existing CSS */
.site-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.site-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.site-social a:hover {
    color: #51ac9e;
    transform: translateY(-3px);
}

.whatsapp-cta {
    margin-top: 1.5rem;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-button i {
    margin-right: 8px;
}




























    header {
      background-color: #1e1e2f;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
    }

    .download-btn {
      background-color: #ff4757;
      border: none;
      padding: 10px 30px;
      color: white;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .download-btn:hover {
      background-color: #e84118;
    }













/* Make sure Font Awesome is included in your head */












/* Responsive Styles */
@media (max-width: 992px) {
  .developer-content {
      flex-direction: column;
      text-align: center;
  }
  
  .developer-image {
      margin-top: 3rem;
  }

  main {
    margin-top: 10px;
    padding: 0px 200px;
  }
  
  .nav-links {
      gap: 1rem;
  }
  
  .footer-section {
      width: 45%;
  }

  
  
}





@media (max-width: 992px) {
  .header {
      padding: 1.5rem;
  }
  
  .logo h1 {
      font-size: 1.5rem;
  }
  
  h2 {
      font-size: 2rem;
  }
  
  h3 {
      font-size: 1.5rem;
  }

  .site-social { 
    justify-content: center;
  }
  
  .about-us {
    text-align: center;
  }
  .footer-content {
      flex-direction: column;
      gap: 1.5rem;
  }
  



.inst {



  mix-blend-mode: color-dodge; 




}







  .footer-section {
      width: 100%;
  text-align: center;
  }

  .footer-section p {
    text-align: center;
  }
  
  .social-icons {
      justify-content: center;
  }
  





  .developer-content {
    flex-direction: row;
  }

  .developer-image {
    width: 20px;
    height: 280px;
  }

  .developer-text {
    font-size: 14px;
  }
  .link-group{
      flex-direction: row;
  }







main {
  margin-top: 10px;
  padding: 0px 20px;
}
}








@media (max-width: 768px) {
  .hamburger {
      display: block;
  }
  
  .nav-links {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(84, 88, 210, 0.98);
      backdrop-filter: blur(5px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem 0;
      transition: all 0.5s ease;
      transform: translateY(-100%);
      opacity: 0;
      z-index: 1000;
  }
  
  .nav-links.active {
      transform: translateY(0);
      opacity: 1;
  }
  
  .nav-link:hover {
      background-color: rgba(255, 255, 255, 0.1);
  }
  
  .search-container {
      display: none;
  }
  
  .search-container.active {
      display: flex;
      margin: 2rem auto;
      width: 80%;
  }
  
  .hamburger.active .line:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active .line:nth-child(2) {
      opacity: 0;
  }
  
  .hamburger.active .line:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
  }
}

.site-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.site-social a {
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}






@media (max-width: 576px) {
  .header {
      padding: 1.5rem;
  }
  
  .logo h1 {
      font-size: 1.5rem;
  }
  
  h2 {
      font-size: 2rem;
  }
  
  h3 {
      font-size: 1.5rem;
  }
  
  .footer-content {
      flex-direction: column;
      gap: 1.5rem;
  }
  
  .footer-section {
      width: 100%;
  text-align: center;
  }

  .footer-section p {
    text-align: center;
  }

  





  .developer-content {
    flex-direction: row;
    
  }

  .developer-image {
    width: 20px;
    height: 200px;
    justify-content: center;
  }

  .developer-text {
    font-size: 14px;
  }
  .link-group{
      flex-direction: row;
  }







main {
  margin-top: 10px;
  padding: 0px 20px;
}
}




.site-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.site-social a {
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}






  













@media (max-width: 576px) {


  .developer-content {
    flex-direction: row;
  }

  .developer-image {
    width: 10px;
    height: 180px;
  }

  .developer-text {
    font-size: 14px;
  }
  .link-group{
      flex-direction: row;
  }

  .small-box {
    width: 100px;
    height: 60px;


}


}







  
  .box-container {
      gap: 1.5rem;
  }
  
  .photo-list {
      gap: 20px;
      justify-content: center;
  }
  
  .photo-item {
      width: 120px;
      height: 120px;
  }







  
  .box-container {
      gap: 1.5rem;
  }
  
  .photo-list {
      gap: 20px;
      justify-content: center;
  }
  
  .photo-item {
      width: 120px;
      height: 120px;
  }







@media (max-width: 576px) {


 .pop {
    font-size: small;
  }


.site-social {
    display: flex;
    gap: 0.3rem;
    margin-top: 1.5rem;
}

.site-social a {
    color: #fff;
    font-size: 0.3rem;
    transition: all 0.3s;
}
}
