/* ==========================================
   IMPORT FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

section[id]{
    scroll-margin-top: 230px;
}
html{
    overflow-x:hidden;
}

body{
    margin:0;
    padding:0;

    background:linear-gradient(
        135deg,
        #020617,
        #071A2E,
        #0B3B39,
        #02130F
    );

    color:#ffffff;
}

/* ==========================================
   COMMON
========================================== */

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.glass{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.3);
}

/* ==========================================
   HEADER
========================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(2,10,25,.95);
    backdrop-filter:blur(12px);
    box-shadow:0 3px 15px rgba(0,0,0,.25);
}

/* ==========================================
   TOP BAR VIDEO
========================================== */

.top-bar{
    width:100%;
    overflow:hidden;
}

.center-gif{
    width:100%;
    padding: 5px 5px;
}

.center-gif video{
    width:100%;
    height:150px;
    object-fit:cover;
    display:block;
    pointer-events:none;
    user-select:none;
}

/* ==========================================
   NAVBAR
========================================== */

nav{
    background:#071A2E;
}

.nav-container{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:15px 30px;
}

.logo{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.menu{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.menu a{
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    transition:.3s;
    font-weight:500;
}

.menu a:hover{
    background:#FFD700;
    color:#000;
}

/* ==========================================
   HAMBURGER
========================================== */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

/* ==========================================
   HERO
========================================== */

.hero{
    position:relative;
    width:100%;
    height:auto;
    margin-top:190px;
    margin-bottom:0;
    padding:0;
    overflow:hidden;
}

.hero-title{
    font-size:60px;
    font-weight:800;
}

.jit{
    color:#00ff88;   /* JIT - Green */
}

.star{
    color:#00bfff;   /* STAR - Blue */
}
/* ==========================================
   IMAGE SLIDER
========================================== */

.slider{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
    border-radius:1px;
    margin-bottom:0;
}

.slide{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1s ease;

    pointer-events:none;
}

.slide.active{
    opacity:1;
}

/* ==========================================
   OVERLAY
========================================== */

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

/* ==========================================
   HERO CONTENT
========================================== */

.hero-content{
    max-width:900px;
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

.hero-content h3{
    color:#FFD700;
    font-size:24px;
    margin-bottom:15px;
}

.hero-title{
    font-size:5.5rem;
    font-weight:900;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

/* ==========================================
   DETAILS
========================================== */

.details{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.details div{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    padding:14px 24px;
    border-radius:10px;
    transition:.3s;
}

.details div:hover{
    transform:translateY(-5px);
}

.details i{
    color:#FFD700;
    margin-right:8px;
}

/* ==========================================
   BUTTON
========================================== */

.btn{
    display:inline-block;
    background:#FFD700;
    color:#000;
    padding:15px 40px;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:#fff;
    transform:translateY(-4px);
}


/* ==========================================
   Time Line 

========================================== */

.countdown-label{
    letter-spacing:3px;
    font-size:42px;
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
    text-align:center;
    padding:20px 10px;
}

.countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:35px;
    flex-wrap:wrap;
    margin-top:0 !important;
    padding-top:0 !important;
}


.count-box{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:16px;
    padding:20px 30px;
    min-width:100px;
    text-align:center;
    transition:.3s ease;      /* idhu add pannunga - smooth animation ku */
}

.count-box:hover{
    transform:translateY(-8px);
    border-color:#FFD700;
    background:rgba(255,215,0,.10);
    box-shadow:0 15px 30px rgba(255,215,0,.25);
}

.count-box span{
    font-size:36px;
    font-weight:800;
    color:#FFD700;
    display:block;
}

.count-box p{
    font-size:13px;
    letter-spacing:1px;
    color:#C8D6E5;
    margin-top:5px;
}
/* ==========================================
   COMMON SECTION
========================================== */

.section{
    padding:80px 10%;
}

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#C8D6E5;
    font-size:18px;
    margin-bottom:50px;
    line-height:1.8;
}

/* ==========================================
   Venue
========================================== */
.venue{
    text-align:center;
}


.venue-card{
    max-width:700px;

    margin:20px auto 0;

    padding:10px 30px;

    background:gba(255,255,255,.08);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:22px;

    box-shadow:0 10px 30px rgba(0,0,0,.30);

    transition:.4s ease;
}


/* Hover */

.venue-card:hover{
    transform:translateY(-8px);

    border-color:#00D4AA;

    box-shadow:
        0 18px 40px rgba(0,0,0,.40),
        0 0 25px rgba(0,212,170,.20);
}


/* Location Icon */

.venue-icon{
    width:60px;
    height:60px;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#00D4AA;

    color:#020617;

    font-size:25px;

    transition:.4s ease;
}


.venue-card:hover .venue-icon{
    transform:scale(1.1) rotate(8deg);

    background:#FFD700;
}


/* College Name */

.venue-card h3{
    color:#FFD700;

    font-size:27px;

    margin-bottom:8px;
}


/* Institution */

.venue-type{
    color:#ffffff;

    font-size:16px;

    margin-bottom:20px;
}


/* Address */

.venue-card p{
    color:#C8D6E5;

    font-size:16px;

    line-height:1.8;

    margin-bottom:12px;
}


/* Bold text */

.venue-card strong{
    color:#ffffff;
}


/* Website */

.venue-card a{
    color:#00D4AA;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;
}


.venue-card a:hover{
    color:#FFD700;
}

/* ==========================================
   CALL FOR PAPERS
========================================== */
/* Introduction */

.call-papers-content{
    max-width:1000px;
    margin:0 auto 50px;
}

.call-papers-content p{
    color:#C8D6E5;
    font-size:16px;
    line-height:1.8;
    text-align:justify;
    margin-bottom:18px;
}


/* ==========================
   THREE TRACK BOXES
========================== */

.tracks-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    align-items:stretch;
    background:linear-gradient(
        135deg,
        #020617,
        #071A2E,
        #0B3B39,
        #02130F
    );
}


/* Track Box */

.track-box{
    position:relative;
    overflow:hidden;

    padding:30px 25px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.30);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


/* Top Glow Line */

.track-box::before{
    content:"";

    position:absolute;

    top:0;
    left:50%;

    width:0;
    height:4px;

    background:#00D4AA;

    transform:translateX(-50%);

    transition:width .4s ease;
}


/* Hover */

.track-box:hover{
    transform:translateY(-10px);

    border-color:#00D4AA;

    box-shadow:
        0 20px 40px rgba(0,0,0,.45),
        0 0 25px rgba(0,212,170,.18);
}


.track-box:hover::before{
    width:80%;
}


/* Track Number */

.track-number{
    width:55px;
    height:55px;

    margin:0 auto 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#00D4AA;

    color:#020617;

    font-size:18px;
    font-weight:800;

    transition:.4s ease;
}


/* Number Hover */

.track-box:hover .track-number{
    transform:rotate(360deg);

    background:#FFD700;

    box-shadow:
        0 0 18px rgba(255,215,0,.30);
}


/* Track Title */

.track-box h3{
    text-align:center;

    color:#FFD700;

    font-size:23px;

    margin:0 0 8px;

    transition:.3s ease;
}


/* Track Subtitle */

.track-box h4{
    text-align:center;

    color:#ffffff;

    font-size:16px;

    line-height:1.5;

    margin:0 0 25px;
}


/* Topics */

.track-box ul{
    list-style:none;

    padding:0;
    margin:0;
}


.track-box li{
    position:relative;

    padding:10px 5px 10px 25px;

    color:#C8D6E5;

    font-size:14px;

    line-height:1.5;

    border-bottom:1px solid rgba(255,255,255,.06);

    transition:.3s ease;
}


/* Bullet */

.track-box li::before{
    content:"";

    position:absolute;

    left:3px;
    top:17px;

    width:6px;
    height:6px;

    border-radius:50%;

    background:#00D4AA;
}


/* Topic Hover */

.track-box li:hover{
    color:#ffffff;

    padding-left:30px;
}


/* ==========================================
   PAPER SUBMISSION
========================================== */

/* Intro */

.submission-intro{
    max-width:900px;
    margin:0 auto 40px;

    text-align:center;

    color:#C8D6E5;

    font-size:16px;
    line-height:1.8;
}


/* Main Guidelines Card */

.submission-card{
    max-width:1000px;
    margin:0 auto 35px;

    padding:35px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.30);

    transition:.35s ease;
}

.submission-card:hover{
    border-color:#00D4AA;

    box-shadow:
        0 15px 35px rgba(0,0,0,.40),
        0 0 25px rgba(0,212,170,.15);
}


.submission-card h3{
    color:#FFD700;

    font-size:25px;

    margin-bottom:20px;
}


/* List */

.submission-list{
    padding:0;
    margin:0;

    list-style:none;
}

.submission-list li{
    position:relative;

    padding:12px 10px 12px 30px;

    color:#C8D6E5;

    line-height:1.7;
}

.submission-list li::before{
    content:"✓";

    position:absolute;
    left:0;

    color:#00D4AA;

    font-weight:bold;
}

.submission-list strong{
    color:#ffffff;
}


/* Policy Cards */

.submission-links{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:30px;
}


.submission-link-card{
    padding:25px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.10);

    border-radius:18px;

    transition:.35s ease;
}

.submission-link-card:hover{
    transform:translateY(-7px);

    border-color:#00D4AA;

    background:rgba(0,212,170,.06);

    box-shadow:
        0 12px 30px rgba(0,0,0,.35);
}


.link-icon{
    display:inline-flex;

    width:40px;
    height:40px;

    align-items:center;
    justify-content:center;

    margin-bottom:15px;

    border-radius:50%;

    background:#00D4AA;

    color:#020617;

    font-weight:800;
}


.submission-link-card h3{
    color:#FFD700;

    font-size:19px;

    margin-bottom:10px;
}


.submission-link-card p{
    color:#C8D6E5;

    font-size:14px;

    line-height:1.6;

    margin-bottom:15px;
}


.submission-link-card a{
    color:#00D4AA;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}


.submission-link-card a:hover{
    color:#FFD700;
}


/* Submit Area */

.submit-paper{
    max-width:850px;

    margin:45px auto 0;

    padding:40px;

    text-align:center;

    background:rgba(0,212,170,.08);

    border:1px solid rgba(0,212,170,.25);

    border-radius:22px;
}


.submit-paper h3{
    color:#ffffff;

    font-size:27px;

    margin-bottom:10px;
}


.submit-paper p{
    color:#C8D6E5;

    line-height:1.7;

    margin-bottom:25px;
}


.submit-btn{
    display:inline-block;

    padding:13px 30px;

    border-radius:30px;

    background:#00D4AA;

    color:#020617;

    text-decoration:none;

    font-weight:800;

    transition:.3s ease;
}


.submit-btn:hover{
    background:#FFD700;

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(255,215,0,.25);
}


/* ==========================================
   COMMITTEE SECTION
========================================== */
/* =====================================
   COMMITTEE GRID - PROFESSIONAL 4 BOX
===================================== */

.committee-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;

    margin-top:50px;

    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
}


/* =====================================
   COMMITTEE CARD
===================================== */

.committee-card{
    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,.07);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;

    padding:32px 30px;

    text-align:center;

    min-height:190px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease,
        background .4s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,.30);
}


/* =====================================
   TOP GOLD LINE
===================================== */

.committee-card::before{
    content:"";

    position:absolute;

    top:0;
    left:50%;

    width:0;
    height:3px;

    background:#FFD700;

    transform:translateX(-50%);

    transition:width .45s ease;
}


/* =====================================
   HOVER
===================================== */

.committee-card:hover{
    transform:translateY(-10px);

    background:rgba(255,255,255,.10);

    border-color:#00D4AA;

    box-shadow:
        0 20px 40px rgba(0,0,0,.45),
        0 0 30px rgba(0,212,170,.18);
}


/* Gold line expand */

.committee-card:hover::before{
    width:75%;
}


/* =====================================
   HEADING
===================================== */

.committee-card h3{
    color:#FFD700;

    font-size:23px;
    font-weight:700;

    letter-spacing:.5px;

    margin:0 0 18px;

    transition:.3s ease;
}


.committee-card:hover h3{
    text-shadow:
        0 0 12px rgba(255,215,0,.35);
}


/* =====================================
   NAME
===================================== */

.committee-card p strong{
    color:#ffffff;

    font-size:17px;

    font-weight:800;

    transition:.3s ease;
}


.committee-card:hover p strong{
    color:#00D4AA;
}


/* =====================================
   DETAILS
===================================== */

.committee-card p{
    color:#C8D6E5;

    font-size:15px;

    line-height:1.8;

    margin:0;
}


/* ==============================
   ADVISORY COMMITTEE
================================ */

.advisory-main{
    grid-column:1 / -1;
    text-align:center;
}


/* Two Boxes */

.advisory-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

    margin-top:30px;
}


/* Individual Box */

.advisory-box{
    position:relative;
    overflow:hidden;

    padding:30px;

    text-align:left;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.10);

    border-radius:18px;

    transition:.4s ease;
}


/* Top Line */

.advisory-box::before{
    content:"";

    position:absolute;

    top:0;
    left:50%;

    width:0;
    height:3px;

    background:#00D4AA;

    transform:translateX(-50%);

    transition:.4s ease;
}


/* Box Hover */

.advisory-box:hover{
    transform:translateY(-7px);

    border-color:#00D4AA;

    background:rgba(0,212,170,.06);

    box-shadow:
        0 15px 35px rgba(0,0,0,.35),
        0 0 25px rgba(0,212,170,.15);
}


.advisory-box:hover::before{
    width:70%;
}


/* Box Heading */

.advisory-box h4{
    color:#FFD700;

    text-align:center;

    font-size:22px;

    margin-bottom:25px;

    text-transform:uppercase;
}


/* Member */

.member{
    padding:15px 0;

    border-bottom:1px solid rgba(255,255,255,.08);
}


.member:last-child{
    border-bottom:none;
}


/* Name */

.member strong{
    color:#ffffff;

    font-size:17px;

    font-weight:800;
}


/* Details */

.member p{
    color:#C8D6E5;

    font-size:14px;

    line-height:1.7;

    margin:6px 0 0;
}


/* Name Hover */

.member:hover strong{
    color:#FFD700;
}

/* ==========================================
   ABOUT SECTION
========================================== */

.about {
    padding: 80px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: stretch;
}

/* Cards */

.about-card {
    padding: 35px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;
}

/* Light Hover Effect */

.about-card:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.09);

    border-color: rgba(0, 255, 136, 0.35);

    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.12);
}

/* Titles */

.about-card .section-title {
    margin-bottom: 20px;
    font-size: 30px;
}

/* Paragraph */

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
}

/* College Card */

.college-card {
    border-top: 3px solid #00ff88;
}

/* Conference Card */

.conference-card {
    border-top: 3px solid #00bfff;
}

.college-description {
    text-align: justify;
    line-height: 1.1;
    font-size: 12px;
    word-spacing: 1px;
    margin: 0;
}
.conference-description {
    text-align: justify;
    line-height: 1.1;
    font-size: 12px;
    word-spacing: 0.5px;
    margin: 0;
}

/* Responsive */

@media (max-width: 768px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-card {
        padding: 25px;
    }

    .about-card .section-title {
        font-size: 25px;
    }

    .about-card p {
        font-size: 15px;
    }
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:#010B16;
    padding:25px 10%;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
}

.footer-container{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:25px;
}

.footer-box{
    width:100%;
    text-align:center;
}

.footer-box h3{
    color:#FFD700;
    margin-bottom:15px;
    font-size:22px;
}

.footer-box p,
.footer-box a{
    color:#C8D6E5;
    line-height:1.8;
    display:block;
}

.footer-box a:hover{
    color:#FFD700;
}

.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#071A2E;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:#FFD700;
    color:#000;
}

.copyright{
    margin-top:30px;
    text-align:center;
    color:#9FB3C8;
}


/* =====================================================
                RESPONSIVE DESIGN
===================================================== */

/* ======================
   LARGE LAPTOP
====================== */

@media (max-width:1200px){

.container{
    width:95%;
}

.hero{
    margin-top:180px;
}

.hero-title{
    font-size:4.5rem;
}

.hero-content p{
    font-size:18px;
}

.registration-cards{
    grid-template-columns:repeat(3,1fr);
}

.topics{
    grid-template-columns:repeat(3,1fr);
}

.committee-grid{
    grid-template-columns:repeat(3,1fr);
}

.footer-container{
    grid-template-columns:repeat(3,1fr);
}

.section{
    padding:70px 8%;
}

}


/* ======================
      TABLET
====================== */

@media (max-width:992px){

.container{
    width:95%;
}

.center-gif video{
    height:120px;
}

.nav-container{
    padding:15px 20px;
}

.hero{
    margin-top:170px;
    height:85vh;
}

.hero-title{
    font-size:3.8rem;
}

.hero-content h3{
    font-size:22px;
}

.hero-content p{
    font-size:17px;
}

.details{
    gap:15px;
}

.registration{
    padding:50px 30px;
}

.registration-cards{
    grid-template-columns:repeat(2,1fr);
}

.topics{
    grid-template-columns:repeat(2,1fr);
}

.committee-grid{
    grid-template-columns:repeat(2,1fr);
}

.about-container{
    flex-direction:column;
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
}

.section{
    padding:60px 6%;
}

}


/* ======================
       MOBILE
====================== */

@media (max-width:768px){

.center-gif video{
    height:80px;
}

.nav-container{
    padding:15px;
}

.menu-toggle{
    display:block;
}

.menu{

    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#071A2E;
    flex-direction:column;
    box-shadow:0 10px 20px rgba(0,0,0,.30);
}

.menu.active{
    display:flex;
}

.menu a{

    width:100%;
    padding:15px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.hero{

    margin-top:140px;
    height:75vh;
}

.hero-title{
    font-size:2.8rem;
}

.hero-content h3{
    font-size:18px;
}

.hero-content p{
    font-size:15px;
}

.details{
    flex-direction:column;
}

.details div{
    width:100%;
}

.registration{
    padding:40px 20px;
}

.registration-cards{
    grid-template-columns:1fr;
}

.topics{
    grid-template-columns:1fr;
}

.committee-grid{
    grid-template-columns:1fr;
}

.footer-container{
    grid-template-columns:1fr;
}

.about-container{
    flex-direction:column;
}

.section{
    padding:50px 20px;
}

.section-title{
    font-size:32px;
}

.section-subtitle{
    font-size:16px;
}

.btn{

    width:100%;
    text-align:center;
}

}


/* ======================
    SMALL MOBILE
====================== */

@media (max-width:480px){

.center-gif video{
    height:65px;
}

.hero{
    margin-top:120px;
    height:65vh;
}

.hero-title{
    font-size:2rem;
    line-height:1.3;
}

.hero-content h3{
    font-size:16px;
}

.hero-content p{
    font-size:14px;
}

.details div{
    padding:12px;
    font-size:14px;
}

.card{
    padding:25px;
}

.card i{
    font-size:45px;
}

.card h3{
    font-size:20px;
}

.committee-card{
    padding:25px;
}

.about-content h3{
    font-size:24px;
}

.about-content p{
    font-size:15px;
}

.footer-box h3{
    font-size:20px;
}

footer{
    padding:40px 20px;
}

.section-title{
    font-size:28px;
}

.section-subtitle{
    font-size:15px;
}

.btn{
    padding:14px 20px;
    font-size:15px;
}

}