/*---PART-1-------*/
/*====================================================
    IIT HYDERABAD RESEARCH WEBSITE
    style.css (Part 1)

    Contents
    --------------------------
    1. Google Fonts
    2. CSS Variables
    3. Reset
    4. Typography
    5. Utilities
    6. Top Bar
    7. Institutional Header
    8. Sticky Navbar
    9. Dropdown Navigation
   10. Page Banner
=====================================================*/

/*====================================================
                GOOGLE FONTS
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*====================================================
                ROOT VARIABLES
=====================================================*/

:root{

    --primary:#0B4F8C;
    --primary-dark:#073763;
    --secondary:#B22222;
    --accent:#F4B400;

    --light:#F8FAFC;
    --white:#ffffff;
    --dark:#212529;

    --grey:#6c757d;
    --border:#e5e7eb;

    --success:#16a34a;
    --warning:#f59e0b;
    --danger:#dc2626;

    --shadow-sm:0 2px 8px rgba(0,0,0,.08);
    --shadow-md:0 8px 20px rgba(0,0,0,.10);
    --shadow-lg:0 15px 35px rgba(0,0,0,.15);

    --radius-sm:6px;
    --radius:12px;
    --radius-lg:18px;

    --transition:.35s ease;

    --container:1300px;

}


/*====================================================
                    RESET
=====================================================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:#f6f8fb;
color:var(--dark);
line-height:1.7;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
transition:var(--transition);

}

ul{

list-style:none;

}


/*====================================================
                TYPOGRAPHY
=====================================================*/

h1{

font-size:3rem;
font-weight:700;
color:var(--primary-dark);

}

h2{

font-size:2.2rem;
font-weight:700;
margin-bottom:20px;
color:var(--primary-dark);

}

h3{

font-size:1.4rem;
font-weight:600;

}

h4{

font-size:1.1rem;

}

p{

font-size:1rem;
color:#444;

}


/*====================================================
                CONTAINER
=====================================================*/

.container{

width:92%;
max-width:var(--container);
margin:auto;

}


/*====================================================
                COMMON SECTION
=====================================================*/

section{

padding:70px 0;

}


/*====================================================
            SECTION HEADING
=====================================================*/

.section-title{

text-align:center;
margin-bottom:50px;

}

.section-title h2{

position:relative;
display:inline-block;

}

.section-title h2::after{

content:"";

width:70px;
height:4px;

background:var(--accent);

display:block;

margin:12px auto 0;

border-radius:50px;

}

.section-title p{

max-width:800px;
margin:auto;
color:#666;

}


/*====================================================
                BUTTONS
=====================================================*/

.btn{

display:inline-block;

padding:13px 28px;

background:var(--primary);

color:#fff;

border-radius:50px;

font-weight:500;

transition:var(--transition);

box-shadow:var(--shadow-sm);

}

.btn:hover{

background:var(--secondary);

transform:translateY(-3px);

}

.btn-outline{

border:2px solid var(--primary);

color:var(--primary);

background:transparent;

}

.btn-outline:hover{

background:var(--primary);

color:#fff;

}


/*====================================================
                TOP BAR
=====================================================*/

.top-bar{

background:var(--primary-dark);

color:#fff;

font-size:14px;

padding:8px 0;

}

.top-bar .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.top-left,
.top-right{

display:flex;

align-items:center;

gap:18px;

}

.top-bar i{

color:var(--accent);

margin-right:5px;

}

.top-bar a{

color:#fff;

}

.top-bar a:hover{

color:var(--accent);

}


/*====================================================
            INSTITUTIONAL HEADER
=====================================================*/

.header{

background:#fff;

padding:15px 0;

box-shadow:var(--shadow-sm);

}

.header .container{

display:flex;

align-items:center;

justify-content:space-between;

}

.header-left{

display:flex;

align-items:center;

gap:18px;

}

.header-left img{

width:80px;

}

.header-title h1{

font-size:2rem;

margin-bottom:4px;

color:var(--primary-dark);

}

.header-title h3{

font-size:1.4rem;

font-weight:500;

color:var(--grey);

}

.header-right{

text-align:right;

}

.header-right img{

width:90px;

}


/*====================================================
                NAVBAR
=====================================================*/

.navbar{

position:sticky;

top:0;

z-index:999;

background:var(--primary);

box-shadow:var(--shadow-md);

}

.navbar ul{

display:flex;

justify-content:center;

align-items:center;

}

.navbar ul li{

position:relative;

}

.navbar ul li a{

display:block;

padding:18px 24px;

font-size:15px;

font-weight:500;

color:#fff;

}

.navbar ul li:hover>a{

background:var(--secondary);

}


/*====================================================
                DROPDOWN
=====================================================*/

.navbar ul li ul{

position:absolute;

left:0;

top:100%;

min-width:240px;

background:#fff;

display:none;

box-shadow:var(--shadow-md);

border-radius:0 0 10px 10px;

overflow:hidden;

}

.navbar ul li:hover ul{

display:block;

}

.navbar ul li ul li{

width:100%;

}

.navbar ul li ul li a{

color:#333;

padding:14px 18px;

background:#fff;

}

.navbar ul li ul li a:hover{

background:#eef5fc;

color:var(--primary);

}


/*====================================================
            PAGE BANNER
=====================================================*/

.page-banner{

background:linear-gradient(rgba(6,36,74,.75),
rgba(6,36,74,.75)),
url("../images/banner.jpg");

background-size:cover;

background-position:center;

padding:100px 0px;

text-align:center;

color:#fff;

}

.page-banner h1{

color:#fff;

font-size:3rem;

margin-bottom:10px;

}

.page-banner p{

color:#f1f1f1;

font-size:1.1rem;

max-width:800px;

margin:auto;

}


/*====================================================
                BREADCRUMB
=====================================================*/

.breadcrumb{

margin-top:20px;

font-size:15px;

}

.breadcrumb a{

color:#fff;

}

.breadcrumb span{

color:var(--accent);

}


/*====================================================
            COMMON CARD
=====================================================*/

.card{

background:#fff;

border-radius:var(--radius);

box-shadow:var(--shadow-sm);

padding:25px;

transition:var(--transition);

}

.card:hover{

transform:translateY(-6px);

box-shadow:var(--shadow-lg);

}


/*====================================================
                HELPERS
=====================================================*/

.text-center{

text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}

.py{

padding:80px 0;

}

.bg-light{

background:#f8fafc;

}

.bg-white{

background:#fff;

}


/*====================================================
            SCROLLBAR
=====================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:10px;

}

::-webkit-scrollbar-track{

background:#eee;

}
/*=========================================
            FOOTER
=========================================*/

footer{

margin-top:80px;

background:#003366;

color:#fff;

padding:25px;

text-align:center;

}

/*=====================================================
                HERO CONTENT
======================================================*/
.hero{

    position:relative;

    height:60vh;

    overflow:hidden;

    background:#0b2545;

}

.hero-slide{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    opacity:0;

    transition:opacity 1s ease;

}

.hero-slide.active{

    opacity:1;

    z-index:2;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    z-index:5;

    color:#fff;

    max-width:800px;

    padding-top:100px;

}

.hero h1{

    font-size:46px;

    margin-bottom:20px;
    color: white;

}

.hero p{

    font-size:22px;

    margin-bottom:35px;
    color:wheat;
}

/*=====================================================
                HERO BUTTONS
======================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    padding:15px 35px;

    font-size:16px;

}

.hero-buttons .btn-outline{

    border:2px solid #241ae5;

    color:#d30e0e;

}

.hero-buttons .btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*=====================================================
            HERO ARROWS
======================================================*/

.hero-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    cursor:pointer;

    transition:.3s;

    z-index:100;

}

.hero-arrow:hover{

    background:var(--accent);

}

.hero-prev{

    left:30px;

}

.hero-next{

    right:30px;

}

/*=====================================================
                DOT INDICATORS
======================================================*/

.hero-dots{

    position:absolute;

    bottom:35px;

    width:100%;

    display:flex;

    justify-content:center;

    gap:12px;

    z-index:100;

}

.hero-dots span{

    width:14px;

    height:14px;

    border-radius:50%;

    background:#fff;

    opacity:.45;

    cursor:pointer;

}

.hero-dots .active{

    opacity:1;

    background:var(--accent);

}

/*=====================================================
        RESEARCH AT IIT HYDERABAD
======================================================*/

.research{

    background:#fff;

}

.research-wrapper{

    display:grid;

    grid-template-columns:0.7fr .9fr;

    gap:60px;

    align-items:top;
    
}

/*=====================================================
        RESEARCH CONTENT
======================================================*/

.research-content h2{

    margin-bottom:25px;

}

.research-content p{

    margin-bottom:18px;

    text-align:justify;

}

.research-content ul{

    margin-top:10px;

}

.research-content ul li{

    padding:10px 0;

    color:#444;

    display:flex;

    align-items:center;

}

.research-content ul li i{

    color:var(--success);

    margin-right:18px;

}

/*=====================================================
            IMAGE GRID
======================================================*/

.research-gallery{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.research-gallery img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:16px;

    box-shadow:var(--shadow-md);

    transition:.4s;

}

.research-gallery img:hover{

    transform:scale(1.05);

}

/*=====================================================
            FEATURE IMAGE
======================================================*/

.feature-image{

    grid-column:span 2;

}

.feature-image img{

    height:320px;

}

/*=====================================================
        RESEARCH HIGHLIGHT BOX
======================================================*/

.highlight-box{

    margin-top:30px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.highlight-card{

    background:#fff;

    border-radius:15px;

    padding:25px;

    box-shadow:var(--shadow-sm);

    border-left:5px solid var(--primary);

    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.highlight-card h3{

    color:var(--primary);

    margin-bottom:12px;

}

.highlight-card p{

    font-size:15px;

}

/*=====================================================
            QUICK FACTS
======================================================*/

.quick-facts{

    margin-top:35px;

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.fact{

    flex:1;

    min-width:160px;

    background:linear-gradient(135deg,#0B4F8C,#1E88E5);

    color:#fff;

    border-radius:15px;

    text-align:center;

    padding:25px;

    box-shadow:var(--shadow-md);

}

.fact h2{

    color:#fff;

    font-size:2rem;

    margin-bottom:8px;

}

.fact p{

    color:#fff;

}

/*=====================================================
        SECTION BACKGROUND SHAPE
======================================================*/

.research{

    position:relative;

    overflow:hidden;

}

.research::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(11,79,140,.05);

    border-radius:50%;

    top:-180px;

    right:-160px;

}

.research::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(180,34,34,.05);

    border-radius:50%;

    bottom:-120px;

    left:-120px;

}

/*=====================================================
            IMAGE CAPTION
======================================================*/

.image-caption{

    text-align:center;

    margin-top:10px;

    color:#666;

    font-size:14px;

}

/*=====================================================
            FLOATING CARD
======================================================*/

.floating-card{

    position:absolute;

    right:30px;

    bottom:40px;

    background:#fff;

    padding:20px;

    border-radius:15px;

    box-shadow:var(--shadow-lg);

    width:260px;

}

.floating-card h4{

    color:var(--primary);

    margin-bottom:10px;

}

.floating-card p{

    font-size:14px;

}

/*=====================================================
            GLASS CARD
======================================================*/

.glass-card{

    backdrop-filter:blur(12px);

    background:rgba(255,255,255,.18);

    border:1px solid rgba(255,255,255,.25);

    border-radius:18px;

    padding:25px;

}

/*=====================================================
        HERO SCROLL INDICATOR
======================================================*/

.scroll-down{

    position:absolute;

    bottom:18px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:28px;

    animation:bounce 2s infinite;

}
/*=====================================================
            DEAN'S MESSAGE SECTION
======================================================*/

.dean-section{

    background:#f8fafc;
    position:relative;
    overflow:hidden;

}

.dean-wrapper{

    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:center;

}

/*=============================
        DEAN IMAGE
==============================*/

.dean-image{

    position:relative;

}

.dean-image::before{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    top:20px;
    left:20px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    border-radius:20px;

    z-index:0;

}

.dean-image img{

    position:relative;

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

    z-index:1;

}

/*=============================
        MESSAGE CONTENT
==============================*/

.dean-content{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:var(--shadow-md);

}

.dean-content h2{

    margin-bottom:20px;

}

.dean-content p{

    text-align:justify;

    margin-bottom:18px;

    color:#444;

}

.dean-sign{

    margin-top:35px;

    border-top:2px solid #eee;

    padding-top:20px;

}

.dean-sign h3{

    color:var(--primary);

    margin-bottom:5px;

}

.dean-sign span{

    color:#666;

    font-size:15px;

    font-style:italic;

}

/*=====================================================
            RESEARCH METRICS
======================================================*/

.metrics{

    background:#fff;

    position:static;
    margin: 50px;

}

.metrics-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

    margin-left: 10px;

    margin-top:40px;

}

/*=============================
        METRIC CARD
==============================*/

.metric-card{

    background:#fff;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    border-top:5px solid var(--primary);

    position:relative;

    overflow:hidden;

}

.metric-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.metric-card::after{

    content:"";

    position:absolute;

    width:140px;
    height:140px;

    background:rgba(11,79,140,.05);

    border-radius:50%;

    top:-50px;
    right:-50px;

}

/*=============================
        ICON
==============================*/

.metric-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),#1E88E5);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

    margin-bottom:20px;

}

/*=============================
        COUNT
==============================*/

.metric-number{

    font-size:2.8rem;

    font-weight:700;

    color:var(--primary);

    margin-bottom:10px;

}

.metric-title{

    font-size:17px;

    color:#555;

}

/*=====================================================
        DASHBOARD ROW
======================================================*/

.dashboard-row{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:50px;

}

/*=============================
        DASHBOARD BOX
==============================*/

.dashboard-box{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.dashboard-box:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}

.dashboard-box h3{

    color:var(--primary);

    margin-bottom:20px;

}

/*=====================================================
        GOOGLE SHEETS CONTAINER
======================================================*/

.sheet-dashboard{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:var(--shadow-md);

    overflow-x:auto;

}

/*=====================================================
            PROGRESS BAR
======================================================*/

.progress-box{

    margin-bottom:20px;

}

.progress-title{

    display:flex;

    justify-content:space-between;

    margin-bottom:8px;

    font-size:15px;

}

.progress{

    width:100%;

    height:10px;

    background:#eee;

    border-radius:30px;

    overflow:hidden;

}

.progress-fill{

    height:100%;

    background:linear-gradient(90deg,var(--primary),var(--accent));

    border-radius:30px;

}

/*=====================================================
            SMALL METRIC
======================================================*/

.mini-metrics{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:35px;

}

.mini-card{

    flex:1;

    min-width:180px;

    background:#f8fafc;

    border-radius:15px;

    padding:25px;

    text-align:center;

}

.mini-card h3{

    color:var(--secondary);

    margin-bottom:8px;

}

/*=====================================================
            CHART PLACEHOLDER
======================================================*/

.chart-box{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:var(--shadow-sm);

    min-height:380px;

}

/*=====================================================
        LIVE DATA BADGE
======================================================*/

.live-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#E8F8EC;

    color:#0E8A3D;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.live-dot{

    width:10px;

    height:10px;

    background:#0E8A3D;

    border-radius:50%;

    animation:pulse 2s infinite;

}

/*=====================================================
        SECTION DECORATION
======================================================*/

.metrics::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(244,180,0,.06);

    border-radius:50%;

    left:-120px;

    bottom:-120px;

}

.metrics::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(11,79,140,.05);

    border-radius:50%;

    right:-80px;

    top:-80px;

}
/*=====================================================
            PROJECT SUMMARY SECTION
======================================================*/

.project-summary{

    background:#f7f9fc;
    position:relative;
    overflow:hidden;

}

.project-summary::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(11,79,140,.04);

    right:-180px;
    top:-180px;

}

.project-summary::after{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(244,180,0,.06);

    left:-120px;
    bottom:-120px;

}


/*=====================================================
            SUMMARY CARDS
======================================================*/

.summary-cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:40px;

}

.summary-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.summary-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.summary-card::before{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    border-radius:50%;

    background:rgba(11,79,140,.05);

    top:-40px;
    right:-40px;

}

.summary-icon{

    width:75px;
    height:75px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),#1976D2);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

    margin-bottom:18px;

}

.summary-card h2{

    font-size:2.8rem;

    color:var(--primary);

    margin-bottom:10px;

}

.summary-card p{

    font-size:16px;

    color:#666;

}


/*=====================================================
        PROJECT SUMMARY TABLE
======================================================*/

.project-table-container{

    margin-top:50px;

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:var(--shadow-md);

    overflow-x:auto;

}

.project-table{

    width:100%;

    border-collapse:collapse;

    min-width:900px;

}

.project-table thead{

    background:var(--primary);

    color:#fff;

}

.project-table th{

    padding:18px;

    text-align:center;

    font-weight:600;

}

.project-table td{

    padding:16px;

    text-align:center;

    border-bottom:1px solid #eee;

}

.project-table tbody tr:nth-child(even){

    background:#f9fbfd;

}

.project-table tbody tr:hover{

    background:#eef6ff;

}


/*=====================================================
        PROJECT STATUS BADGE
======================================================*/

.status{

    display:inline-block;

    padding:6px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.status-sponsored{

    background:#E8F4FD;

    color:#1565C0;

}

.status-consultancy{

    background:#FFF8E1;

    color:#E65100;

}

.status-gia{

    background:#E8F5E9;

    color:#2E7D32;

}


/*=====================================================
            RESEARCH STATISTICS STRIP
======================================================*/

.stats-strip{

    margin-top:70px;

    background:linear-gradient(135deg,var(--primary),#1976D2);

    color:#fff;

    border-radius:20px;

    padding:45px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat{

    text-align:center;

}

.stat h2{

    color:#fff;

    font-size:3rem;

    margin-bottom:10px;

}

.stat p{

    color:#fff;

    font-size:16px;

}


/*=====================================================
                SRC TEAM
======================================================*/

.src-team{

    background:#fff;

}

.team-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,3fr));
   

    gap:15px;

    margin-top:5px;

}

.team-card{

    display:flex;

    align-items:center;

    gap:10px;

    background:#fff;

    border-radius:18px;

    padding:15px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.team-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.team-image{

    flex-shrink: 0;

}

.team-image img{

    width:180px;

    height:180px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #f2f2f2;

    box-shadow:0 5px 18px rgba(0,0,0,.15);

    transition:.35s;

}

.team-card:hover img{

    transform:scale(1.08);

}

.team-content{

    padding:10px;
    flex:1;

    text-align:left;

}

.team-content h3{

    color:var(--primary);

    margin-bottom:8px;

}

.team-content h4{

    color:#666;

    margin-bottom:15px;

    font-weight:500;
    font-size: medium;

}

.team-content a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--secondary);

    text-decoration:none;

    font-size:15px;

}

.team-content a:hover{

    color:var(--primary);

}


/*=====================================================
            CALL TO ACTION
======================================================*/

.cta-section{

    background:linear-gradient(rgba(11,79,140,.92),
    rgba(11,79,140,.92)),
    url("../images/research-bg.jpg");

    background-size:cover;

    background-position:center;

    text-align:center;

    padding:90px 20px;

    color:#fff;

}

.cta-section h2{

    color:#fff;

    margin-bottom:20px;

}

.cta-section p{

    max-width:850px;

    margin:auto;

    color:#fff;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


/*=====================================================
            FUNDING AGENCIES
======================================================*/

.agencies{

    background:#f8fafc;

    padding:60px 0;

}

.agency-slider{

    display:flex;

    align-items:center;

    gap:40px;

    overflow:hidden;

}

.agency-item{

    min-width:180px;

    background:#fff;

    border-radius:15px;

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.3s;

}

.agency-item:hover{

    transform:translateY(-6px);

}

.agency-item img{

    max-height:70px;

    margin:auto;

    object-fit:contain;

}


/*=====================================================
            SECTION DIVIDER
======================================================*/

.wave-divider{

    width:100%;

    line-height:0;

}

.wave-divider svg{

    display:block;

    width:100%;

    height:120px;

}