 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, New Gothic Style, Endor Alt, Endor, sans-serif;
            background: #0a0a0a;
            color: #b81e1e;
            line-height: 1.6;
        }

         .section h1 {
            font-family: 'Endor Alt', sans-serif;
        }

        /* Floating Navbar */
        .navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 12px 30px;
            border: 1px solid #333;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #b81e1e;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #b81e1e;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #ffffff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: #ffffff;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }


        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Section Styling */
        .section {
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .section h1 {
            font-size: 6rem;
            font-weight: 900;
            text-align: center;
            letter-spacing: -2px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .section-info {
            font-size: 1.1rem;
            color: #999;
            font-style: italic;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Individual Section Colors */
        #home {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        #about {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        #services {
            background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
        }

        #portfolio {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        }

        #contact {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        /* Footer */
        .footer {
            background: transparent;
            padding: 60px 20px 30px;
            display: flex;
            justify-content: center;
        }

        .footer-container {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            width: 100%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .footer-section p,
        .footer-section a {
            color: #999;
            text-decoration: none;
            margin-bottom: 8px;
            display: block;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-section a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 0.85rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                top: 15px;
                padding: 10px 20px;
                width: calc(100% - 30px);
                max-width: 500px;
            }

            .nav-container {
                justify-content: space-between;
                gap: 0;
            }

            .nav-center {
                gap: 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 26, 26, 0.95);
                flex-direction: column;
                padding: 20px;
                border-radius: 15px;
                margin-top: 10px;
                gap: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .auth-buttons {
                display: none;
            }

            .mobile-auth-buttons {
                display: flex !important;
                flex-direction: column;
                gap: 10px;
            }
            .mobile-auth-buttons .auth-btn {
                width: 100%;
                text-align: center;
            }
            
            .mobile-auth-buttons .auth-btn.signup-btn {
                background: #ffffff;
                color: #000000;
            }

            .menu-toggle {
                display: block;
            }

            .section h1 {
                font-size: 3.5rem;
                padding: 0 20px;
            }

            .footer-container {
                margin: 0 10px;
                padding: 30px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .section h1 {
                font-size: 2.5rem;
            }

            .navbar {
                padding: 8px 15px;
            }

            .logo {
                font-size: 1.3rem;
            }
        }

        /* Smooth scroll enhancement */
        @media (prefers-reduced-motion: no-preference) {
            html {
                scroll-behavior: smooth;
            }
        }

        .wrap
{
  margin:50px auto 0 auto;
  width:100%;
  display:flex;
  align-items:space-around;
  max-width:1200px;
}
.tile
{
  width:300px;
  height:300px;
  margin:10px;
  background-color:#000000;
  display:inline-block;
  background-size:cover;
  position:relative;
  cursor:pointer;
  transition: all 0.4s ease-out;
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.44);
  overflow:hidden;
  color:white;
  font-family:'Roboto';
  
}
.tile img
{
  height:100%;
  width:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:0;
  transition: all 0.4s ease-out;
}
.tile .text
{
/*   z-index:99; */
  position:absolute;
  padding:30px;
  height:calc(100% - 60px);
}
.tile h1
{
 
  font-weight:300;
  margin:0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.tile h2
{
  font-weight:100;
  margin:20px 0 0 0;
  font-style:italic;
   transform: translateX(200px);
}
.tile p
{
  font-weight:300;
  margin:20px 0 0 0;
  line-height: 25px;
/*   opacity:0; */
  transform: translateX(-200px);
  transition-delay: 0.2s;
}
.animate-text
{
  opacity:0;
  transition: all 0.6s ease-in-out;
  scroll-behavior: auto;
}
.tile:hover
{
/*   background-color:#99aeff; */
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
  transform:scale(1.05);
}
.tile:hover img
{
  opacity: 0.2;
}
.tile:hover .animate-text
{
  transform:translateX(0);
  opacity:1;
}
.dots
{
  position:absolute;
  bottom:20px;
  right:30px;
  margin: 0 auto;
  width:30px;
  height:30px;
  color:currentColor;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-around;
  
}

.dots span
{
    width: 5px;
    height:5px;
    background-color: currentColor;
    border-radius: 50%;
    display:block;
  opacity:0;
  transition: transform 0.4s ease-out, opacity 0.5s ease;
  transform: translateY(30px);
 
}

.tile:hover span
{
  opacity:0;
  transform:translateY(0px);
}

.dots span:nth-child(1)
{
   transition-delay: 0.05s;
}
.dots span:nth-child(2)
{
   transition-delay: 0.1s;
}
.dots span:nth-child(3)
{
   transition-delay: 0.15s;
}


@media (max-width: 1000px) {
  .wrap {
   flex-direction: column;
    width:400px;
  }
}