/*==============================================================
TEAM PAGE CSS
RS Sungrow Ventures Pvt. Ltd.
Part 1 - Global Styles + Hero Section
==============================================================*/

/*------------------------------
Google Font
------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*------------------------------
Variables
------------------------------*/

:root{

--primary:#083B6D;
--secondary:#0A66C2;
--accent:#FDB813;
--light:#F8FBFF;
--white:#ffffff;
--dark:#1f2937;
--text:#6B7280;

--radius:20px;

--shadow:
0 15px 40px rgba(0,0,0,.08);

--transition:.35s ease;

}

/*------------------------------
Body
------------------------------*/

body{

font-family:'Poppins',sans-serif;

background:var(--light);

color:var(--dark);

overflow-x:hidden;

}

/*------------------------------
Section Padding
------------------------------*/

section{

padding:90px 0;

position:relative;

}

/*------------------------------
Container
------------------------------*/

.container{

position:relative;

z-index:2;

}

/*------------------------------
Section Header
------------------------------*/

.section-header{

margin-bottom:70px;

}

.section-header h2{

font-size:44px;

font-weight:800;

color:var(--primary);

margin-top:18px;

margin-bottom:20px;

line-height:1.2;

}

.section-header p{

max-width:760px;

margin:auto;

font-size:17px;

line-height:30px;

color:var(--text);

}

/*------------------------------
Section Badge
------------------------------*/

.section-badge{

display:inline-block;

padding:10px 28px;

background:#FFF5E8;

color:var(--accent);

border-radius:50px;

font-size:13px;

font-weight:700;

letter-spacing:1.5px;

text-transform:uppercase;

}

/*------------------------------
Hero Section
------------------------------*/

.team-hero{

padding:130px 0 90px;

background:
linear-gradient(135deg,#F8FBFF,#FFFFFF);

overflow:hidden;

position:relative;

}

.team-hero::before{

content:"";

position:absolute;

width:520px;

height:520px;

border-radius:50%;

background:

rgba(253,184,19,.08);

top:-180px;

right:-180px;

}

.team-hero::after{

content:"";

position:absolute;

width:350px;

height:350px;

border-radius:50%;

background:

rgba(10,102,194,.06);

bottom:-140px;

left:-140px;

}

.hero-content{

position:relative;

z-index:5;

}

.hero-content h1{

font-size:60px;

font-weight:800;

line-height:1.15;

color:var(--primary);

margin:25px 0;

}

.hero-content p{

font-size:18px;

line-height:34px;

color:var(--text);

max-width:700px;

margin-bottom:40px;

}

/*------------------------------
Buttons
------------------------------*/

.btn-main{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:15px 34px;

background:var(--accent);

color:#fff;

font-weight:600;

border-radius:50px;

text-decoration:none;

transition:var(--transition);

box-shadow:

0 10px 25px rgba(253,184,19,.35);

}

.btn-main:hover{

background:#f4ab00;

color:#fff;

transform:translateY(-5px);

}

.btn-outline-main{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

border:2px solid var(--primary);

color:var(--primary);

font-weight:600;

border-radius:50px;

text-decoration:none;

transition:var(--transition);

margin-left:15px;

}

.btn-outline-main:hover{

background:var(--primary);

color:#fff;

}

/*------------------------------
Images
------------------------------*/

img{

max-width:100%;

display:block;

}

/*------------------------------
Cards Common
------------------------------*/

.card-box{

background:#fff;

border-radius:var(--radius);

box-shadow:var(--shadow);

transition:var(--transition);

overflow:hidden;

}

.card-box:hover{

transform:translateY(-8px);

box-shadow:

0 22px 45px rgba(0,0,0,.12);

}

/*------------------------------
Icons
------------------------------*/

.icon-circle{

width:75px;

height:75px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

background:#FFF5E8;

color:var(--accent);

margin:auto;

transition:.4s;

}

.card-box:hover .icon-circle{

background:var(--accent);

color:#fff;

transform:rotate(10deg);

}

/*------------------------------
Responsive
------------------------------*/

@media(max-width:992px){

.hero-content{

text-align:center;

}

.hero-content h1{

font-size:48px;

}

.section-header h2{

font-size:36px;

}

}

@media(max-width:768px){

section{

padding:70px 0;

}

.hero-content h1{

font-size:36px;

}

.hero-content p{

font-size:16px;

line-height:30px;

}

.section-header h2{

font-size:30px;

}

.btn-main,

.btn-outline-main{

width:100%;

margin:10px 0;

}

}
/*==============================================================
TEAM PAGE CSS
Part 2 - Founder & Leadership Cards
==============================================================*/

/*------------------------------
Founder Section
------------------------------*/

.founder-section{
    background:#ffffff;
    position:relative;
}

.founder-card{

    background:#fff;

    border-radius:25px;

    padding:45px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    border:1px solid #edf2f8;

    transition:.4s;

}

.founder-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.founder-image{

    width:220px;

    height:220px;

    margin:auto;

    border-radius:50%;

    overflow:hidden;

    border:8px solid #FDB813;

    box-shadow:0 18px 40px rgba(253,184,19,.35);

}

.founder-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.founder-card:hover .founder-image img{

    transform:scale(1.08);

}

.founder-card h3{

    font-size:32px;

    font-weight:700;

    color:#083B6D;

    margin-top:30px;

}

.founder-label{

    display:inline-block;

    margin:15px 0;

    padding:10px 22px;

    background:#083B6D;

    color:#fff;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.founder-card p{

    color:#6B7280;

    line-height:30px;

    font-size:16px;

}

.contact-item{

    margin-top:12px;

    color:#083B6D;

    font-weight:600;

}

.contact-item i{

    color:#FDB813;

    margin-right:10px;

}

/*------------------------------
Founder Social Icons
------------------------------*/

.founder-social{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:30px;

}

.founder-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:#083B6D;

    color:#fff;

    transition:.35s;

}

.founder-social a:hover{

    background:#FDB813;

    transform:translateY(-5px);

}

/*------------------------------
Leadership Section
------------------------------*/

.leadership-section{

    background:#F8FBFF;

}

.team-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #edf2f8;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

/*------------------------------
Team Image
------------------------------*/

.team-image{

    position:relative;

    overflow:hidden;

}

.team-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.team-card:hover .team-image img{

    transform:scale(1.08);

}

/*------------------------------
Social Overlay
------------------------------*/

.team-social{

    position:absolute;

    left:50%;

    bottom:-60px;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    transition:.4s;

}

.team-card:hover .team-social{

    bottom:20px;

}

.team-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    color:#083B6D;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    box-shadow:0 10px 20px rgba(0,0,0,.15);

    transition:.3s;

}

.team-social a:hover{

    background:#FDB813;

    color:#fff;

}

/*------------------------------
Team Content
------------------------------*/

.team-content{

    padding:28px;

    text-align:center;

}

.team-badge{

    display:inline-block;

    padding:8px 18px;

    background:#FFF5E8;

    color:#FDB813;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.team-content h4{

    color:#083B6D;

    font-size:24px;

    font-weight:700;

    margin-bottom:8px;

}

.designation{

    color:#0A66C2;

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.team-desc{

    color:#6B7280;

    font-size:15px;

    line-height:28px;

}

/*------------------------------
Responsive
------------------------------*/

@media(max-width:991px){

.founder-card{

padding:35px;

}

.founder-image{

width:180px;

height:180px;

}

.team-image img{

height:280px;

}

}

@media(max-width:768px){

.founder-card{

text-align:center;

}

.founder-card h3{

font-size:28px;

}

.team-image img{

height:250px;

}

.team-content{

padding:22px;

}

}
/*==============================================================
TEAM PAGE CSS
Part 3 - Team Strength & Departments
==============================================================*/

/*--------------------------------------------------------------
OUR STRENGTH
--------------------------------------------------------------*/

.team-strength{
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.team-strength::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(253,184,19,.08);
    border-radius:50%;
    top:-180px;
    right:-150px;
}

.team-strength::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(10,102,194,.05);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
}

.team-strength h2{

    font-size:42px;

    font-weight:800;

    color:#083B6D;

    margin:20px 0;

    line-height:1.25;

}

.team-strength p{

    color:#6B7280;

    font-size:17px;

    line-height:32px;

}

/*--------------------------------------------------------------
Strength Boxes
--------------------------------------------------------------*/

.strength-box{

    background:#ffffff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    border:1px solid #edf2f8;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.strength-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.strength-box i{

    width:75px;

    height:75px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#FFF5E8;

    color:#FDB813;

    font-size:30px;

    margin-bottom:20px;

    transition:.35s;

}

.strength-box:hover i{

    background:#FDB813;

    color:#fff;

    transform:rotate(10deg);

}

.strength-box h3{

    font-size:38px;

    font-weight:800;

    color:#083B6D;

    margin-bottom:10px;

}

.strength-box p{

    margin:0;

    color:#6B7280;

    font-weight:600;

}

/*--------------------------------------------------------------
Departments
--------------------------------------------------------------*/

.departments-section{

    background:#ffffff;

}

.department-card{

    background:#fff;

    border-radius:22px;

    padding:35px 28px;

    border:1px solid #edf2f8;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

    text-align:center;

}

.department-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.department-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#FFF5E8;

    color:#FDB813;

    font-size:34px;

    transition:.35s;

    margin-bottom:22px;

}

.department-card:hover .department-icon{

    background:#083B6D;

    color:#ffffff;

    transform:scale(1.1);

}

.department-card h4{

    color:#083B6D;

    font-size:24px;

    font-weight:700;

    margin-bottom:16px;

}

.department-card p{

    color:#6B7280;

    line-height:28px;

    font-size:15px;

    margin-bottom:20px;

}

.department-card span{

    display:inline-block;

    padding:8px 20px;

    background:#EAF4FF;

    color:#0A66C2;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

}

/*--------------------------------------------------------------
Animation
--------------------------------------------------------------*/

.department-card,
.strength-box{

    position:relative;

    overflow:hidden;

}

.department-card::before,
.strength-box::before{

    content:"";

    position:absolute;

    width:0;

    height:4px;

    background:#FDB813;

    top:0;

    left:0;

    transition:.35s;

}

.department-card:hover::before,
.strength-box:hover::before{

    width:100%;

}

/*--------------------------------------------------------------
Responsive
--------------------------------------------------------------*/

@media(max-width:992px){

.team-strength h2{

font-size:34px;

text-align:center;

}

.team-strength p{

text-align:center;

}

}

@media(max-width:768px){

.team-strength{

padding:70px 0;

}

.team-strength h2{

font-size:30px;

}

.department-card{

padding:28px 22px;

}

.department-card h4{

font-size:21px;

}

.strength-box{

padding:28px 20px;

}

.strength-box h3{

font-size:32px;

}

}
/*==============================================================
TEAM PAGE CSS
Part 4 - Company Values & CTA
==============================================================*/

/*--------------------------------------------------------------
COMPANY VALUES
--------------------------------------------------------------*/

.company-values{
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.company-values::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(253,184,19,.06);
    top:-180px;
    right:-180px;
}

.company-values::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(10,102,194,.05);
    left:-120px;
    bottom:-120px;
}

.value-card{

    background:#ffffff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #edf2f8;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

    height:100%;

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.value-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#FDB813,#0A66C2);

    transform:scaleX(0);

    transition:.35s;

}

.value-card:hover::before{

    transform:scaleX(1);

}

.value-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#FFF5E8;

    color:#FDB813;

    font-size:34px;

    transition:.35s;

}

.value-card:hover .value-icon{

    background:#083B6D;

    color:#ffffff;

    transform:rotate(10deg);

}

.value-card h4{

    color:#083B6D;

    font-size:26px;

    font-weight:700;

    margin-bottom:18px;

}

.value-card p{

    color:#6B7280;

    font-size:16px;

    line-height:30px;

}

/*--------------------------------------------------------------
CALL TO ACTION
--------------------------------------------------------------*/

.team-cta{

    padding:90px 0;

    background:#f8fbff;

}

.cta-card{

    background:linear-gradient(135deg,#083B6D,#0A66C2);

    border-radius:30px;

    padding:70px 60px;

    color:#ffffff;

    box-shadow:0 20px 60px rgba(8,59,109,.30);

    position:relative;

    overflow:hidden;

}

.cta-card::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-140px;

    right:-140px;

}

.cta-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(253,184,19,.18);

    bottom:-100px;

    left:-100px;

}

.cta-card>*{

    position:relative;

    z-index:2;

}

.cta-card h2{

    font-size:42px;

    font-weight:800;

    color:#ffffff;

    margin:20px 0;

}

.cta-card p{

    font-size:17px;

    line-height:32px;

    color:rgba(255,255,255,.90);

}

.cta-card .btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:.35s;

}

.cta-card .btn-warning{

    background:#FDB813;

    border:none;

    color:#083B6D;

}

.cta-card .btn-warning:hover{

    background:#ffffff;

    color:#083B6D;

    transform:translateY(-5px);

}

.cta-card .btn-outline-light:hover{

    background:#ffffff;

    color:#083B6D;

    transform:translateY(-5px);

}

/*--------------------------------------------------------------
Responsive
--------------------------------------------------------------*/

@media(max-width:992px){

.cta-card{

padding:50px 35px;

text-align:center;

}

.cta-card h2{

font-size:34px;

}

}

@media(max-width:768px){

.company-values{

padding:70px 0;

}

.value-card{

padding:30px 22px;

}

.value-card h4{

font-size:22px;

}

.cta-card{

padding:40px 25px;

}

.cta-card h2{

font-size:28px;

line-height:1.3;

}

.cta-card p{

font-size:15px;

line-height:28px;

}

.cta-card .btn{

display:block;

width:100%;

margin:12px 0;

}

}
/*==============================================================
TEAM PAGE CSS
Part 5 - Responsive Design
==============================================================*/

/*--------------------------------------------------------------
Large Screens (1400px and below)
--------------------------------------------------------------*/

@media (max-width:1400px){

    .hero-content h1{
        font-size:54px;
    }
    
    .section-header h2{
        font-size:42px;
    }
    
    .team-strength h2{
        font-size:38px;
    }
    
    .cta-card h2{
        font-size:38px;
    }
    
    }
    
    /*--------------------------------------------------------------
    Laptop (1200px and below)
    --------------------------------------------------------------*/
    
    @media (max-width:1200px){
    
    section{
        padding:80px 0;
    }
    
    .hero-content h1{
        font-size:48px;
    }
    
    .section-header h2{
        font-size:38px;
    }
    
    .team-strength h2{
        font-size:34px;
    }
    
    .founder-card{
        padding:35px;
    }
    
    .team-card{
        margin-bottom:30px;
    }
    
    .department-card,
    .value-card{
        padding:30px 24px;
    }
    
    }
    
    /*--------------------------------------------------------------
    Tablet (992px and below)
    --------------------------------------------------------------*/
    
    @media (max-width:992px){
    
    .hero-content{
        text-align:center;
    }
    
    .hero-content h1{
        font-size:42px;
    }
    
    .hero-content p{
        margin:auto;
    }
    
    .section-header{
        text-align:center;
    }
    
    .section-header h2{
        font-size:34px;
    }
    
    .section-header p{
        font-size:16px;
    }
    
    .founder-card{
        text-align:center;
    }
    
    .founder-image{
        width:180px;
        height:180px;
    }
    
    .founder-card h3{
        font-size:28px;
    }
    
    .team-card{
        margin-bottom:30px;
    }
    
    .team-image img{
        height:280px;
    }
    
    .team-strength{
        text-align:center;
    }
    
    .team-strength h2{
        font-size:32px;
    }
    
    .department-card{
        margin-bottom:25px;
    }
    
    .value-card{
        margin-bottom:25px;
    }
    
    .cta-card{
        text-align:center;
        padding:45px 35px;
    }
    
    .cta-card .btn{
        margin-top:15px;
    }
    
    }
    
    /*--------------------------------------------------------------
    Mobile (768px and below)
    --------------------------------------------------------------*/
    
    @media (max-width:768px){
    
    section{
        padding:70px 0;
    }
    
    .section-header{
        margin-bottom:50px;
    }
    
    .section-header h2{
        font-size:30px;
    }
    
    .section-header p{
        font-size:15px;
        line-height:28px;
    }
    
    .hero-content h1{
        font-size:34px;
        line-height:1.3;
    }
    
    .hero-content p{
        font-size:15px;
        line-height:28px;
    }
    
    .btn-main,
    .btn-outline-main{
    
        width:100%;
        margin:10px 0;
    
    }
    
    .founder-card{
        padding:28px;
    }
    
    .founder-image{
        width:160px;
        height:160px;
    }
    
    .founder-card h3{
        font-size:24px;
    }
    
    .team-image img{
        height:240px;
    }
    
    .team-content{
        padding:22px;
    }
    
    .team-content h4{
        font-size:22px;
    }
    
    .team-strength h2{
        font-size:28px;
    }
    
    .strength-box{
        padding:24px;
    }
    
    .strength-box h3{
        font-size:30px;
    }
    
    .department-card{
        padding:25px;
    }
    
    .department-card h4{
        font-size:20px;
    }
    
    .value-card{
        padding:28px 22px;
    }
    
    .value-card h4{
        font-size:22px;
    }
    
    .cta-card{
        padding:35px 22px;
    }
    
    .cta-card h2{
        font-size:28px;
    }
    
    .cta-card p{
        font-size:15px;
    }
    
    .cta-card .btn{
    
        display:block;
        width:100%;
        margin:10px 0;
    
    }
    
    }
    
    /*--------------------------------------------------------------
    Small Mobile (576px and below)
    --------------------------------------------------------------*/
    
    @media (max-width:576px){
    
    .hero-content h1{
        font-size:30px;
    }
    
    .section-header h2{
        font-size:26px;
    }
    
    .section-badge{
        font-size:11px;
        padding:8px 18px;
    }
    
    .founder-image{
        width:140px;
        height:140px;
    }
    
    .founder-card h3{
        font-size:22px;
    }
    
    .team-image img{
        height:220px;
    }
    
    .team-content{
        padding:18px;
    }
    
    .team-content h4{
        font-size:20px;
    }
    
    .team-strength h2{
        font-size:25px;
    }
    
    .department-icon,
    .value-icon{
    
        width:65px;
        height:65px;
        font-size:26px;
    
    }
    
    .strength-box i{
    
        width:65px;
        height:65px;
        font-size:26px;
    
    }
    
    .department-card h4,
    .value-card h4{
    
        font-size:20px;
    
    }
    
    .cta-card h2{
    
        font-size:24px;
    
    }
    
    .cta-card{
    
        border-radius:20px;
    
    }
    
    }
    
    /*--------------------------------------------------------------
    Extra Small Devices (400px and below)
    --------------------------------------------------------------*/
    
    @media (max-width:400px){
    
    .hero-content h1{
        font-size:26px;
    }
    
    .hero-content p{
        font-size:14px;
    }
    
    .section-header h2{
        font-size:24px;
    }
    
    .founder-card{
        padding:20px;
    }
    
    .team-content{
        padding:15px;
    }
    
    .department-card,
    .value-card,
    .strength-box{
        padding:20px;
    }
    
    .cta-card{
        padding:25px 18px;
    }
    
    }
    /*==============================================================
TEAM PAGE CSS
Part 6 - Premium Effects & Final Polish
==============================================================*/

/*--------------------------------------------------------------
Smooth Scrolling
--------------------------------------------------------------*/

html{
    scroll-behavior:smooth;
}

/*--------------------------------------------------------------
Text Selection
--------------------------------------------------------------*/

::selection{
    background:#FDB813;
    color:#ffffff;
}

::-moz-selection{
    background:#FDB813;
    color:#ffffff;
}

/*--------------------------------------------------------------
Custom Scrollbar
--------------------------------------------------------------*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#edf2f8;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#0A66C2,#083B6D);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#FDB813;
}

/*--------------------------------------------------------------
Images
--------------------------------------------------------------*/

img{
    transition:all .5s ease;
    display:block;
}

.team-card:hover img,
.founder-card:hover img{
    transform:scale(1.06);
}

/*--------------------------------------------------------------
Buttons
--------------------------------------------------------------*/

.btn,
.btn-main,
.btn-outline-main{

    transition:all .35s ease;

}

.btn:hover,
.btn-main:hover,
.btn-outline-main:hover{

    transform:translateY(-4px);

}

/*--------------------------------------------------------------
Card Hover
--------------------------------------------------------------*/

.team-card,
.founder-card,
.department-card,
.value-card,
.strength-box{

    position:relative;

    overflow:hidden;

}

.team-card::after,
.founder-card::after,
.department-card::after,
.value-card::after,
.strength-box::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(253,184,19,.05),
        rgba(10,102,194,.03)
    );

    opacity:0;

    transition:.4s;

}

.team-card:hover::after,
.founder-card:hover::after,
.department-card:hover::after,
.value-card:hover::after,
.strength-box:hover::after{

    opacity:1;

}

/*--------------------------------------------------------------
Icon Animation
--------------------------------------------------------------*/

.department-icon,
.value-icon,
.strength-box i,
.icon-circle{

    transition:all .4s ease;

}

.team-card:hover .department-icon,
.department-card:hover .department-icon,
.value-card:hover .value-icon,
.strength-box:hover i{

    transform:rotate(10deg) scale(1.1);

}

/*--------------------------------------------------------------
Badge Animation
--------------------------------------------------------------*/

.section-badge{

    transition:.35s;

}

.section-badge:hover{

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(253,184,19,.25);

}

/*--------------------------------------------------------------
Links
--------------------------------------------------------------*/

a{

    transition:.3s;

}

a:hover{

    text-decoration:none;

}

/*--------------------------------------------------------------
Floating Animation
--------------------------------------------------------------*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

.founder-image{

    animation:float 5s ease-in-out infinite;

}

/*--------------------------------------------------------------
Fade Up Animation
--------------------------------------------------------------*/

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(30px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.section-header,
.founder-card,
.team-card,
.department-card,
.value-card,
.strength-box,
.cta-card{

    animation:fadeUp .8s ease;

}

/*--------------------------------------------------------------
CTA Glow
--------------------------------------------------------------*/

.cta-card{

    position:relative;

}

.cta-card::before{

    animation:pulseGlow 6s infinite linear;

}

@keyframes pulseGlow{

0%{

transform:scale(1);

opacity:.15;

}

50%{

transform:scale(1.2);

opacity:.30;

}

100%{

transform:scale(1);

opacity:.15;

}

}

/*--------------------------------------------------------------
Image Border Glow
--------------------------------------------------------------*/

.founder-image{

    box-shadow:
    0 20px 40px rgba(253,184,19,.35);

}

.team-image{

    overflow:hidden;

}

/*--------------------------------------------------------------
Paragraph
--------------------------------------------------------------*/

p{

    letter-spacing:.2px;

}

/*--------------------------------------------------------------
Headings
--------------------------------------------------------------*/

h1,h2,h3,h4,h5{

    letter-spacing:.3px;

}

/*--------------------------------------------------------------
Bootstrap Row Fix
--------------------------------------------------------------*/

.row{

    --bs-gutter-y:1.8rem;

}

/*--------------------------------------------------------------
Prevent Overflow
--------------------------------------------------------------*/

.container,
.row{

    overflow:visible;

}

/*--------------------------------------------------------------
Footer Margin
--------------------------------------------------------------*/

footer{

    margin-top:0;

}

/*--------------------------------------------------------------
Responsive Animation
--------------------------------------------------------------*/

@media(max-width:768px){

.founder-image{

animation:none;

}

.section-header,
.team-card,
.department-card,
.value-card,
.strength-box{

animation:none;

}

}

/*==============================================================
END OF TEAM.CSS
==============================================================*/