  /* home Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
html{
  overflow-x: hidden; /* Prevent horizontal scrolling */

}
body {
    /* background: #191919;*/
    background: #060c21;
    color: #ffffff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    

}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

}
.container-header {
    background: #000000;
    padding: 10px 20px; /* Adjust padding for spacing */
    display: flex;
    align-items: center;
    justify-content: space-between; 
  }
  
  
h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
/* background: linear-gradient(45deg, #6a11cb, #2575fc);*/
background:  black;
    color: #fff;
    display: none;
    justify-content: space-between; /* This will space out the content */
    position: relative; /* Ensures absolute positioning of logo */
    align-items: center;
    text-align: center;
    padding: 20px;
}
.hero h1 {
    font-size: 3rem;
}
.hero span {
    color: #ff69b4;
}
.hero p {
    margin: 10px 0 20px;
}
.hero .btn {
    padding: 10px 20px;
    background: #ff69b4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.hero .btn:hover {
    background: #ff3e88;
}
.hero .logo img {
    height: 70px;
    width: 180px;
    position: absolute;
    top: 12px;
    left: 15px;
}

/* Ensure other content is spaced out correctly */
.hero h1, .hero p, .hero .btn {
    margin-left: 80px; /* Create space for the logo */
    text-align: left; /* Align text to the left */
}

/* Navbar */
.navbar {
    background: #000000;
    padding: 10px 20px; /* Adjust padding for spacing */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Push logo and tabs to opposite ends */
  }
  .logo {
    width: 50px; /* Adjust the logo size */
    height: 50PX;
  }
  .navbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    position: relative;
  }
  .navbar a:hover {
    color: #ff000d;
  }
  
/* Dropdown */
.navbar .dropdown {
    position: relative;
    display: inline-block;
}
.navbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 5px;
    text-align: left;
    z-index: 2;
}
.navbar .dropdown-content a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}
.navbar .dropdown-content a:hover {
    /*background-color: #ff69b4; */
    background-color:  #ff000d;
    color: #fff;
}
.navbar .dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-content-right {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  top: 0;
  left: 100%;
  z-index: 1;
}

.dropdown-submenu:hover .dropdown-content-right {
  display: block;
}


/* Footer */
.footer {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, .9);
    text-align: center;
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity,1))
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Pushes elements to left and right */
  align-items: center; /* Align vertically centered */
  padding: 0 20px; /* Horizontal padding */
}

/* Left-aligned text */
.footer-text-left {
  color: #9ca3af; /* Gray color */
  font-size: 14px;
  margin: 0;
}

/* Right-aligned text */
.footer-text-right {
  color: #9ca3af; /* Gray color */
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease; /* Smooth hover transition */
  margin: 0;
}

.footer-text-right:hover {
  color: #a855f7; /* Purple hover effect */
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    color: #fff;
    padding: 10px;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 1000;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;

}
.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: -100%; /* Hidden off-screen */
    width: 250px;
    height: 100vh;
    background: #333;
    border-radius: 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    text-align: left;
    padding: 10px;
    z-index: 999;
    transition: left 0.3s ease; /* Smooth slide effect */

  }

.mobile-nav.show {
    left: 0; /* Slide into view */
}

.mobile-nav a {
    display: block;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid #444;
}
.mobile-nav a:last-child {
    border-bottom: none;
}
.mobile-nav a:hover {
    background: #ff69b4;
}


/* Effects */

#particles, #vignette {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    bottom: 0;
    right: 0;
    z-index: -2;

}

#vignette {
    box-shadow: 0 0 800px rgba(0,0,0,0.9) inset;
    z-index: -1;

}



.container-profile {
    font-family: "Jost", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    justify-content: center; /* Centers horizontally */

  }


.box {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
    background: #060c21; /* Change */
    transition: .5s;
    
}

.box:hover {
    height: 400px;
}

.box .imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.box .imgBx img {
    max-width: 100%;
    opacity: .3;
    transition: .5s; 
}

.box:hover .imgBx img {
    opacity: 1;  
}

.box:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -1;

}

.box:after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -2;
    filter: blur(40px);

}

.box:before,
.box:after   {  
    background: linear-gradient(235deg, #2196f3, #010615, #F00000);
}

.box:nth-child(2):before,
.box:nth-child(2):after   { /* not supported 😣 */
    background: linear-gradient(235deg, #2196f3, #010615, #F00000);
}

.box:nth-child(3):before,
.box:nth-child(3):after   { /* not supported 😣 */
    background: linear-gradient(235deg, #772aff, #010615, #2196f3);
}

.box .content {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 90px;
    background: rgba(0,0,0,.04);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
}


.box:hover .content {
    opacity: 1;
}

.box .content h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 500; /* just one style 😐 */
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Audiowide', cursive;

    
}

.box .content h2 span {
    font-size: 14px;
    color: #fff;
    font-weight: 200; /* just one style 😐 */
    font-family: 'Audiowide', cursive;

    letter-spacing: 2px;
}


/* Media Queries for Responsiveness */

@media (max-width: 1024px) {

  .info {
    padding: 0 20px;
  }

  .swiper {
    width: 100%;
    height: 350px;
  }

  .btn {
    width: 40%;
  }
}

@media (max-width: 768px) {
 

  .info p {
    font-size: 0.9rem;
  }

  .swiper {
    width: 80%;
    height: 300px;
  }

  .navbar {
    display: none;
}
.mobile-menu {
    display: block;
}

body {
  overflow-x: hidden; /* Reaffirm for mobile */
}
.container {
  padding: 0 15px; /* Add padding to prevent overflow */
}
.footer-container {
  max-width: 1200px;
  flex-direction: column; /* Stacked vertically by default */
  text-align: center;
}

.hero{
    display: flex;
  }

}


.rgb-text {
  font-size: 2.5em;
  color: white;
  margin-top: 20px
}


/* Contact Form Styles */
.contact-form {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 6px 12px rgb(255 0 0 / 72%);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff4d4d;
}

.contact-form label {
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
    color: #ff4d4d;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border-color: #ff4d4d; /* Red focus border */
    outline: none;
    background-color: #fff;
}
textarea :focus{
  border-color: #ff4d4d; /* Red focus border */
  outline: none;
  background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
}
/* Center Contact Info Horizontally */
.contact-info {
  text-align: center;
  margin: 20px auto;
  max-width: 800px; /* Adjust as needed */
  color: #ffffff;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.6;
}


.contact-form button {
  background-color: #ff4d4d; /* Red background */
  color: white;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e64a4a; /* Darker red for hover effect */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
        margin: 10px;
    }

    .contact-form h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-form label {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 14px;
    }

    .contact-form button {
        padding: 10px 18px;
        font-size: 14px;
    }
}

.success-message {
  padding: 20px;
  background-color: #4CAF50;
  color: white;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
  border-radius: 5px;
}
