/*=========================================================
  ICETFSE-2027
  Main Stylesheet
  Author : Web Team
  Version: 1.0
==========================================================*/

/*=========================================================
ROOT VARIABLES
=========================================================*/
.topic-list {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
    text-align: left;
}

.topic-list li {
    text-align: left;
    margin-bottom: 10px;
}
.snist-campus-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
:root{

    --primary:#0B4F9C;
    --secondary:#0F75BC;
    --accent:#F4B400;
    --danger:#D62828;
    --success:#28A745;

    --dark:#1A1A1A;
    --light:#F8F9FA;
    --white:#FFFFFF;
    --gray:#6C757D;
    --border:#E6E6E6;

    --heading-font:'Poppins',sans-serif;
    --body-font:'Poppins',sans-serif;

    --transition:.35s ease;
    --radius:12px;

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);
    --shadow-md:0 10px 30px rgba(0,0,0,.12);
    --shadow-lg:0 20px 40px rgba(0,0,0,.15);

}



/*=========================================================
RESET
=========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--body-font);

    font-size:16px;

    line-height:1.8;

    color:#555;

    background:#fff;

    overflow-x:hidden;

}



/*=========================================================
TYPOGRAPHY
=========================================================*/

h1,h2,h3,h4,h5,h6{

    font-family:var(--heading-font);

    font-weight:700;

    color:#111;

    margin-bottom:15px;

}

h1{

    font-size:3.5rem;

    line-height:1.2;

}

h2{

    font-size:2.6rem;

}

h3{

    font-size:2rem;

}

h4{

    font-size:1.35rem;

}

p{

    margin-bottom:18px;

    color:#666;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

a:hover{

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}



/*=========================================================
SECTION TITLE
=========================================================*/

.section-subtitle{

    display:inline-block;

    padding:8px 18px;

    background:#EAF3FF;

    color:var(--primary);

    border-radius:30px;

    font-weight:600;

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

    color:#111;

}



/*=========================================================
BUTTONS
=========================================================*/

.btn{

    border-radius:50px;

    padding:13px 30px;

    font-weight:600;

    transition:var(--transition);

    letter-spacing:.3px;

}

.btn-lg{

    padding:15px 36px;

}

.btn-primary{

    background:var(--primary);

    border-color:var(--primary);

}

.btn-primary:hover{

    background:#083b75;

    border-color:#083b75;

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.btn-warning{

    color:#111;

    background:var(--accent);

    border-color:var(--accent);

}

.btn-warning:hover{

    background:#d89f00;

    border-color:#d89f00;

    color:#111;

    transform:translateY(-3px);

}

.btn-danger{

    background:var(--danger);

    border-color:var(--danger);

}

.btn-danger:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.btn-outline-light:hover{

    color:var(--primary);

}

.btn-outline-primary:hover{

    transform:translateY(-3px);

}



/*=========================================================
TOP BAR
=========================================================*/

.topbar{

    background:var(--primary);

    color:#fff;

    font-size:22px;

    padding:10px 0;

}

.top-contact{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    align-items:center;

}

.top-contact span{

    color:#fff;

}

.top-contact i{

    color:var(--accent);

    margin-right:8px;

}



/*=========================================================
NAVBAR
=========================================================*/

header{

    background:#fff;

    z-index:999;

}

.navbar{

    padding:15px 0;

}

.navbar-brand{

    font-weight:700;

}

.navbar-brand h5{

    color:var(--primary);

    margin-bottom:2px;

}

.navbar-brand small{

    color:#666;

    font-size:13px;

}

.navbar-brand img{

    width:auto;

}

.navbar-nav{

    align-items:center;

}

.nav-item{

    margin-left:6px;

}

.nav-link{

    color:#222 !important;

    font-weight:600;

    padding:12px 16px !important;

    border-radius:6px;

    transition:var(--transition);

    position:relative;

}

.nav-link:hover{

    color:var(--primary) !important;

}

.nav-link.active{

    color:var(--primary) !important;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:16px;

    right:16px;

    bottom:6px;

    height:2px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.3s;

}

.nav-link:hover::after,

.nav-link.active::after{

    transform:scaleX(1);

}



/*=========================================================
DROPDOWN MENU
=========================================================*/

.dropdown-menu{

    border:none;

    border-radius:12px;

    box-shadow:var(--shadow-md);

    padding:10px;

}

.dropdown-item{

    padding:10px 16px;

    border-radius:8px;

    transition:var(--transition);

}

.dropdown-item:hover{

    background:#EDF5FF;

    color:var(--primary);

}



/*=========================================================
STICKY HEADER
=========================================================*/

.sticky-top{

    transition:.4s;

    box-shadow:0 2px 20px rgba(0,0,0,.05);

}



/*=========================================================
UTILITY CLASSES
=========================================================*/

.bg-primary{

    background:var(--primary)!important;

}

.text-primary{

    color:var(--primary)!important;

}

.bg-light{

    background:#F7F9FC!important;

}

.shadow-box{

    box-shadow:var(--shadow-md);

}

.rounded-xl{

    border-radius:20px;

}

.py-100{

    padding:100px 0;

}

.mt-40{

    margin-top:40px;

}

.mb-40{

    margin-bottom:40px;

}

/*=========================================================
END OF PART 1
Next:
Hero Section
Countdown
Hero Buttons
Conference Details
Hero Background
=========================================================*/
/*=========================================================
HERO SECTION
=========================================================*/

.hero-section{

    position:relative;

    overflow:hidden;

    padding:110px 0;

    min-height:760px;

    display:flex;

    align-items:center;

    background:
        linear-gradient(rgba(6,35,74,.82),
        rgba(6,35,74,.88)),
        url("../images/hero-bg.jpg");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

}

.hero-section::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-180px;

    right:-150px;

}

.hero-section::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    bottom:-150px;

    left:-120px;

}

.hero-section .container{

    position:relative;

    z-index:2;

}



/*=========================================================
CONFERENCE TAG
=========================================================*/

.conference-tag{

    display:inline-block;

    padding:10px 25px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    color:#fff;

    backdrop-filter:blur(8px);

    font-size:15px;

    font-weight:600;

    letter-spacing:.5px;

}



/*=========================================================
HERO TEXT
=========================================================*/

.hero-section h1{

    color:#fff;

    font-size:58px;

    line-height:1.15;

    margin-top:25px;

    font-weight:800;

}

.hero-section h3{

    color:#FFD34D;

    font-weight:700;

    margin-top:20px;

}

.hero-section .lead{

    color:#EAEAEA;

    font-size:20px;

    max-width:650px;

    margin-top:25px;

}



/*=========================================================
CONFERENCE DETAILS
=========================================================*/

.conference-details{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

    margin-top:35px;

}

.detail-box{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 22px;

    border-radius:15px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#fff;

    min-width:240px;

}

.detail-box i{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--accent);

    color:#111;

    font-size:24px;

}

.detail-box h6{

    margin-bottom:5px;

    color:#FFD34D;

    font-weight:700;

}

.detail-box span{

    color:#fff;

    font-size:15px;

}



/*=========================================================
HERO BUTTONS
=========================================================*/

.hero-section .btn{

    margin-bottom:12px;

    margin-right:12px;

}

.hero-section .btn-warning{

    box-shadow:0 12px 30px rgba(244,180,0,.35);

}

.hero-section .btn-danger{

    box-shadow:0 12px 30px rgba(214,40,40,.30);

}

.hero-section .btn-outline-light{

    border-width:2px;

}

.hero-section .btn:hover{

    transform:translateY(-4px);

}



/*=========================================================
COUNTDOWN CARD
=========================================================*/

.countdown-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.25);

    animation:floatCard 4s ease-in-out infinite;

}

.countdown-card h3{

    color:var(--primary);

    margin-bottom:25px;

}

.countdown-card hr{

    margin:30px 0;

}



/*=========================================================
COUNTDOWN TIMER
=========================================================*/

#countdown{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.time-box{

    background:linear-gradient(135deg,#0B4F9C,#176FC4);

    color:#fff;

    border-radius:15px;

    text-align:center;

    padding:22px 15px;

}

.time-box h2{

    color:#fff;

    font-size:42px;

    font-weight:800;

    margin-bottom:6px;

}

.time-box span{

    text-transform:uppercase;

    font-size:13px;

    letter-spacing:1px;

}



/*=========================================================
IMPORTANT DATES INSIDE COUNTDOWN
=========================================================*/

.countdown-card .list-group{

    border-radius:12px;

    overflow:hidden;

}

.countdown-card .list-group-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border:1px solid #ECECEC;

    padding:14px 18px;

    font-size:15px;

}

.countdown-card .list-group-item strong{

    color:var(--primary);

}



/*=========================================================
HERO ANIMATIONS
=========================================================*/

@keyframes floatCard{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-section h1,
.hero-section h3,
.hero-section .lead,
.hero-section .conference-details,
.hero-section .btn{

    animation:fadeUp 1s ease forwards;

}

.hero-section h1{animation-delay:.2s;}
.hero-section h3{animation-delay:.4s;}
.hero-section .lead{animation-delay:.6s;}
.hero-section .conference-details{animation-delay:.8s;}
.hero-section .btn{animation-delay:1s;}



/*=========================================================
SCROLL DOWN INDICATOR (OPTIONAL)
=========================================================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:25px;

    transform:translateX(-50%);

    color:#fff;

    font-size:28px;

    animation:scrollBounce 2s infinite;

}

@keyframes scrollBounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-12px);

    }

    60%{

        transform:translate(-50%,-6px);

    }

}

/*=========================================================
END OF PART 2
Next:
About Section
Highlights
Track Cards
Date Cards
=========================================================*/
/*=========================================================
  PART 3 : ABOUT • HIGHLIGHTS • TRACKS • IMPORTANT DATES
  ICETFSE-2027
=========================================================*/


/*=========================================================
ABOUT SECTION
=========================================================*/

#about,
.about-section{

    position:relative;

    padding:100px 0;

    background:#fff;

}

.about-section img{

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    transition:.45s;

}

.about-section img:hover{

    transform:scale(1.02);

}

.about-section p{

    color:#666;

    text-align:justify;

}

.about-section ul{

    margin-top:25px;

}

.about-section li{

    list-style:none;

    margin-bottom:15px;

    color:#555;

    font-weight:500;

}

.about-section li i{

    color:var(--success);

    margin-right:10px;

}



/*=========================================================
SNIST STATS
=========================================================*/

.stats-card{

    background:#fff;

    border-radius:18px;

    text-align:center;

    padding:30px 15px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    border:1px solid #F1F1F1;

}

.stats-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

}

.stats-card h3{

    color:var(--primary);

    font-size:38px;

    margin-bottom:8px;

}

.stats-card p{

    margin:0;

    color:#666;

}



/*=========================================================
HIGHLIGHTS
=========================================================*/

.highlight-card{

    background:#fff;

    border-radius:18px;

    padding:40px 28px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

    border:1px solid #EEEEEE;

}

.highlight-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.highlight-card i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:34px;

    margin-bottom:22px;

    transition:.35s;

}

.highlight-card:hover i{

    background:var(--accent);

    color:#111;

    transform:rotate(360deg);

}

.highlight-card h4{

    margin-bottom:18px;

    color:var(--primary);

}

.highlight-card p{

    margin-bottom:0;

}



/*=========================================================
TRACKS SECTION
=========================================================*/

#tracks{

    background:#F7F9FC;

}

.track-card{

    background:#fff;

    border-radius:20px;

    padding:35px 30px;

    height:100%;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    border-top:5px solid transparent;

}

.track-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    border-top:5px solid var(--primary);

}

.track-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    background:#EDF5FF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.track-icon i{

    font-size:36px;

    color:var(--primary);

}

.track-card:hover .track-icon{

    background:var(--primary);

}

.track-card:hover .track-icon i{

    color:#fff;

}

.track-card h4{

    color:var(--primary);

    margin-bottom:20px;

    min-height:60px;

}

.track-card ul{

    margin:0;

    padding-left:18px;

}

.track-card li{

    margin-bottom:10px;

    color:#555;

    font-size:15px;

}

.track-card .btn{

    margin-top:20px;

}



/*=========================================================
CALL FOR PAPERS BANNER
=========================================================*/

.call-paper-section{

    padding:90px 0;

    background:
        linear-gradient(rgba(8,59,117,.90),
        rgba(11,79,156,.90)),
        url("../images/banner.jpg");

    background-size:cover;

    background-position:center;

}

.call-paper-section h2{

    color:#fff;

    font-size:44px;

}

.call-paper-section p{

    color:#F2F2F2;

    max-width:700px;

    margin:auto;

}

.call-paper-section .btn{

    margin:8px;

}



/*=========================================================
IMPORTANT DATES
=========================================================*/

.date-card{

    background:#fff;

    border-radius:18px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow-sm);

    height:100%;

    position:relative;

    overflow:hidden;

}

.date-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.date-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--primary);

}

.date-card i{

    color:var(--primary);

    margin-bottom:20px;

}

.date-card h5{

    font-weight:700;

    color:#111;

    margin-bottom:10px;

}

.date-card p{

    margin-bottom:0;

    color:#666;

}



/*=========================================================
FEATURED DATE
=========================================================*/

.date-card.bg-primary{

    background:linear-gradient(135deg,#0B4F9C,#176FC4)!important;

    color:#fff;

}

.date-card.bg-primary::before{

    background:var(--accent);

}

.date-card.bg-primary h5,

.date-card.bg-primary p,

.date-card.bg-primary i{

    color:#fff;

}



/*=========================================================
TIMELINE (OPTIONAL)
=========================================================*/

.timeline{

    position:relative;

    margin-top:50px;

}

.timeline::before{

    content:"";

    position:absolute;

    width:4px;

    height:100%;

    background:#DCE8F7;

    left:50%;

    transform:translateX(-50%);

}



/*=========================================================
BADGES
=========================================================*/

.badge-track{

    display:inline-block;

    background:#EDF5FF;

    color:var(--primary);

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}



/*=========================================================
ANIMATION
=========================================================*/

.track-card,
.highlight-card,
.date-card{

    animation:fadeUp .8s ease both;

}

.track-card:nth-child(2){

    animation-delay:.1s;

}

.track-card:nth-child(3){

    animation-delay:.2s;

}

.track-card:nth-child(4){

    animation-delay:.3s;

}

.track-card:nth-child(5){

    animation-delay:.4s;

}

.track-card:nth-child(6){

    animation-delay:.5s;

}



/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

.track-card{

    padding:30px 22px;

}

.call-paper-section h2{

    font-size:34px;

}

}

@media(max-width:768px){

.about-section{

    text-align:center;

}

.about-section p{

    text-align:left;

}

.track-card h4{

    min-height:auto;

}

.date-card{

    margin-bottom:20px;

}

.call-paper-section{

    padding:70px 20px;

}

.call-paper-section h2{

    font-size:30px;

}

}

@media(max-width:576px){

.highlight-card{

    padding:28px 20px;

}

.track-card{

    padding:25px 20px;

}

.track-icon{

    width:70px;

    height:70px;

}

.track-icon i{

    font-size:28px;

}

.stats-card h3{

    font-size:30px;

}

}

/*=========================================================
END OF PART 3

Next:
Part 4
Registration
Publication
Committee
Speakers
=========================================================*/
/*=========================================================
PART 4
REGISTRATION • PUBLICATION • COMMITTEE • SPEAKERS
ICETFSE-2027
=========================================================*/


/*=========================================================
REGISTRATION SECTION
=========================================================*/

#registration{

    background:#F7F9FC;

}

.pricing-card{

    position:relative;

    background:#FFFFFF;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    border:1px solid #ECECEC;

    height:100%;

}

.pricing-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.pricing-header{

    padding:40px 25px 25px;

    background:linear-gradient(135deg,#0B4F9C,#176FC4);

    color:#fff;

}

.pricing-header i{

    color:#FFD34D;

}

.pricing-header h4{

    color:#fff;

    margin-top:18px;

    margin-bottom:0;

}

.pricing-price{

    font-size:42px;

    font-weight:700;

    color:var(--primary);

    margin:30px 0;

}

.pricing-card .list-group-item{

    border:none;

    border-bottom:1px solid #F2F2F2;

    padding:16px;

    color:#555;

}

.pricing-card .btn{

    border-radius:40px;

}

.featured-card{

    transform:scale(1.04);

    border:3px solid var(--accent);

}

.featured-card:hover{

    transform:scale(1.06);

}

.featured-card .badge{

    position:absolute;

    top:18px;

    right:18px;

    font-size:13px;

    padding:8px 14px;

}



/*=========================================================
PUBLICATION
=========================================================*/

.publication-section{

    background:linear-gradient(135deg,#0B4F9C,#1D72C9);

}

.publication-section h2,

.publication-section h3,

.publication-section h4{

    color:#fff;

}

.publication-section p{

    color:#E8E8E8;

}

.publication-list{

    margin-top:35px;

    list-style:none;

    padding:0;

}

.publication-list li{

    padding:12px 0;

    color:#fff;

    font-size:17px;

}

.publication-list i{

    color:#FFD34D;

    margin-right:12px;

}

.publisher-card{

    background:#fff;

    border-radius:18px;

    text-align:center;

    padding:30px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

}

.publisher-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.publisher-card img{

    height:70px;

    width:auto;

    margin:auto;

    object-fit:contain;

}

.publisher-card h5{

    color:var(--primary);

    margin-top:15px;

}



/*=========================================================
COMMITTEE
=========================================================*/

#committee{

    background:#F8F9FA;

}

.committee-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow-sm);

    height:100%;

}

.committee-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.committee-img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.committee-body{

    padding:28px;

}

.committee-body h4{

    color:var(--primary);

    margin-bottom:8px;

}

.committee-body h6{

    color:var(--accent);

    font-weight:600;

    margin-bottom:15px;

}

.committee-body p{

    font-size:15px;

    color:#666;

}

.committee-social{

    margin-top:18px;

}

.committee-social a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    border-radius:50%;

    margin:0 6px;

    background:#EDF5FF;

    color:var(--primary);

    transition:.3s;

}

.committee-social a:hover{

    background:var(--primary);

    color:#fff;

}



/*=========================================================
SPEAKERS
=========================================================*/

#speakers{

    background:#fff;

}

.speaker-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

}

.speaker-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.speaker-img{

    width:100%;

    height:300px;

    object-fit:cover;

}

.speaker-body{

    padding:25px;

}

.speaker-body h5{

    color:var(--primary);

    margin-bottom:8px;

}

.speaker-body small{

    color:#888;

    font-weight:600;

}

.speaker-body p{

    margin-top:15px;

    margin-bottom:0;

    color:#666;

}



/*=========================================================
CONFERENCE STATISTICS
=========================================================*/

.counter-box{

    padding:30px 20px;

}

.counter-box h2{

    font-size:56px;

    color:#FFD34D;

    font-weight:700;

    margin-bottom:10px;

}

.counter-box p{

    color:#fff;

    font-size:18px;

    margin:0;

}



/*=========================================================
ANIMATION
=========================================================*/

.pricing-card,
.publisher-card,
.committee-card,
.speaker-card{

    animation:fadeUp .8s ease both;

}



/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

.featured-card{

    transform:none;

}

.committee-img{

    height:280px;

}

.speaker-img{

    height:260px;

}

.counter-box h2{

    font-size:46px;

}

}

@media(max-width:768px){

.pricing-price{

    font-size:34px;

}

.publisher-card{

    padding:25px;

}

.committee-img{

    height:260px;

}

.speaker-img{

    height:240px;

}

.publication-section{

    text-align:center;

}

.publication-list{

    text-align:left;

    display:inline-block;

}

}

@media(max-width:576px){

.committee-img{

    height:230px;

}

.speaker-img{

    height:220px;

}

.counter-box{

    margin-bottom:25px;

}

.counter-box h2{

    font-size:38px;

}

}

/*=========================================================
END OF PART 4

Next:
Part 5
Venue
Sponsors
Contact
Footer
Floating Buttons
Utilities
Responsive Footer
=========================================================*/
/*=========================================================
PART 5
VENUE • SPONSORS • CONTACT • FOOTER
FLOATING BUTTONS • UTILITIES • ANIMATIONS
ICETFSE-2027
=========================================================*/


/*=========================================================
VENUE
=========================================================*/

#venue{

    background:#ffffff;

}

.venue-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-md);

}

.venue-card img{

    width:100%;

    height:420px;

    object-fit:cover;

}

.venue-info{

    padding:35px;

}

.venue-info h3{

    color:var(--primary);

    margin-bottom:20px;

}

.venue-info ul{

    list-style:none;

    padding:0;

}

.venue-info li{

    padding:12px 0;

    border-bottom:1px solid #eeeeee;

}

.venue-info li:last-child{

    border-bottom:none;

}

.venue-info i{

    color:var(--success);

    margin-right:10px;

}



/*=========================================================
HYDERABAD TOURISM
=========================================================*/

.tour-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.tour-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.tour-card img{

    height:220px;

    width:100%;

    object-fit:cover;

    transition:.5s;

}

.tour-card:hover img{

    transform:scale(1.08);

}

.tour-card h5{

    color:var(--primary);

    text-align:center;

}



/*=========================================================
SPONSORS
=========================================================*/

.sponsor-logo{

    max-height:90px;

    width:auto;

    filter:grayscale(100%);

    opacity:.75;

    transition:.35s;

}

.sponsor-logo:hover{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}



/*=========================================================
CONTACT
=========================================================*/

.contact-box{

    background:#fff;

    padding:28px;

    border-left:5px solid var(--primary);

    border-radius:12px;

    box-shadow:var(--shadow-sm);

    margin-bottom:25px;

}

.contact-box h5{

    color:var(--primary);

}

.contact-box p{

    margin-bottom:8px;

}

.contact-box i{

    color:var(--accent);

    margin-right:8px;

}

iframe{

    border-radius:18px;

    box-shadow:var(--shadow-md);

}



/*=========================================================
FOOTER
=========================================================*/

.footer{

    background:#061E3A;

    color:#C9D6E3;

    padding:70px 0 25px;

}

.footer h5{

    color:#ffffff;

    margin-bottom:20px;

}

.footer p{

    color:#D7DDE4;

}

.footer hr{

    border-color:rgba(255,255,255,.12);

    margin:40px 0 20px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#C9D6E3;

    transition:.3s;

}

.footer-links a:hover{

    color:#FFD34D;

    padding-left:6px;

}



/*=========================================================
SOCIAL ICONS
=========================================================*/

.social-icons{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.social-icons a{

    width:44px;

    height:44px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--accent);

    color:#111;

    transform:translateY(-5px);

}



/*=========================================================
FLOATING BUTTONS
=========================================================*/

.floating-buttons{

    position:fixed;

    right:20px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:12px;

    z-index:9999;

}

.floating-buttons .btn{

    border-radius:50px;

    padding:12px 18px;

    font-size:15px;

    font-weight:600;

    box-shadow:var(--shadow-md);

}

#backToTop{

    width:52px;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

}



/*=========================================================
PRELOADER (OPTIONAL)
=========================================================*/

#preloader{

    position:fixed;

    inset:0;

    background:#fff;

    z-index:99999;

    display:flex;

    justify-content:center;

    align-items:center;

}

.loader{

    width:70px;

    height:70px;

    border:6px solid #E5E5E5;

    border-top:6px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}



/*=========================================================
COMMON HOVER EFFECTS
=========================================================*/

.card,
.track-card,
.highlight-card,
.committee-card,
.speaker-card,
.pricing-card,
.publisher-card,
.tour-card{

    transition:all .35s ease;

}

img{

    transition:.4s;

}



/*=========================================================
CUSTOM SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ECECEC;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#083B75;

}



/*=========================================================
TEXT SELECTION
=========================================================*/

::selection{

    background:var(--accent);

    color:#111;

}



/*=========================================================
BACKGROUNDS
=========================================================*/

.bg-gradient-primary{

    background:linear-gradient(135deg,#0B4F9C,#176FC4);

}

.bg-gradient-dark{

    background:linear-gradient(135deg,#071D37,#0B4F9C);

}



/*=========================================================
FADE-IN HELPERS
=========================================================*/

.fade-up{

    animation:fadeUp .9s ease both;

}

.fade-left{

    animation:fadeLeft .9s ease both;

}

.fade-right{

    animation:fadeRight .9s ease both;

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-50px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(50px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}



/*=========================================================
RESPONSIVE
=========================================================*/

@media (max-width:992px){

.hero-section{

    min-height:auto;

    padding:80px 0;

}

.footer{

    text-align:center;

}

.social-icons{

    justify-content:center;

}

}

@media (max-width:768px){

.section-title{

    font-size:34px;

}

.hero-section h1{

    font-size:40px;

}

.venue-card img{

    height:280px;

}

iframe{

    margin-top:30px;

    height:320px;

}

.floating-buttons{

    right:15px;

    bottom:15px;

}

}

@media (max-width:576px){

.hero-section{

    padding:70px 0;

}

.section-title{

    font-size:28px;

}

.tour-card img{

    height:180px;

}

.footer{

    padding:50px 0 20px;

}

.footer h5{

    margin-top:25px;

}

.floating-buttons .btn{

    font-size:13px;

    padding:10px 14px;

}

#backToTop{

    width:46px;

    height:46px;

}

}

/*=========================================================
END OF style.css
Version 1.0
=========================================================*/