body{
margin:0;
font-family:Arial;
background:#0f2027;
color:white;
}

/* HEADER */

header{
background:#111;
padding:25px;
text-align:center;
font-size:22px;
position:relative;
}

/* SEARCH */

.search-box{
text-align:center;
margin:30px;
}

.search-box input{
padding:12px;
width:250px;
border-radius:6px;
border:none;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:20px;
}

/* CARD */

.card{
background:white;
color:#222;
padding:20px;
border-radius:10px;
text-align:center;
}

/* BUTTON */

.btn{
background:#007bff;
color:white;
border:none;
padding:10px 15px;
border-radius:6px;
cursor:pointer;
}

/* FOOTER */

footer{
text-align:center;
padding:20px;
background:#111;
margin-top:20px;
}

/* TOGGLE SWITCH */

.switch{
position:absolute;
right:20px;
top:25px;
width:70px;
height:34px;
}

.switch input{
opacity:0;
}

.slider{
position:absolute;
cursor:pointer;
top:0;
left:0;
right:0;
bottom:0;
background:#444;
border-radius:34px;

display:flex;
align-items:center;
justify-content:space-between;
padding:0 8px;
}

.slider:before{
content:"";
position:absolute;
height:26px;
width:26px;
left:4px;
bottom:4px;
background:white;
border-radius:50%;
transition:0.4s;
}

input:checked + .slider:before{
transform:translateX(36px);
}

.icon{
font-size:14px;
}

/* LIGHT MODE */

body.light{
background:#f3f5f9;
color:#222;
}

body.light header{
background:white;
color:#111;
}

body.light footer{
background:white;
color:#111;
}

.logo{
width:60px;
height:60px;
object-fit:contain;
display:block;
margin:0 auto 10px;
}

.section-divider{
margin:50px auto;
width:80%;
border:1px solid #ccc;
}

.section-title{
text-align:center;
margin-bottom:30px;
}

.gas-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
max-width:900px;
margin:auto;
}

.about-section{

padding:70px 20px;
background:#0b0b0b;
color:white;
text-align:center;

}

.about-title{
font-size:32px;
margin-bottom:20px;
}

.about-text{

max-width:800px;
margin:auto;
margin-bottom:20px;
line-height:1.7;
font-size:16px;

}

.team-title{

margin-top:50px;
font-size:28px;
margin-bottom:30px;

}

.team-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:900px;
margin:auto;

}

.team-card{

background:white;
color:#222;
padding:25px;
border-radius:12px;
text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,0.2);

transition:0.3s;

}

.team-card:hover{
transform:translateY(-8px);
}

.team-photo{

width:120px;
height:120px;

border-radius:50%;
object-fit:cover;

margin-bottom:15px;

}

.team-card h3{

font-size:20px;
font-weight:bold;

margin-bottom:5px;

}

.team-card p{

font-size:14px;
color:#555;

}

.ceo-section{

max-width:300px;
margin:auto;

margin-top:20px;

}
.ceo-photo{

width:170px;
height:170px;

border-radius:50%;
object-fit:cover;

margin-bottom:15px;

}