/* ===========================
   MIR RABBY Official Website
   Premium CSS
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

body{

font-family:'Poppins',sans-serif;

background:#08111f;

color:white;

line-height:1.7;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:white;

}

.container{

width:90%;

max-width:1200px;

margin:auto;

}

/* ===========================
Navbar
=========================== */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

padding:18px 8%;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(0,0,0,.35);

backdrop-filter:blur(15px);

z-index:999;

}

.logo{

font-size:28px;

font-weight:700;

color:#FFD54F;

letter-spacing:1px;

}

.menu{

display:flex;

list-style:none;

gap:35px;

}

.menu a{

font-weight:500;

transition:.3s;

}

.menu a:hover{

color:#FFD54F;

}

.menu-btn{

display:none;

font-size:28px;

cursor:pointer;

}

/* ===========================
Hero
=========================== */

.hero{

min-height:100vh;

display:flex;

justify-content:space-between;

align-items:center;

padding:120px 8%;

gap:60px;

background:linear-gradient(135deg,#08111f,#13294b);

}

.hero-left{

flex:1;

}

.hero-left h3{

font-size:26px;

color:#FFD54F;

}

.hero-left h1{

font-size:70px;

margin:15px 0;

font-weight:800;

}

.hero-left h2{

font-size:30px;

margin-bottom:20px;

color:#ddd;

}

.hero-left p{

font-size:18px;

max-width:520px;

margin-bottom:30px;

color:#ccc;

}

.hero-buttons{

display:flex;

gap:15px;

margin-bottom:30px;

}

.btn{

padding:14px 30px;

border-radius:40px;

background:#FFD54F;

color:#08111f;

font-weight:700;

transition:.3s;

}

.btn:hover{

transform:translateY(-4px);

}

.btn2{

background:transparent;

border:2px solid #FFD54F;

color:#FFD54F;

}

.social{

display:flex;

gap:20px;

font-size:28px;

}

.social a:hover{

color:#FFD54F;

}

.hero-right{

flex:1;

display:flex;

justify-content:center;

}

.hero-right img{

width:380px;

border-radius:25px;

border:5px solid #FFD54F;

box-shadow:0 20px 60px rgba(0,0,0,.5);

}

/* ===========================
SECTION
=========================== */

section{

padding:100px 8%;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:42px;

color:#FFD54F;

margin-bottom:10px;

}

.section-title p{

color:#bbb;

font-size:18px;

}

/* ===========================
ABOUT
=========================== */

.about-content{

display:flex;

justify-content:center;

align-items:center;

}

.about-text{

max-width:850px;

background:rgba(255,255,255,.05);

padding:40px;

border-radius:20px;

backdrop-filter:blur(10px);

box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.about-text h3{

font-size:34px;

margin-bottom:20px;

color:#FFD54F;

}

.about-text p{

margin-bottom:20px;

color:#ddd;

font-size:17px;

}

.info{

display:flex;

gap:40px;

margin-top:20px;

flex-wrap:wrap;

}

.info h4{

color:#FFD54F;

margin-bottom:6px;

}

/* ===========================
EXPERIENCE
=========================== */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}

.card{

background:#111c30;

padding:35px;

border-radius:18px;

text-align:center;

transition:.4s;

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 20px 35px rgba(0,0,0,.35);

}

.card i{

font-size:50px;

color:#FFD54F;

margin-bottom:20px;

}

.card h3{

margin-bottom:15px;

font-size:24px;

}

/* ===========================
GALLERY
=========================== */

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:20px;

}

.gallery-grid img{

width:100%;

height:320px;

object-fit:cover;

border-radius:18px;

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}

/* ===========================
CONTACT
=========================== */

.contact-box{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}

.contact-item{

background:#111c30;

padding:35px;

text-align:center;

border-radius:18px;

}

.contact-item i{

font-size:40px;

color:#FFD54F;

margin-bottom:15px;

}

.contact-item h3{

margin-bottom:10px;

}

.contact-item a{

color:white;

word-break:break-word;

}

.contact-item a:hover{

color:#FFD54F;

}

/* ===========================
FOOTER
=========================== */

footer{

background:#050b15;

padding:50px 20px;

text-align:center;

}

.footer-social{

display:flex;

justify-content:center;

gap:20px;

margin:25px 0;

}

.footer-social a{

font-size:28px;

}

.footer-social a:hover{

color:#FFD54F;

}

.copyright{

color:#aaa;

margin-top:15px;

}

/* ===========================
FLOATING BUTTON
=========================== */

.whatsapp{

position:fixed;

right:20px;

bottom:20px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

z-index:999;

box-shadow:0 10px 25px rgba(0,0,0,.35);

}

.whatsapp:hover{

transform:scale(1.1);

}

/* ===========================
SCROLL TOP
=========================== */

#topBtn{

position:fixed;

left:20px;

bottom:20px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#FFD54F;

color:#08111f;

font-size:22px;

cursor:pointer;

display:none;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:900px){

.menu{

display:none;

}

.menu-btn{

display:block;

}

.hero{

flex-direction:column-reverse;

text-align:center;

}

.hero-left h1{

font-size:46px;

}

.hero-left h2{

font-size:24px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.social{

justify-content:center;

}

.hero-right img{

width:280px;

}

.about-text{

padding:25px;

}

}
