/*=====================================================
 Temple Tourism Website
 Professional UI - Part 1
======================================================*/

/*=============================
 Google Font
=============================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/*=============================
 Root Variables
=============================*/

:root{

    --primary:#6A1B5C;
    --secondary:#F97316;
    --gold:#F4B400;
    --dark:#1E293B;
    --gray:#64748B;
    --light:#FFF8F3;
    --white:#ffffff;

    --radius:24px;

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);
    --shadow-md:0 10px 35px rgba(0,0,0,.12);
    --shadow-lg:0 20px 60px rgba(0,0,0,.18);

    --transition:.35s ease;
}

/*=============================
 Reset
=============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:#444;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:.3s;

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}

.container{

    max-width:1280px;

}

/*=============================
 Typography
=============================*/

h1,h2,h3,h4,h5{

    font-family:'Playfair Display',serif;

    color:var(--dark);

    font-weight:700;

}

.section-title{

    font-size:44px;

    margin-bottom:15px;

}

.section-subtitle{

    color:var(--gray);

    max-width:700px;

    margin:auto;

}

section{

    padding:90px 0;

}

/*=============================
 Buttons
=============================*/

.btn-theme{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    border:none;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.btn-theme:hover{

    transform:translateY(-3px);

    color:#fff;

    box-shadow:var(--shadow-md);

}

.btn-outline-theme{

    border:2px solid var(--secondary);

    color:var(--secondary);

    padding:13px 30px;

    border-radius:50px;

    font-weight:600;

}

.btn-outline-theme:hover{

    background:var(--secondary);

    color:#fff;

}

/*=============================
 Navbar
=============================*/

.custom-navbar{

    background:#fff;

    padding:16px 0;

    transition:.4s;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    z-index:999;

}

.navbar-scrolled{

    padding:10px 0;

}

.logo{

    width:58px;

}

.logo-title{

    font-size:21px;

    font-weight:700;

    color:#222;

}

.logo-subtitle{

    color:var(--gold);

    font-size:14px;

}

.nav-link{

    color:#333;

    font-weight:600;

    margin:0 12px;

    position:relative;

}

.nav-link:hover{

    color:var(--secondary);

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.dropdown-menu{

    border:none;

    border-radius:18px;

    box-shadow:var(--shadow-md);

    padding:10px;

}

.dropdown-item{

    border-radius:10px;

    padding:10px 16px;

}

.dropdown-item:hover{

    background:#FFF1E8;

    color:var(--secondary);

}

.btn-search{

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#222;

}

.language-select{

    width:120px;

    border-radius:30px;

}

/*=============================
 Hero Section
=============================*/

.hero-area{

    padding-top:120px;

    padding-bottom:60px;

}

.hero-card{

    background:linear-gradient(135deg,#5D1E63,#FF6B00);

    border-radius:30px;

    padding:45px;

    overflow:hidden;

    position:relative;

    color:#fff;

    box-shadow:var(--shadow-lg);

}

.hero-card::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    right:-120px;

    top:-120px;

    border-radius:50%;

}

.hero-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(255,255,255,.08);

    left:-70px;

    bottom:-90px;

    border-radius:50%;

}

.hero-logo{

    width:130px;

    height:130px;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    backdrop-filter:blur(12px);

}

.hero-logo img{

    width:80px;

}

.temple-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:rgba(255,255,255,.18);

    padding:8px 20px;

    border-radius:30px;

    font-weight:600;

}

.language-btn{

    background:#fff;

    color:var(--secondary);

    border:none;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

    margin-left:8px;

    transition:.3s;

}

.language-btn:hover{

    transform:translateY(-2px);

}

.guide-text{

    display:block;

    margin-top:25px;

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;

}

.hero-title{

    color:#fff;

    font-size:56px;

    margin:12px 0;

}

.hero-description{

    color:#fff;

    opacity:.9;

    font-size:18px;

    max-width:550px;

}

/*=============================
 Glass Card
=============================*/

.glass{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.2);

}

/*=============================
 Utility Classes
=============================*/

.rounded-20{

    border-radius:20px;

}

.shadow-soft{

    box-shadow:var(--shadow-md);

}

.bg-light-custom{

    background:#FFF8F3;

}

.text-primary-theme{

    color:var(--primary);

}

.text-secondary-theme{

    color:var(--secondary);

}

/*=============================
 Responsive
=============================*/

@media(max-width:991px){

.hero-card{

padding:30px;

text-align:center;

}

.hero-logo{

margin:0 auto 30px;

}

.hero-title{

font-size:38px;

}

.section-title{

font-size:34px;

}

.nav-link{

margin:10px 0;

}

.language-select{

margin-top:10px;

width:100%;

}

}

@media(max-width:576px){

.hero-title{

font-size:30px;

}

.hero-description{

font-size:15px;

}

.logo-title{

font-size:18px;

}

.section-title{

font-size:28px;

}

}
/*=====================================================
                PART 2
      FACILITY GRID + CARDS + FOOTER
======================================================*/


/*======================================
SECTION HEADER
======================================*/

.section-header{

    margin-bottom:60px;

}

.section-header h2{

    font-size:46px;

    font-weight:700;

    color:#222;

}

.section-header p{

    color:#666;

    font-size:17px;

    max-width:650px;

    margin:auto;

}

/*====================================
FACILITY SECTION
====================================*/

.facility-section{
    padding:80px 0;
    background:#f7f8fc;
}

.section-header{
    margin-bottom:50px;
}

.section-header h2{
    font-size:42px;
    font-weight:700;
    color:#5E1E63;
    margin-bottom:12px;
}

.section-header p{
    color:#6c757d;
    font-size:17px;
    max-width:650px;
    margin:auto;
}

/*==============================
Facility Card
==============================*/

/*==============================
Facility Card
==============================*/

.facility-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    transition:.35s;
    height:100%;
    min-height:120px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.facility-card:hover{
    transform:translateY(-6px);
    border-color:#F97316;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.facility-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.facility-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F6F3FF;
    color:#6B2147;
    font-size:28px;
    flex-shrink:0;
}

.facility-content h5{
    margin:0;
    color:#2D3748;
    font-size:20px;
    font-weight:700;
}

.facility-content p{
    margin-top:6px;
    margin-bottom:0;
    color:#777;
    font-size:14px;
}

.facility-arrow{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#FFF4EB;
    color:#F97316;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.facility-card:hover .facility-arrow{
    background:#F97316;
    color:#fff;
    transform:translateX(5px);
}

/*====================================
Tablet
====================================*/

@media (max-width:991px){

.section-header h2{
    font-size:34px;
}

.facility-card{
    min-height:120px;
    padding:20px;
}

.facility-icon{
    width:60px;
    height:60px;
    font-size:24px;
}

.facility-content h5{
    font-size:18px;
}

}

/*====================================
Mobile
====================================*/

@media (max-width:767px){

.facility-section{
    padding:60px 0;
}

.section-header{
    margin-bottom:35px;
}

.section-header h2{
    font-size:28px;
}

.section-header p{
    font-size:15px;
}

.facility-card{
    min-height:auto;
    padding:18px;
}

.facility-icon{
    width:55px;
    height:55px;
    font-size:22px;
    border-radius:15px;
}

.facility-content{
    margin-left:15px;
}

.facility-content h5{
    font-size:16px;
}

.facility-content p{
    font-size:13px;
}

.facility-arrow{
    width:36px;
    height:36px;
    font-size:14px;
}

}

/*====================================
Small Mobile
====================================*/

@media (max-width:575px){

.facility-card{
    padding:16px;
}

.facility-content h5{
    font-size:15px;
}

.facility-content p{
    display:none;
}

}

/*======================================
ICON
======================================*/

.facility-icon{

    width:70px;

    height: 70px;;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#562e2e;

    font-size:36px;

    margin-bottom:25px;

    transition:.35s;

}

.facility-card:hover .facility-icon{

    transform:rotate(-8deg) scale(1.1);

}


/*======================================
TITLE
======================================*/

.facility-content h4{

    font-size:24px;

    margin-bottom:10px;

    color:#222;

}

.facility-content p{

    color:#777;

    margin-bottom:25px;

    font-size:15px;

}


/*======================================
EXPLORE BUTTON
======================================*/

.facility-arrow{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#F97316;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;

}

.facility-card:hover .facility-arrow{

    transform:rotate(-45deg);

    background:#6A1B5C;

}


/*======================================
GRADIENT ICONS
======================================*/

.facility-orange{

background:linear-gradient(135deg,#ff7b00,#ff4d4d);

}

.facility-red{

background:linear-gradient(135deg,#ff416c,#ff4b2b);

}

.facility-blue{

background:linear-gradient(135deg,#00c6ff,#0072ff);

}

.facility-green{

background:linear-gradient(135deg,#38ef7d,#11998e);

}

.facility-purple{

background:linear-gradient(135deg,#8e2de2,#4a00e0);

}

.facility-gold{

background:linear-gradient(135deg,#f7971e,#ffd200);

}

.facility-pink{

background:linear-gradient(135deg,#fc466b,#3f5efb);

}

.facility-dark{

background:linear-gradient(135deg,#232526,#414345);

}



/*======================================
INFO CARD
======================================*/

.info-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-8px);

}

.info-card i{

    font-size:42px;

    color:#F97316;

    margin-bottom:18px;

}

.info-card h4{

    font-size:24px;

    margin-bottom:12px;

}

.info-card p{

    color:#666;

}


/*======================================
STATISTICS
======================================*/

.stats-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.stats-card h2{

    font-size:48px;

    color:#6A1B5C;

    margin-bottom:10px;

}

.stats-card p{

    color:#666;

}



/*======================================
FEATURE CARD
======================================*/

.feature-card{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 40px rgba(0,0,0,.08);

}

.feature-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.feature-body{

    padding:30px;

}

.feature-body h3{

    font-size:28px;

}

.feature-body p{

    color:#666;

}



/*======================================
FOOTER
======================================*/

.footer{

    background:#222;

    color:#ddd;

    padding:80px 0 20px;

}

.footer-logo{

    width:70px;

    margin-bottom:20px;

}

.footer h5{

    color:#fff;

    margin-bottom:25px;

}

.footer ul{

    padding:0;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#bbb;

}

.footer a:hover{

    color:#F97316;

}

.footer-bottom{

    margin-top:60px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}



/*======================================
SOCIAL ICONS
======================================*/

.social{

    display:flex;

    gap:15px;

}

.social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#333;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

}

.social a:hover{

    background:#F97316;

}



/*======================================
SCROLL TOP
======================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    background:#F97316;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

    cursor:pointer;

    transition:.3s;

    z-index:999;

}

.scroll-top:hover{

    background:#6A1B5C;

    transform:translateY(-6px);

}



/*======================================
ANIMATION
======================================*/

.hover-up{

    transition:.35s;

}

.hover-up:hover{

    transform:translateY(-10px);

}

.zoom{

    overflow:hidden;

}

.zoom img{

    transition:.5s;

}

.zoom:hover img{

    transform:scale(1.08);

}



/*======================================
RESPONSIVE
======================================*/

@media(max-width:991px){

.section-header h2{

font-size:34px;

}

.facility-card{

padding:22px;

}

.feature-body{

padding:25px;

}

.footer{

text-align:center;

}

.social{

justify-content:center;

}

}

@media(max-width:576px){

.facility-icon{

width:65px;

height:65px;

font-size:28px;

}

.facility-content h4{

font-size:20px;

}

.stats-card h2{

font-size:36px;

}

.section-header h2{

font-size:28px;

}

}
/*=====================================================
        PART 3 - INNER PAGES & COMPONENTS
======================================================*/

/*======================================
INNER PAGE HERO
======================================*/

.inner-banner{
    position:relative;
    padding:150px 0 90px;
    overflow:hidden;
    background:linear-gradient(135deg,#5A1F61,#F97316);
    color:#fff;
}

.inner-banner::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-120px;
    top:-120px;
}

.inner-banner::after{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    left:-80px;
    bottom:-80px;
}

.page-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 22px;
    border-radius:40px;
    backdrop-filter:blur(10px);
    margin-bottom:20px;
    font-weight:600;
}

.page-title{
    font-size:58px;
    color:#fff;
    margin-bottom:15px;
}

.page-description{
    font-size:18px;
    max-width:700px;
    opacity:.9;
}


/*======================================
STATISTICS BOX
======================================*/

.stats-box{
    background:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s;
}

.stats-box:hover{
    transform:translateY(-8px);
}

.stats-box i{
    font-size:45px;
    color:#F97316;
    margin-bottom:15px;
}

.stats-box h3{
    color:#6A1B5C;
    font-size:42px;
}

.stats-box p{
    color:#666;
}


/*======================================
PARKING TABS
======================================*/

.facility-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.facility-tabs .nav-link{
    background:#fff;
    color:#555;
    border:none;
    padding:14px 28px;
    border-radius:40px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    font-weight:600;
}

.facility-tabs .nav-link.active{
    background:#F97316;
    color:#fff;
}


/*======================================
PARKING CARD
======================================*/

.parking-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    transition:.35s;
    margin-bottom:30px;
}

.parking-card:hover{
    transform:translateY(-8px);
}

.parking-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.parking-body{
    padding:28px;
}

.parking-body h3{
    font-size:28px;
}

.parking-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin:20px 0;
}

.parking-meta span{
    background:#FFF3EB;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    color:#F97316;
}


/*======================================
FACILITY LIST
======================================*/

.facility-list{
    margin-top:20px;
}

.facility-list li{
    margin-bottom:12px;
    color:#555;
}

.facility-list i{
    color:#28A745;
    margin-right:10px;
}


/*======================================
GOOGLE MAP BUTTON
======================================*/

.map-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#F97316;
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
}

.map-btn:hover{
    background:#6A1B5C;
    color:#fff;
}


/*======================================
GALLERY
======================================*/

.gallery-card{
    border-radius:24px;
    overflow:hidden;
    position:relative;
}

.gallery-card img{
    width:100%;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.35s;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay i{
    font-size:40px;
    color:#fff;
}


/*======================================
FAQ
======================================*/

.accordion-item{
    border:none;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.accordion-button{
    font-weight:600;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:#F97316;
    color:#fff;
}

.accordion-body{
    color:#666;
    line-height:1.8;
}


/*======================================
TIMELINE
======================================*/

.timeline{
    position:relative;
    padding-left:35px;
}

.timeline::before{
    content:"";
    position:absolute;
    left:8px;
    top:0;
    bottom:0;
    width:3px;
    background:#F97316;
}

.timeline-item{
    position:relative;
    margin-bottom:35px;
}

.timeline-item::before{
    content:"";
    position:absolute;
    left:-33px;
    top:5px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#6A1B5C;
}


/*======================================
CONTACT CARD
======================================*/

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.contact-card i{
    font-size:48px;
    color:#F97316;
    margin-bottom:15px;
}


/*======================================
BREADCRUMB
======================================*/

.breadcrumb{
    background:transparent;
}

.breadcrumb-item a{
    color:#fff;
}

.breadcrumb-item.active{
    color:#FFE9C2;
}


/*======================================
LOADER
======================================*/

.loader{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader span{
    width:60px;
    height:60px;
    border-radius:50%;
    border:6px solid #eee;
    border-top-color:#F97316;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}


/*======================================
FADE ANIMATION
======================================*/

.fade-up{
    animation:fadeUp .8s ease both;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/*======================================
FLOATING ICON
======================================*/

.float{
    animation:float 3s ease-in-out infinite;
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

}


/*======================================
RESPONSIVE
======================================*/

@media(max-width:991px){

.page-title{
    font-size:40px;
}

.inner-banner{
    padding:120px 0 70px;
}

.parking-meta{
    flex-direction:column;
}

.facility-tabs{
    justify-content:flex-start;
}

}

@media(max-width:576px){

.page-title{
    font-size:32px;
}

.page-description{
    font-size:16px;
}

.stats-box{
    margin-bottom:20px;
}

.parking-card img{
    height:220px;
}

.map-btn{
    width:100%;
    justify-content:center;
}


/*==========================================
HOME HERO SECTION
==========================================*/

.hero-section{
    padding:120px 0 70px;
    background:#FFF8F2;
}

.hero-banner{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:60px;
    background:linear-gradient(135deg,#5B1E72 0%,#8C2958 45%,#FF6A00 100%);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.hero-banner::before{
    content:'';
    position:absolute;
    width:380px;
    height:380px;
    right:-140px;
    top:-120px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.hero-banner::after{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    left:-100px;
    bottom:-120px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}

.hero-banner>*{
    position:relative;
    z-index:2;
}

/* Badge */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
    backdrop-filter:blur(8px);
}

/* Title */

.hero-title{
    color:#fff;
    font-size:58px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:18px;
}

.hero-description{
    color:#f7f7f7;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:35px;
}

/* Statistics */

.hero-stats{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-stat-card{
    min-width:150px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:20px;
}

.hero-stat-card h3{
    color:#fff;
    font-size:34px;
    margin-bottom:6px;
    font-weight:700;
}

.hero-stat-card span{
    color:#fff;
    font-size:14px;
}

/* Right Card */

.hero-feature-card{
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.20);
    backdrop-filter:blur(12px);
    border-radius:24px;
    padding:35px;
    height:100%;
}

.hero-feature-icon{
    width:75px;
    height:75px;
    border-radius:18px;
    background:#fff;
    color:#FF6A00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:22px;
}

.hero-feature-card h3{
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
    font-weight:700;
}

.hero-feature-card p{
    color:#fff;
    opacity:.95;
    line-height:1.8;
    margin:0;
}

/* Language Buttons */

.language-btn{
    border:none;
    padding:8px 18px;
    border-radius:30px;
    background:#fff;
    color:#F97316;
    font-weight:600;
    margin-left:10px;
    transition:.3s;
}

.language-btn:hover{
    background:#FFE5D4;
}

/* Responsive */

@media(max-width:991px){

.hero-section{
    padding:100px 0 50px;
}

.hero-banner{
    padding:35px;
    text-align:center;
}

.hero-title{
    font-size:38px;
}

.hero-description{
    font-size:16px;
    margin:auto auto 30px;
}

.hero-stats{
    justify-content:center;
}

.hero-feature-card{
    margin-top:35px;
}

}

@media(max-width:576px){

.hero-title{
    font-size:30px;
}

.hero-stat-card{
    width:100%;
}

.hero-feature-card{
    padding:25px;
}

.hero-feature-icon{
    margin:0 auto 20px;
}

}








}
