header{
    color: aliceblue;
    font-size: 40px;
    text-align: center;
}



body{
    background-color: rgb(21, 21, 21);
}
main{
    padding-left: 10px;
    padding-right: 10px;
}


.navbar ul{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-evenly;
    font-size: 18px;  
    
}


.navbar{
    background-color: rgb(42, 42, 42);
    border-radius: 5px;
    text-align: center;
    padding: 20px 8px;


}

.navbar a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 18px;

    
}

.navbar a:hover{
    background-color:rgb(112, 112, 112);
    border-radius: 5px;
}

#footer_bar{
    color: rgb(157, 156, 156);
    font-style:oblique;
    padding: 0px;
    line-height: 5px;
    
}

#footer_bar a{
    color: inherit;
    font-style: normal;
    text-decoration: none;    
}

h3{
    color: rgb(255, 255, 255);
}
h2{
    color: rgb(255, 255, 255);
}
h1{
    color: rgb(255, 255, 255);
}
hr{
    border: 0;
    height: 1px;
    background-color: rgb(157, 156, 156);
}

.intro{
    display: flex;
    min-height: 100vh; /*vh viewport height 100%*/
    align-items: center;
}

.intro-left{
    flex: 1; /*take 1 part of space 50%*/
    color: white;
    padding-left: 50px;
}
.intro-left h1{
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-left p{
    font-size: 18px;
    color: rgb(200,200,200);
    margin-bottom: 15px;
    line-height: 1.6;
}


.intro-right{
    flex: 1;
    display: flex;
    padding-top: 50px;
    padding-right: 80px;
    justify-content: right;  /*center horizontally*/
    align-items: center; /*center vertically*/
}
.port-image{
    width: 400px;
    height: 395px;
    border-radius: 50%;
    overflow: hidden;  /*hides image ooutside circle*/
}

.port-image img{
    width:100%;
    height: 100%;
    object-fit: cover;
}


.brands{
    padding:60px 28px;
    text-align: center;
}

.brands h3{
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.brand-logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;    /* ← Add this for vertical alignment */
    gap: 60px;
    flex-wrap: wrap;
}

.brand-logo {
    max-width: 200px;      
    max-height: 200px;      
    object-fit: contain;    
    opacity: 0.9;          
    transition: all 0.3s;   
}

.brand-logo:hover {  
    opacity: 1;  
            
}

/* Update your existing logo-wrapper */
.logo-wrapper {
    background-color: rgb(32, 32, 32); /* Slightly lighter than body */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgb(50, 50, 50);
    transition: all 0.3s ease;
    width: 220px; /* Ensures consistency */
}

.logo-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgb(100, 100, 100);
    background-color: rgb(40, 40, 40);
}

.logo-wrapper:active {
    transform: scale(0.95); /* Visual feedback for phone taps */
}


.card-info {
    color: rgb(117, 117, 117);
}




@media (max-width: 700px) {
    main {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .intro {
        flex-direction: column;
        min-height: auto; /* ← Don't force full height on mobile */
        padding: 20px 0; /* ← Changed from 20px to 20px 0 */
    }
    
    .intro-left {
        text-align: center;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .intro-left h1 {
        font-size: 32px;
    }
    
    .intro-left p {
        font-size: 16px;
    }
    
    .intro-right {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        padding-right: 0px;
        width: 100%;
    }
    
    .port-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
        
        
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .navbar a {
        display: block;
        padding: 10px;
    }
}
