/*==============================
    RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f5f2;
    color:#333;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*==============================
    HEADER
==============================*/

/*==============================
    HEADER
==============================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;

background:rgba(250,248,245,.90);
backdrop-filter:blur(12px);

border-bottom:1px solid #e7e2db;

}

.navbar{

display:flex;
justify-content:space-between;
align-items:center;

height:70px;

}

.logo{

font-size:28px;
font-weight:800;
letter-spacing:1px;
color:#0B4F6C;

}

.logo span{

color:#2DA8D8;

}

/*================ HEADER BUTTON =================*/

.header-btn{

display:flex;
align-items:center;
gap:12px;

}

.header-btn a{

width:42px;
height:42px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

text-decoration:none;

font-size:18px;

color:#fff;

transition:.35s;

}

.phone-btn{

background:#0B4F6C;

}

.phone-btn:hover{

background:#0d241f;

}

.whatsapp-btn{

background:#25D366;

}

.whatsapp-btn:hover{

background:#1ca851;

}

/*================ DESKTOP MENU =================*/

nav ul{

display:flex;
align-items:center;
gap:35px;

list-style:none;

}

nav ul li{

list-style:none;

}

nav ul li a{

text-decoration:none;

font-weight:500;

color:#333;

transition:.3s;

}

nav ul li a:hover{

color:#2DA8D8;

}

.menu-toggle{

display:none;

width:40px;
height:40px;

cursor:pointer;

flex-direction:column;

justify-content:center;

gap:6px;

}

.menu-toggle span{

height:3px;

background:#0B4F6C;

border-radius:50px;

transition:.35s;

}

/*================ MOBILE =================*/

@media(max-width:900px){

.menu-toggle{

display:flex;

order:3;

}

.header-btn{

position:absolute;

right:60px;

top:14px;

}

nav{

position:fixed;

top:70px;

left:-100%;

width:100%;

height:calc(100vh - 70px);

background:#fff;

padding:30px;

transition:.4s;

overflow-y:auto;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

nav.active{

left:0;

}

nav ul{

display:flex;

flex-direction:column;

gap:25px;

align-items:flex-start;

}

nav ul li{

width:100%;

padding-bottom:15px;

border-bottom:1px solid #eee;

}

.menu-toggle.open span:nth-child(1){

transform:translateY(9px) rotate(45deg);

}

.menu-toggle.open span:nth-child(2){

opacity:0;

}

.menu-toggle.open span:nth-child(3){

transform:translateY(-9px) rotate(-45deg);

}

}
@media(max-width:768px){

.team-hero{

padding-top:120px;

}

.team-hero h1{

font-size:34px;

line-height:45px;

}

.team-hero p{

font-size:15px;

line-height:28px;

}

.team-grid{

grid-template-columns:1fr;

gap:70px;

}

.team-card{

max-width:330px;

margin:auto;

}

}

/*==============================
    HERO
==============================*/

.team-hero{
    padding:100px 0 70px;
    text-align:center;
}

.team-hero span{
    color:#2DA8D8;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.team-hero h1{
    font-size:52px;
    color:#0B4F6C;
    margin:15px 0;
    line-height:1.2;
}

.team-hero p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:30px;
}

/*==============================
    TEAM
==============================*/

.team-section{
    padding:70px 0 120px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:80px 40px;
}

/*==============================
    TAG CARD
==============================*/

.team-card{

    position:relative;

    background:#fffdf8;

    padding:80px 30px 35px;

    text-align:center;

    border:1px solid #e8dfd1;

    border-radius:12px;

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

    overflow:visible;

}

/* Hang Tag Shape */

.team-card::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

clip-path:polygon(
8% 0,
92% 0,
100% 8%,
100% 100%,
0 100%,
0 8%
);

border-radius:12px;

z-index:-1;

}

/* Swing Hover */

.team-card:hover{

transform:rotate(1deg) translateY(-8px);

}

/* Rope */

.rope{

position:absolute;

width:3px;

height:55px;

left:50%;

top:-55px;

transform:translateX(-50%);

background:linear-gradient(#999,#666);

border-radius:20px;

}

/* Hole */

.tag-hole{

position:absolute;

width:24px;

height:24px;

border-radius:50%;

border:4px solid #8d8d8d;

background:#f7f5f2;

top:-12px;

left:50%;

transform:translateX(-50%);

box-shadow:inset 0 0 6px rgba(0,0,0,.18);

}

/* Photo */

.photo{

width:200px;

height:200px;

margin:auto;

margin-bottom:20px;

}

.photo img{

width:100%;
height:100%;

border-radius:50%;

object-fit:cover;

border:5px solid #fff;

box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/* Name */

.team-card h3{

font-size:23px;

color:#0B4F6C;

margin-bottom:8px;

}

/* Designation */

.team-card h5{

font-size:15px;

font-weight:600;

color:#2DA8D8;

margin-bottom:20px;

}

/* Divider */

.divider{

width:70px;

height:3px;

margin:20px auto;

background:linear-gradient(to right,#2DA8D8,#9FD8F0,#2DA8D8);

border-radius:50px;

}

/* Contact */

.info{

text-align:left;

margin-top:25px;

}

.info p{

display:flex;

align-items:center;

gap:12px;

margin:14px 0;

font-size:15px;

color:#555;

}

.info i{

width:18px;

color:#0B4F6C;

}

/* Social */

.social{

display:flex;

justify-content:center;

gap:14px;

margin-top:28px;

}

.social a{

width:42px;

height:42px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:#0B4F6C;

color:#fff;

text-decoration:none;

transition:.35s;

}

.social a:hover{

transform:translateY(-5px);

background:#2DA8D8;

}

/* Company */

.company{

margin-top:25px;

padding-top:18px;

border-top:1px dashed #d8c9ae;

font-size:12px;

letter-spacing:2px;

text-transform:uppercase;

color:#888;

line-height:22px;

}

/*==============================
    FOOTER
==============================*/

footer{

background:#0B4F6C;

color:#ddd;

text-align:center;

padding:25px 0;

}

/*==============================
    MOBILE
==============================*/

@media (max-width:900px){

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:70px;
    position:relative;
}

.logo{
    flex:1;
}

.header-btn{
    display:flex;
    align-items:center;
    gap:10px;
    margin-right:55px;   /* Hamburger-এর জন্য জায়গা */
}

.menu-toggle{
    display:flex;
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
}

}
.social{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:28px;
}

.social a{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#0B4F6C;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.35s;
}

.social a:hover{
    transform:translateY(-5px);
}

/* Facebook */
.social a:nth-child(1):hover{
    background:#1877F2;
}

/* WhatsApp */
.social a:nth-child(2):hover{
    background:#25D366;
}

/* Email */
.social a:nth-child(3):hover{
    background:#EA4335;
}