body {

    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(90deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
}

.logo-container {
  display: flex;
    justify-content: center; 
    align-items: center;   
    margin-top: 50px;           
    }

.logo img {
    max-width: 400px;         /* optional: control logo size */
    height: auto;
}

/* Optional: Adjust margin for smaller screens */
@media (max-width: 600px) {
    .logo-container {
        margin-top: 30px;
    }

    .logo img {
        max-width: 250px; /* smaller max size on mobile */
    }
}


.container {

/* text-align: center; */
justify-content: center;
height: auto;
   
}

.contact {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    
}

.contact h3{
    font-size: 30px;
     background: linear-gradient(90deg, #ff7b00, #ff00c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}




.brand {
    background: linear-gradient(90deg, #ff7b00, #ff00c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 30px;
}

.phone {
    font-weight: bold;
    font-size: 15px;
    color: white;
}

.phone-btn {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 15px;
    text-decoration: none;
    background: linear-gradient(90deg, #ff7b00, #ff00c3);
    transition: background 0.3s ease;
}



.phone-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}




.image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.image img:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .contact-section {
        text-align: center;
    }
    .contact-text {
        margin-bottom: 15px;
    }
}




.hero-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.hero-img:hover{
      background: rgba(255, 255, 255, 0.2);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .contact-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .phone-btn {
        padding: 0.3em 0.8em;
        font-size: 0.85rem;
    }
}

.right{
    display: flex;
    flex-direction: column;  /* stack items vertically */
         /* center horizontally */
    justify-content: center; /* center vertically */
          /* center text content */
 
   
}