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


body {
       font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
             z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-container img {
            height: 60px;
            width: auto;
        }

        .logo-text {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-links a:hover {
            background: rgba(220, 53, 69, 0.2);
            color: #dc3545;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }

        /*Contact container */
        .container{
             margin-left:auto;
             margin-right:auto;
             margin-top:10px;
             margin-bottom:40px;
            max-width: 1000px;
             background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a1a" width="1200" height="600"/><circle cx="600" cy="300" r="200" fill="%23dc3545" opacity="0.1"/><circle cx="300" cy="150" r="100" fill="%23ffffff" opacity="0.05"/><circle cx="900" cy="450" r="150" fill="%23dc3545" opacity="0.08"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            color:#fff;
            padding:15px;
            display:flex;
            flex-direction :column;
            justify-content:center;
            align-items: center;
        }

        .con{
 background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a1a" width="1200" height="600"/><circle cx="600" cy="300" r="200" fill="%23dc3545" opacity="0.1"/><circle cx="300" cy="150" r="100" fill="%23ffffff" opacity="0.05"/><circle cx="900" cy="450" r="150" fill="%23dc3545" opacity="0.08"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
        }

  .contact-container{
     background: #4d0b12;
margin-bottom:80px;
margin-top:40px;
margin-left:auto;
margin-right:auto;
padding:5px;
padding-bottom:50px;
border: 6px solid #1d1c1c;
border-radius: 10px;
box-shadow:inset 0 0 10px #000000;
display:flex;
justify-content:space-evenly;
align-items:center;
  }

  .contact-button{
    color: #fff;
  }

  .con-title{
    text-align:center;
    margin-bottom:20px;
  }

  a {
  text-decoration: none;
}

  .contact-options{
   padding:30px;
border-radius: 10px;
border: 4px solid #4d0b12;
height: 100%;
  }

  .con-title h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .con-title p {
            font-size: 1.3rem;
            color: #dc3545;
            font-weight: 500;
        }

  .con-button{
border-radius:5px;
background-color:black;
color:#fff;
padding:5px;
  }

  .con-input{
border-radius:5px;
background-color: #ccc;
color:black;
  }

  .contact-form{
    display:flex;
    flex-direction:column;
justify-content:center;
align-items:center;
margin-left:auto;
margin-right:auto;
 padding:7px;
border-radius: 10px;
border: 4px solid #4d0b12 ;
height: 100%;
  }

/*Social media*/
.social-media{
     margin: 0 0 15px 40px;
            max-width: 1200px;
}
.social{
    display:flex;
    justify-content:space-evenly;
    align-items: center;
}
.tik{
   color: #010101;
    text-decoration:none;
    font-weight:bold;
}
.you{
    color:#fc0707;
    text-decoration:none;
    font-weight:bold;
}
.insta{
    color:#e1306c;
    text-decoration:none;
    font-weight:bold;
}

 /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #dc3545;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1a1a1a;
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            }

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

            .page-header h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            nav {
                padding: 0 1.5rem;
            }
        }
   