@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top left, #0e0b1d, #020617 60%);
  overflow-x: hidden;
  position: relative;
}

/* Glowing background orbs */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.4;
  z-index: -1;
}

/* Left blue glow */
body::before {
  top: -100px;
  left: -100px;
  background: #2563eb;
}

/* Right pink/purple glow */
body::after {
  bottom: -150px;
  right: -100px;
  background: #9333ea;
}

header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.logo {
  text-decoration: none;
  color: white;
  font-size: 2em;
  font-weight: 600;
}

.logo span {
  color: #4b4bb4;
}

header nav li {
  display: inline;
  margin: 0 20px;
}

header nav li a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  position: relative;
}

header nav li a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4b4bb4;
  border-radius: 50px;
  transition: all 0.5s ease;
  transform: scale(0);
}

header nav li a:hover::before {
  transform: scale(1);
}

header nav li a:hover {
  color: #ffffff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.socials a {
  font-size: 1.3em;
  color: white;
  transition: all 0.5s ease;
}

.socials a:hover {
  transform: translateY(-5px) scale(1.2);
  color: #4b4bb4;
}

#menu {
  background: transparent;
  color: white;
  width: 40px;
  height: 30px;
  font-size: 2em;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: none;
}

main {
  padding: 0 10%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
}

.hero-text > span {
  font-size: 1.5em;
  color: #4b4bb4;
}

.hero-text .h1x {
  font-size: 4em;
  color: white;
}

.hero-text h1 span {
  font-size: 3em;
  color: #4b4bb4;
}

.hero-text p {
  color: white;
  font-size: 1.5em;
}

.btns {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}


.btns a {
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: none;
  color: #4b4bb4;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  transition: all 0.5s ease;
}

.btns .h1btn{
  font-size: 1.1em;
  font-weight: 600;
  transition: all 0.5s ease;
}

.btns a:first-child {
  background: #ffffff;
}

.btns a:last-child {
  background: #4b4bb4;
  color: #ffffff;
}

.btns a:hover {
  box-shadow: 0 10px 25px #ffffff;
}

.btns a:hover:first-child {
  box-shadow: 0 10px 25px #4b4bb4;
}

.hero-img {
  width: 400px;
  height: 400px;
  border-radius: 10%;
  background: #4b4bb4;
  overflow: hidden;
  box-shadow: 0 0 50px #4b4bb4;
  animation: boxShadowGlow 1s linear infinite alternate;
}

.selector{
width: 50px;
height: 50px;
font-size: 1em;
color: #ffffff;
text-align: center;
background: #020617;
border-radius: 20%;
}
.hero-img img {
  width: 100%;
  height: 100%;
  /*border-radius: 50%;*/
  object-fit: cover;
  object-position: center;
}

@keyframes boxShadowGlow {
  100% {
    box-shadow: 0 0 100px #6767f1;
  }
}

/* Feature Cards */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.5s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: #222235;
}

.feature-card .icons {
  font-size: 3em;
  color: #4b4bb4;
  margin-bottom: 20px;
  
}



.feature-card h2 {
  font-size: 25px;
  margin-bottom: 15px;
  color: white;
}

.feature-card p {
  color: #fdfdff;
  font-size: 20px;
  line-height: 1.6;
}

.feature-card1 {
  background: rgba(10, 0, 32, 0.7);
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.5s ease;
  text-align: center;
}

.feature-card1:hover {
  transform: translateY(-10px);
  background: #4b4bb4;
}

.feature-card1 .icons {
  font-size: 3em;
  color: #4b4bb4;
  margin-bottom: 20px;
  
}



.feature-card1 h2 {
  font-size: 25px;
  margin-bottom: 15px;
  color: white;
}

.feature-card1 p {
  color: #fdfdff;
  font-size: 20px;
  line-height: 1.6;
}

/* About Section */
.about {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

.section-header {
  text-align: center;
}

.section-label {
  color: #4b4bb4;
  font-size: 5em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.7em;
  line-height: 1.3;
  color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: 15px;
}

.about-icon {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  background: #4b4bb4;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px #4b4bb4;
}

.about-icon ion-icon {
  font-size: 35px;
  color: white;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 200px;
  height: 100px;
  transform: translateX(-50%);
  background: rgba(72, 52, 139, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.experience-badge .number {
  font-size: 3em;
  font-weight: 700;
  color: #ffffff;
}

.experience-badge .text {
  font-size: 14px;
  line-height: 1.4;
  color: white;
}

.bio h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.bio-text {
  font-size: 1.5em;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: right;
}

.bio-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.bio-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bio-item label {
  color: #b8b8d1;
  font-size: 18px;
}

.bio-item span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.btn {
  background: #4b4bb4;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Stats Section */
.stats {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(72, 52, 139, 0.3);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3em;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  color: #b8b8d1;
  font-size: 1.5em;
}




/* CarBreak1 Section */
.CarBreak1 {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.CarBreak1-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 60px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(72, 52, 139, 0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(0, 217, 255, 0.2);
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #4b4bb4;
  color: #ffffff;
  border-color: #4b4bb4;
  transform: translateY(-2px);
}

.CarBreak1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.CarBreak1-item {
  position: relative;
  max-width: 100%;
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.CarBreak1-image {
  position: relative;
  overflow: hidden;
}

.CarBreak1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.CarBreak1-item:hover .CarBreak1-image img {
  transform: scale(1.1);
}

.CarBreak1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(85, 0, 255, 0.95),
    rgba(26, 22, 80, 0.95)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.CarBreak1-item:hover .CarBreak1-overlay {
  opacity: 1;
}

.CarBreak1-info {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.CarBreak1-item:hover .CarBreak1-info {
  transform: translateY(0);
}

.CarBreak1-info h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: white;
}

.CarBreak1-info p {
  color: white;
  font-size: 14px;
  margin-bottom: 20px;
}

.CarBreak1-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.CarBreak1-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.CarBreak1-link:hover {
  background: #fff;
  color: #1a1650;
  transform: translateY(-3px);
}

/* Contact Section */
.contact {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10px;
  margin-top: 50px;
}

.contact-form {
  background: #1514214d;
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(26, 22, 80, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.2);
  padding: 15px 20px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
  text-align: right;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4b4bb4;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
}

/* Footer */


footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background: rgba(26, 22, 80, 0.8)#2d2e33;
    padding: 60px 10%;
}

ul{
    list-style: none;
}

.footer-col{
    width: 25%;
}

.footer-col h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #ffffff;
    text-transform: capitalize;
}

.footer-col h4::before{
    content: '';
    /*position: absolute;*/;
    left: 0;
    bottom: -6px;
    background-color: #4b4bb4;
    height: 2px;
    width: 40px;
}

ul li:not(:last-child){
    margin-bottom: 8px;
}

ul li a{
    display: block;
    font-size: 19px;
    text-transform: capitalize;
    color: #bdb6b6;
    text-decoration: none;
    transition: 0.4s;
}

ul li a:hover{
    color: white;
    padding-left: 2px;
}

.links a{
    display: inline-block;
    height: 44px;
    width: 44px;
    color: #4b4bb4;
    background-color: #ffffff;
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}

.links a:hover{
    color: #ffffff;
    background-color: #4b4bb4;
}

.footer {
  text-align: center;
  color: white;
}







/* Responsiveness */
@media (max-width: 1000px) {
  header {
    padding: 20px 5%;
  }

  main {
    padding: 0 5%;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .CarBreak1-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1300px) {
    #menu {
    display: flex;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #020617;
    overflow: hidden;
    max-height: 0;
    transition: max-height 1s ease;
  }


  header nav li {
    display: block;
    margin: 20px;
    text-align: center;
  }

  header nav li a {
    color: #ffffff;
  }


  header nav.open {
    max-height: 300px;
  }

  /* Hero Section */
  .hero {
    flex-direction: column-reverse;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .hero-img {
    width: 60%;
  }

  .hero-text {
    text-align: center;
    margin-top: 50px;
  }

  .hero-text h1 {
    font-size: 3em;
  }

  .hero-text .h1x {
    font-size: 3em;
  }

  .hero-text h1 span {
    font-size: 2em;
  }

  .btns {
    justify-content: center;
  }

  /* Features Card */
  .features {
    grid-template-columns: 1fr;
    margin-top: 100px;
  }

  .section-label {
    font-size: 3em;
  }

  .section-title {
    font-size: 2em;
  }

  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
  }

  .bio-details {
    grid-template-columns: 1fr;
  }

  /* Stats Section */
  .stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    flex-direction: column;
  }



  /* CarBreak1 Section */

  .CarBreak1-grid {
    grid-template-columns: 1fr;
  }

  .CarBreak1-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }
}


@media (max-width: 800px) {
  #menu {
    display: flex;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #020617;
    overflow: hidden;
    max-height: 0;
    transition: max-height 1s ease;
  }



  header nav li {
    display: block;
    margin: 20px;
    text-align: center;
  }

  header nav li a {
    color: #ffffff;
  }


  header nav.open {
    max-height: 300px;
  }

  /* Hero Section */
  .hero {
    flex-direction: column-reverse;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .hero-img {
    width: 80%;
    
  }

  .hero-text {
    text-align: center;
    margin-top: 50px;
  }

  .hero-text h1 {
    font-size: 3em;
  }

  .hero-text .h1x {
    font-size: 3em;
  }

  .hero-text h1 span {
    font-size: 2em;
  }

  .btns {
    justify-content: center;
  }

  /* Features Card */
  .features {
    grid-template-columns: 1fr;
    margin-top: 100px;
  }

  .section-label {
    font-size: 3em;
  }

  .section-title {
    font-size: 2em;
  }

  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
  }

  .bio-details {
    grid-template-columns: 1fr;
  }

  /* Stats Section */
  .stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    flex-direction: column;
  }



  /* CarBreak1 Section */

  .CarBreak1-grid {
    grid-template-columns: 1fr;
  }

  .CarBreak1-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

@media(max-width: 740px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col h4::before{
        all: unset;
    }
}

@media (max-width: 500px) {
  .hero-text .h1x {
    font-size: 3em;
  }

  .hero-text h1 span {
    font-size: 1.5em;
  }
}

@media(max-width: 555px){
    .footer-col{
        width: 100%;
    }
}


@media (max-width: 425px) {
  .hero-img {
    width: 90%;
    
  }
}
@media (max-width: 400px) {
  .socials {
    display: none;
  }
}


