/* ============================================
   GLOBAL BASE
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
    /* This line is key to removing the horizontal scroll bar: */
    overflow-x: hidden; 
    background: #ffffff;
    color: #1a1a1a;
}



* {
    box-sizing: border-box;
}


:root {
    --primary-color: #014286;
    --accent-color: #fbb03b;
    --dark: #01203f;
    --text-muted: #6c757d;
    --section-padding: 50px;
}


/* ============================================
   NAVIGATION
============================================ */
.navbar {
    transition: 0.3s ease;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500 !important;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}


/* ============================================
   MOBILE DROPDOWN MENU (OPTION A)
============================================ */

.dropdown-item-custom {
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid #f2f2f2;
}

.dropdown-item-custom:last-child {
    border-bottom: none;
}

.dropdown-item-custom:hover {
    color: var(--accent-color);
}
/* HAMBURGER BUTTON */
.mobile-ham-btn {
    width: 26px;
    height: 22px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
    z-index: 5000 !important;
}

.mobile-ham-btn span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Hamburger → X */
.mobile-ham-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-ham-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-ham-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* Bootstrap override -- don't hide toggle
.navbar-toggler {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Always show hamburger on mobile 
@media (max-width: 992px) {
    #mobileMenuBtn {
        display: flex !important;
    }
}
 */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    #mobileMenuBtn {
        margin-left: auto !important;
        margin-right: 0 !important;
        display: flex !important;
    }
}


.mobile-dropdown-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    z-index: 4000;
    display: flex;
    flex-direction: column;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.mobile-dropdown-menu.open {
    max-height: 350px;
    opacity: 1;
}




/* ============================================
   BRAND ELEMENTS
============================================ */
.logo-box {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    color: var(--primary-color);
}


/* ============================================
   BUTTONS
============================================ */
.btn-primary-custom {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-primary-custom:hover {
    background: #e09d2f;
    transform: translateY(-2px);
}

.btn-secondary-custom {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}


/* ============================================
   HERO SECTION
============================================ */
.gradient-bg {
    background: linear-gradient(135deg, rgb(1, 66, 134) 0%, rgb(0, 15, 83) 100%);
}

#home {
    padding-top:140px;
    padding-bottom:20px;
    background: linear-gradient(135deg, rgb(1, 66, 134) 0%, rgb(0, 15, 83) 100%);
}

#home h1 {
    font-size: 2.8rem;
    line-height: 1.3;
}

#home p.lead {
    /*max-width: 650px;*/
    margin: 0 auto;
    font-size: 20px;
    color: #fff !important;
    opacity: 0.9 !important;
    line-height: 2rem;
}


/* ============================================
   STATS
============================================ */
.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
}


/* ============================================
   SECTION SPACING
============================================ */
.section-padding {
    padding: var(--section-padding) 0;
}

section h2.section-title {
    margin-bottom: 18px;
    color: rgb(1, 66, 134);
    font-size:35px;
    font-weight: 700;
}

section p.lead {
   margin-bottom: 32px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: rgb(55 65 81) !important;
}


/* ============================================
   FEATURE ITEMS
============================================ */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.icon-box {
    background: var(--accent-color);
    border-radius: 10px;
	padding: 8px 10px;
}

.feature-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}


/* ============================================
   IMAGES
============================================ */
.img-fluid {
    border-radius: 10px;
}

.hover-zoom {
    transition: transform 0.35s ease;
}

.hover-zoom:hover {
    transform: scale(1.03);
}


/* ============================================
   CARD HOVER
============================================ */
.card-hover {
    border-radius: 10px;
    padding: 8px;
    transition: 0.3s ease;
}

.card-hover:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}


/* ============================================
   TESTIMONIALS (EXACT MATCH TO YOUR DESIGN)
============================================ */
.testimonial-card {
    border-left: 4px solid var(--accent-color);
    background: #fff;
    border-radius: 12px;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card p {
    line-height: 1.55;
}


/* ============================================
   FORMS
============================================ */
.form-control,
.form-select,
textarea {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
}


/* ============================================
   FOOTER (MATCHING YOUR SCREENSHOT)
============================================ */
footer {
    font-size: 15px;
}

.footer-link {
    text-decoration: none;
    color: var(--primary-color);
}

.footer-link:hover {
    color: var(--accent-color);
}





.social {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social img {
    filter: brightness(0) invert(1);
}






/* 191125 ADIENCE start */

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width:80rem;
    width: 100%;
}
#tickets .feature-item.card-hover, #platform .feature-item.card-hover{
    padding: 8px 8px 8px 0;
}
#tickets .feature-item.card-hover > .icon-box, #platform .feature-item.card-hover > .icon-box{
    color: #014286;
    font-size: 18px;
    text-align: center;
}
#testimonials h2.text-primary{
   color:#014286 !important;
}
.testimonial-card .testimonial-avatar{
   color:#014286 !important;
   background: #fbb03b;
}
.testimonial-card .name{
    color: #014286;
}
section#contact p.lead{
   color:#fff !important;
}
section#contact .contact-form-box{
   max-width: 56rem;
   margin: 0 auto;
}
.footer-sec .link-head{
    color:#014286 !important;
}
.social-list .social{
    color: #fbb03b;
    text-decoration: none !important;
    font-size: 18px !important;
}
.footer-sec .footer-link{
    color:#4b5563;
}  
.footer-sec .footer-top-sec > .col-md-3{
    border-right: 1px solid #ddd;
}
.footer-sec .footer-top-sec > .col-md-3:last-child{
    border-right:none;
}
.logo-holder{
    max-width: 180px;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 5px;
    border-radius: 5px;
    background-color:#014286;
}
.logo-holder > img{
    display:block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
}
section.section-padding .feature-item p, section.section-padding .lead, section.section-padding .testimonial-card p{
    text-align: justify;
    /*text-align-last: justify;*/
}
.text-center-imp{
    text-align:center !important
}
/*#testimonials.section-padding{
   padding-bottom: 25px;
}*/
#platform.section-padding{
   background:#e7ecf1;
}
footer.footer-sec{
   padding-top:0 !important;
}
.vid-box {
    display: block;
    width: 100%;
    height: auto;
    margin:0 auto;
    border-radius:5px;
    overflow: hidden;
    background-color: #ededed;
}
.vid-box video{
    border-radius:5px;
    width: 100%;
    height: auto;
    display: block;
    /*aspect-ratio: 16 / 9;*/
}
.hidden{
   display: none;
}








/* 191125 ADIENCE end */










/* ============================================
   RESPONSIVENESS
============================================ */
@media (max-width:1199px) {
    section h2.section-title {
    font-size: 30px;
    }
}
@media (max-width: 992px) {

    #home {
        padding-top:100px;
    }

    .mobile-dropdown-menu {
        top: 75px;
    }

}
@media (max-width: 991px) {
    .display-mob{
        display: block;
    }
    section h2.section-title {
    font-size:25px;
    }

}

@media (max-width: 768px) {
    #home h1 {
        font-size: 2.2rem;
    }
    #home {
        padding-bottom:0;
    }
    #home .stat-bar > div{
        width:33.33333333%;
    }
    #home .stat-bar > div > .stat-number{
       font-size: 30px;
    }
    #home .stat-bar > div > .stat-text{
       font-size: 12px;
    }
}

@media (max-width: 767px) {
    .footer-sec .footer-top-sec > .col-md-3{
        border-right:none;
    }
}
@media (max-width: 480px) {

    .stat-number {
        font-size: 42px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .mobile-dropdown-menu {
        padding: 18px;
    }
}
@media (min-width: 992px) {
  .mobile-ham-btn {
    display: none !important;
  }
}
/* ============================================
   Smaller headings on mobile
============================================ */

@media (max-width: 480px) {
    h1, .display-5 {
        font-size: 1.7rem !important;
        line-height: 1.3;
    }
    h2.section-title {
        font-size:20px !important;
    }
    #home .stat-bar > div > .stat-number{
       font-size:25px;
    }
    #home .stat-bar > div > .stat-text{
       font-size:10px;
    }
}

@media (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }
}



/* ============================================
   GO TO TOP BUTTON
============================================ */
.go-to-top-btn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    text-decoration: none;
}

.go-to-top-btn:hover {
    background-color: #e09d2f;
    color: var(--primary-color);
    transform: translateY(-2px);
}















