/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*  typography */



@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,700&display=swap");

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}
body {
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    color: #5c5c77;
}

p, .paragraph {
    font-weight: 400;
    color: #5c5c77;
    font-size: 15px;
    line-height: 1.9;
    font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #1e1e4b;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 60px;
}
@media (max-width: 575px) {
    h1, .h1 {
        font-size: 45px;
    }
}

h2, .h2 {
    font-size: 40px;
}
@media (max-width: 575px) {
    h2, .h2 {
        font-size: 22px;
    }
}

h3, .h3 {
    font-size: 25px;
}
@media (max-width: 575px) {
    h3, .h3 {
        font-size: 17px;
    }
}

h4, .h4 {
    font-size: 20px;
}
@media (max-width: 575px) {
    h4, .h4 {
        font-size: 18px;
    }
}

h5, .h5 {
    font-size: 18px;
}
@media (max-width: 575px) {
    h5, .h5 {
        font-size: 16px;
    }
}

h6, .h6 {
    font-size: 16px;
}
@media (max-width: 575px) {
    h6, .h6 {
        font-size: 14px;
    }
}

/* Button style */
.btn {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 500;
    border: 0;
    position: relative;
    z-index: 1;
    transition: 0.2s ease;
    overflow: hidden;
    white-space: nowrap;
}
.btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: transform 0.2s ease-in-out;
    transform-origin: top;
    transform: scaleY(0);
}
.btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
    outline: 0;
    box-shadow: none !important;
}
.btn:active::before, .btn:hover::before, .btn.focus::before, .btn:focus::before, .btn.active::before {
    transform: scaleY(1);
    transform-origin: bottom;
}

.btn-sm {
    font-size: 14px;
    padding: 10px 35px;
}

.btn-xs {
    font-size: 12px;
    padding: 5px 15px;
}

.btn-primary {
    color: #fff;
    background-color: #ffbc3b;
}
.btn-primary::before {
    background-color: #fff;
}
.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
    color: #ffbc3b !important;
    background-color: rgb(255, 170.5663265306, 8) !important;
    border-color: rgb(255, 170.5663265306, 8) !important;
}

.btn-outline-primary {
    color: #ffbc3b;
    background-color: transparent;
    border: 1px solid #ffbc3b;
}
.btn-outline-primary::before {
    background-color: #fff;
}
.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
    color: #ffbc3b !important;
    background-color: #ffbc3b !important;
    border-color: #ffbc3b !important;
}

.btn-light {
    color: #ffbc3b;
    background-color: #fff;
    border: 1px solid #fff;
}
.btn-light::before {
    background-color: #ffbc3b;
}
.btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
    color: #fff !important;
    background-color: #fff !important;
    border: 1px solid #fff !important;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

::-moz-selection {
    background: rgb(255, 205.4336734694, 110);
    color: #fff;
}

::selection {
    background: rgb(255, 205.4336734694, 110);
    color: #fff;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFDC11;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

ol,
ul {
    list-style-type: none;
    margin: 0px;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
button,
select {
    cursor: pointer;
    transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover {
    color: #ffbc3b;
}

a.text-primary:hover {
    color: #ffbc3b !important;
}

a.text-light:hover {
    color: #ffbc3b !important;
}

h4 {
    transition: 0.2s ease;
}

a h4:hover {
    color: #ffbc3b;
}

.slick-slide {
    outline: 0;
}

.section {
    padding-top: 40px;
    padding-bottom: 40px;
}
.section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}
.section-title {
    margin-bottom: 30px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.border-primary {
    border-color: #ededf1 !important;
}

/* overlay */
.overlay {
    position: relative;
}
.overlay::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #1a1a37;
    opacity: 0.7;

}

.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: #ffbc3b !important;
}

.bg-secondary {
    background: #1a1a37 !important;
}

.bg-gray {
    background: #f8f8f8;
}

.text-primary {
    color: #ffbc3b !important;
}

.text-color {
    color: #5c5c77;
}

.text-light {
    color: #8585a4 !important;
}

.text-lighten {
    color: #d6d6e0 !important;
}

.text-muted {
    color: #b5b5b7 !important;
}

.text-dark {
    color: #1e1e4b !important;
}

.font-secondary {
    font-family: "Montserrat", sans-serif;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pl-150 {
    padding-left: 150px;
}

.zindex-1 {
    z-index: 1;
}

@media (max-width: 991px) {
    .overflow-md-hidden {
        overflow: hidden;
    }
}

.vertical-align-middle {
    vertical-align: middle;
}

.icon-md {
    font-size: 36px;
}

/* page title */
.page-title-section {
    padding: 200px 0 80px;
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    height: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.page-title-section[data-background] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.custom-breadcrumb li.nasted {
    position: relative;
    padding-left: 25px;
}
.custom-breadcrumb li.nasted::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    font-size: 20px;
    top: 50%;
    left: -5px;
    color: #fff;
    transform: translateY(-50%);
}

/* /page title */
.list-styled {
    padding-left: 25px;
}
.list-styled li {
    position: relative;
    margin-bottom: 15px;
}
.list-styled li::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffbc3b;
    left: -25px;
    top: 5px;
}

textarea.form-control {
    height: 200px;
    padding: 20px;
}

#map_canvas {
    height: 500px;
}

.top-header {
    font-size: 12px;
    transition: transform 0.2s ease;
    transform-origin: top;
    font-weight: 600;
}
.top-header.hide {
    transform: scaleY(0);
    transform-origin: top;
}

.navigation {
    background: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
    transition: 0.2s ease;
}
@media (max-width: 991px) {
    .navigation {
        background: #1a1a37;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #1a1a37;
        max-height: calc(100vh - 80px);
    }
    .navbar-collapse.show {
        overflow-y: auto;
    }
}

.navbar-nav {
    padding-left: 50px;
    background: #ffbc3b;
}
@media (max-width: 991px) {
    .navbar-nav {
        padding-left: 0;
        background: #1a1a37;
    }
}

.nav-bg {
    background-color: #1a1a37;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}
@media (max-width: 991px) {
    .nav-item:last-child {
        margin-bottom: 20px;
    }
}
.nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 600;
}
.nav-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #fff;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    pointer-events: none;
}
@media (max-width: 991px) {
    .nav-item::before {
        opacity: 0.1;
        height: 100%;
    }
}
.nav-item:hover::before, .nav-item.active::before {
    transform: scaleY(1);
    transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 0px;
}
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 12px 20px;
    }
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0509803922);
}

.navbar .nav-item > .dropdown-toggle::after {
    border: 0;
    margin-left: 0.255em;
    vertical-align: 1px;
    content: "\e64b";
    font-family: "themify";
    font-size: 11px;
    width: auto;
}
.navbar .dropdown .dropdown-menu li {
    padding-top: 10px;
}
.navbar .dropdown .dropdown-menu li:last-child {
    padding-bottom: 15px;
}
.navbar .dropdown .dropdown-menu.dropdown-submenu {
    top: 0;
}
@media (max-width: 991px) {
    .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
        margin-top: 15px;
    }
}
.navbar .dropdown .dropdown-item .dropdown-toggle {
    display: block;
    line-height: 1.8;
}
.navbar .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.navbar .dropdown-menu {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: 5px solid #ffbc3b;
    padding: 0 15px;
    padding-left: 5px;
    top: 96px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    background: #fff;
}
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        padding-left: 15px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transform-origin: unset;
        margin: 0;
        border: 0;
        position: static;
    }
}
.navbar .dropdown-menu.show {
    visibility: hidden;
}
@media (max-width: 991px) {
    .navbar .dropdown-menu.show {
        visibility: visible;
        display: block;
    }
}
.navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
    position: relative;
    color: #1e1e4b;
    transition: 0.2s ease;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}
@media (max-width: 991px) {
    .navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
        text-align: center;
    }
}
.navbar .dropdown .dropdown .dropdown-toggle:hover, .navbar .dropdown-item:hover {
    color: #ffbc3b;
    background: transparent;
}

.hero-section {
    padding: 250px 0 290px;
}
@media (max-width: 991px) {
    .hero-section {
        padding: 250px 0 200px;
    }
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
    position: absolute;
    bottom: -123px;
    z-index: 9;
    padding: 15px;
    color: rgba(255, 255, 255, 0.5);
    border: 0;
    font-size: 30px;
    transition: all linear 0.2s;
    background: transparent;
}
.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
    outline: 0;
}
.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
    color: #ffbc3b;
}
.hero-slider .prevArrow {
    right: 60px;
}
.hero-slider .nextArrow {
    right: 0;
}
.hero-slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: -100px;
    padding-left: 0;
}
.hero-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px;
}
.hero-slider .slick-dots li.slick-active button {
    background: #ffbc3b;
}
.hero-slider .slick-dots li button {
    color: transparent;
    padding: 0;
    overflow: hidden;
    height: 10px;
    width: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 0;
    outline: 0;
}

/* banner feature */
.feature-icon {
    font-size: 50px;
    color: #ffbc3b;
    display: inline-block;
}

.feature-blocks {
    margin-top: -100px;
    padding-left: 70px;
    padding-top: 80px;
    padding-right: 30%;
}
@media (max-width: 1400px) {
    .feature-blocks {
        padding-right: 10%;
    }
}
@media (max-width: 1200px) {
    .feature-blocks {
        padding-right: 50px;
        padding-left: 50px;
        padding-top: 50px;
    }
    .feature-blocks h3 {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .feature-blocks {
        margin-top: 60px;
        padding: 50px;
    }
    .feature-blocks h3 {
        font-size: 25px;
    }
}

/* /banner feature */
/* course */
.card-btn {
    font-size: 12px;
    padding: 5px 10px;
}

.flex-basis-33 {
    flex-basis: 33.3333%;
}

.hover-shadow {
    transition: 0.3s ease;
}
.hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
    min-height: 300px;
}
.success-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .success-video .play-btn {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.play-btn {
    display: inline-block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #ffbc3b;
    color: #fff;
    font-size: 20px;
    text-align: center;
}
.play-btn i {
    line-height: 80px;
}
.play-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -2;
    transition: 0.3s ease;
    transition-delay: 0.2s;
}
.play-btn::after {
    position: absolute;
    content: "";
    height: 80%;
    width: 80%;
    transform: translate(-50%, -50%);
    background: #ffbc3b;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: 0.3s ease;
}
.play-btn:hover::before {
    height: 80%;
    width: 80%;
    transition-delay: 0s;
}
.play-btn:hover::after {
    height: 0;
    width: 0;
    transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
    position: absolute;
    background: #ffbc3b;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    padding: 10px;
    color: #fff;
    top: 0;
    left: 0;
    text-transform: uppercase;
}
.card-date span {
    font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
    width: 70%;
    bottom: 0;
    right: 0;
}

/* /teacher */
/* footer */
.newsletter {
    background: #ffbc3b;
    position: relative;
    z-index: 1;

    width: 100%;
}
.newsletter-block {
    padding-left: 50px;
}
@media (max-width: 575px) {
    .newsletter-block {
        padding-left: 15px;
    }
}

.input-wrapper {
    position: relative;
}
.input-wrapper button {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.form-control {
    height: 60px;
    background: #fff;
    border-radius: 0;
    padding-left: 25px;
}
.form-control:focus {
    border-color: #ffbc3b;
    box-shadow: none;
}

.newsletter-block .form-control {
    height: 90px;
}

.bg-footer {
    background-color: #182b45;
}

.logo-footer {
    margin-top: -20px;
    display: inline-block;
}

.footer {
    border-color: #494a43 !important;
    /* padding-top: 275px; */
}

/* /footer */
.filter-controls li {
    cursor: pointer;
    transition: 0.1s ease;
}
.filter-controls li.active {
    font-weight: 600;
    color: #ffbc3b;
}
.filter-controls li:hover {
    color: #ffbc3b;
}
/*# sourceMappingURL=style.css.map */
@media (max-width: 991px) {
    .section {
        padding-top: 30px;


    }
    .delta {
        padding-bottom: 0 !important;
    }
}


/*new css add on 22/7/2026 /*

/* ============================================================
   COMPLETE RESPONSIVE FIXES FOR HEADER, LOGO & NAVIGATION
   ============================================================ */

/* === GLOBAL RESPONSIVE FIXES === */
* {
    box-sizing: border-box;
}

/* === LOGO RESPONSIVE === */
.navbar-brand {
    padding: 5px 0;
    max-width: 100%;
}

.navbar-brand img {
    height: auto;
    max-height: 80px;  /* Changed from 70px to 80px */
    width: auto;
    max-width: 200px;  /* Changed from 180px to 200px */
    transition: all 0.3s ease;
}

/* === TOP HEADER RESPONSIVE === */
.top-header {
    font-size: 12px;
    padding: 8px 0 !important;
}

.top-header .container {
    padding-left: 15px;
    padding-right: 15px;
}

.top-header .row {
    flex-wrap: wrap;
    justify-content: center;
}

.top-header .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
}

.top-header .text-color {
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
}

.top-header .list-inline {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
}

.top-header .list-inline-item {
    margin: 0 2px !important;
}

.top-header .list-inline-item a {
    padding: 4px 8px !important;
    font-size: 14px;
}

/* === NAVIGATION RESPONSIVE === */
.navigation {
    /*background: linear-gradient(to right, transparent 50%, #ffbc3b 50%);*/
    transition: 0.2s ease;
    min-height: 80px;
}

.navigation .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid #fff;
    padding: 8px 10px;
    border-radius: 4px;
    margin-right: 5px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* Navbar */
.navbar {
    padding: 0;
    min-height: 80px;
}

.navbar-nav {
    padding-left: 50px;
    background: #ffbc3b;
}

.nav-item {
    margin: 0 10px;
}

.nav-item .nav-link {
    padding: 40px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Dropdown */
.navbar .dropdown-menu {
    top: 96px;
    padding: 0 15px;
}

/* === RESPONSIVE BREAKPOINTS === */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .navbar-brand img {
        max-height: 88px;  /* Changed to match footer */
       width: 173px;  /* Changed to match footer */
    }
    .nav-item .nav-link {
        font-size: 15px;
        padding: 40px 0;
    }

    .nav-item {
        margin: 0 12px;
    }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-brand img {
        max-height: 70px;
        max-width: 170px;
    }

    .nav-item .nav-link {
        font-size: 13px;
        padding: 35px 0;
    }

    .nav-item {
        margin: 0 8px;
    }

    .navbar-nav {
        padding-left: 30px;
    }
}

/* Tablet / iPad (768px - 991px) */
@media (max-width: 991px) {
    /* Logo */
    .navbar-brand img {
        max-height: 55px;
        max-width: 140px;
    }

    /* Navigation */
    .navigation {
        background: #1a1a37;
        min-height: 70px;
    }

    .navbar {
        min-height: 70px;
        padding: 10px 0;
    }

    .navbar-collapse {
        background: #1a1a37;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 15px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 10px;
    }

    .navbar-nav {
        padding-left: 0;
        background: transparent;
        width: 100%;
    }

    .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
        margin-bottom: 10px;
    }

    .nav-item .nav-link {
        padding: 12px 20px;
        font-size: 14px;
        text-align: left;
        display: block;
    }

    .nav-item::before {
        display: none;
    }

    /* Dropdown */
    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        padding: 0 20px !important;
        background: rgba(255,255,255,0.05) !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        display: none !important;
        margin: 0 !important;
        top: 0 !important;
    }

    .navbar .dropdown-menu.show {
        display: block !important;
    }

    .navbar .dropdown-menu li {
        padding: 0 !important;
    }

    .navbar .dropdown-menu li a {
        padding: 10px 15px !important;
        color: rgba(255,255,255,0.8) !important;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .navbar .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .navbar .dropdown-menu li a:hover {
        color: #ffbc3b !important;
        background: transparent !important;
        padding-left: 20px !important;
    }

    .navbar .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    /* Top Header */
    .top-header .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center !important;
    }

    .top-header .text-color {
        display: inline-block;
        margin-bottom: 5px;
    }

    .top-header .list-inline {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* iPad Air / iPad Pro Portrait (820px - 1024px) */
@media (min-width: 820px) and (max-width: 1024px) and (orientation: portrait) {
    .navbar-brand img {
        max-height: 60px;
        max-width: 150px;
    }

    .navigation {
        min-height: 75px;
    }

    .navbar {
        min-height: 75px;
    }
}

/* iPad Mini (768px) */
@media (min-width: 768px) and (max-width: 768px) {
    .navbar-brand img {
        max-height: 50px;
        max-width: 130px;
    }

    .navigation {
        min-height: 65px;
    }

    .navbar {
        min-height: 65px;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    /* Logo */
    .navbar-brand img {
        max-height: 45px;
        max-width: 120px;
    }

    /* Navigation */
    .navigation {
        min-height: 60px;
    }

    .navbar {
        min-height: 60px;
        padding: 8px 0;
    }

    .navbar-toggler {
        padding: 6px 8px;
    }

    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }

    .nav-item .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }

    .navbar .dropdown-menu li a {
        font-size: 12px;
        padding: 8px 15px !important;
    }

    /* Top Header */
    .top-header {
        font-size: 11px;
        padding: 6px 0 !important;
    }

    .top-header .text-color {
        font-size: 11px;
        margin-right: 5px;
    }

    .top-header .list-inline-item a {
        padding: 3px 6px !important;
        font-size: 12px;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    /* Logo */
    .navbar-brand img {
        max-height: 40px;
        max-width: 100px;
    }

    /* Navigation */
    .navigation {
        min-height: 55px;
    }

    .navbar {
        min-height: 55px;
        padding: 5px 0;
    }

    .navbar-toggler {
        padding: 4px 6px;
    }

    .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }

    .nav-item .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }

    .navbar .dropdown-menu li a {
        font-size: 11px;
        padding: 6px 12px !important;
    }

    /* Top Header */
    .top-header {
        font-size: 10px;
        padding: 4px 0 !important;
    }

    .top-header .text-color {
        font-size: 10px;
        /*display: block;*/
        margin-bottom: 3px;
    }

    .top-header .list-inline-item a {
        padding: 2px 5px !important;
        font-size: 11px;
    }

    .top-header .list-inline-item {
        margin: 0 1px !important;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .navbar-brand img {
        max-height: 35px;
        max-width: 85px;
    }

    .nav-item .nav-link {
        padding: 6px 10px;
        font-size: 11px;
    }

    .top-header .text-color {
        font-size: 9px;
    }

    .top-header .list-inline-item a {
        padding: 2px 4px !important;
        font-size: 10px;
    }
}

/* ============================================================
   NAVBAR STICKY / FIXED HEADER FIXES
   ============================================================ */
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/* Fix for header when scrolled */
.header-scrolled .navigation {
    background: #1a1a37 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-scrolled .navbar-brand img {
    max-height: 50px;
}

/* ============================================================
   NEWSLETTER RESPONSIVE
   ============================================================ */
.newsletter-block {
    padding: 30px 40px;
}

.newsletter-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.newsletter-block .form-control {
    height: 60px;
    font-size: 14px;
}

.newsletter-block .btn {
    padding: 12px 30px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .newsletter-block {
        padding: 25px 30px;
        margin-left: 0 !important;
        width: 100%;
    }

    .newsletter-block h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .newsletter-block {
        padding: 20px;
    }

    .newsletter-block h3 {
        font-size: 20px;
    }

    .newsletter-block .form-control {
        height: 50px;
        font-size: 13px;
    }

    .newsletter-block .btn {
        padding: 10px 20px;
        font-size: 13px;
        position: relative !important;
        right: 0 !important;
        top: auto !important;
        transform: none !important;
        width: 100%;
        margin-top: 10px;
        color: #ffbc3b !important;
        background-color: white !important;
        border-color: white !important;
    }

    .input-wrapper button {
        position: relative !important;
        right: 0 !important;
        top: auto !important;
        transform: none !important;
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .newsletter-block {
        padding: 15px;
    }

    .newsletter-block h3 {
        font-size: 18px;
    }

    .newsletter-block .form-control {
        height: 45px;
        font-size: 12px;
        padding-left: 15px;
    }
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */
.footer .container {
    padding-left: 15px;
    padding-right: 15px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px !important;
}

.footer .text-color {
    font-size: 14px;
}

.footer .logo-footer img {
    max-height: 80px;
    max-width: 200px;
}

@media (max-width: 991px) {
    .footer .col-lg-4 {
        margin-bottom: 30px;
    }

    .footer .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 25px;
    }

    .footer h4 {
        font-size: 16px;
        margin-bottom: 15px !important;
    }

    .footer .text-color {
        font-size: 13px;
    }

    .footer .logo-footer img {
        max-height: 60px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .footer .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer h4 {
        font-size: 15px;
    }

    .footer .text-color {
        font-size: 12px;
    }
}

/* ============================================================
   COPYRIGHT RESPONSIVE
   ============================================================ */
.copyright {
    padding: 15px 0;
}

.copyright p {
    font-size: 13px;
    margin-bottom: 0;
}

.copyright .list-inline-item a {
    padding: 4px 8px !important;
    font-size: 14px;
}

@media (max-width: 767px) {
    .copyright .col-sm-7,
    .copyright .col-sm-5 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center !important;
    }

    .copyright p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .copyright .list-inline-item a {
        padding: 3px 6px !important;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .copyright p {
        font-size: 11px;
    }
}

/* ============================================================
   HERO SLIDER DOTS FIX
   ============================================================ */
@media (max-width: 991px) {
    .hero-slider .slick-dots {
        position: relative !important;
        bottom: 0 !important;
        margin-top: 20px !important;
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        left: 0 !important;
        padding-left: 0 !important;
    }

    .hero-slider .slick-dots li {
        margin: 0 5px !important;
    }

    .hero-slider .slick-dots li button {
        height: 8px !important;
        width: 8px !important;
    }

    .hero-slider .prevArrow,
    .hero-slider .nextArrow {
        bottom: -50px !important;
        padding: 10px !important;
        font-size: 20px !important;
    }

    .hero-slider .prevArrow {
        right: 50px !important;
    }

    .hero-slider .nextArrow {
        right: 0 !important;
    }
}

@media (max-width: 575px) {
    .hero-slider .prevArrow,
    .hero-slider .nextArrow {
        bottom: -40px !important;
        font-size: 16px !important;
        padding: 8px !important;
    }

    .hero-slider .prevArrow {
        right: 40px !important;
    }
}

/* ============================================================
   PAGE TITLE SECTION RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .page-title-section {
        padding: 150px 0 50px;
    }
    .page-title-section .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .page-title-section {
        padding: 120px 0 40px;
    }
}

@media (max-width: 480px) {
    .page-title-section {
        padding: 100px 0 30px;
    }
}

/* ============================================================
   FOOTER - COMPLETE WITH LOGO MORE LEFT
   ============================================================ */

/* Footer Section */
.footer {
    padding: 40px 0 20px;
}

.footer .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

.footer .row {
    margin-left: 0;
    margin-right: 0;
}

/* Left Column - Logo - Move more left */
.footer .col-lg-3 {
    padding-left: 0;
    padding-right: 15px;
    flex: 0 0 25%;
    max-width: 25%;
}

/* Right Column */
.footer .col-lg-9 {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 75%;
    max-width: 75%;
}

.footer .col-lg-9 .row {
    margin-left: -15px;
    margin-right: -15px;
}

.footer .col-lg-9 .col-lg-3 {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 25%;
    max-width: 25%;
}

/* Footer Logo */
.logo-footer {
    display: flex;
    align-items: center;
    padding: 0;
    max-width: 100%;
    margin-bottom: 10px;
    margin-top: 0;
    margin-left: 0;
}

.logo-footer .footer-logo-img {
    height: auto;
    max-height: 80px;  /* Same as header */
    width: auto;
    max-width: 200px;  /* Same as header */
}
/* Footer Contact Info */
.footer-contact-info {
    margin-top: 10px;
    padding: 0;
    padding-left: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    padding: 4px 0;
    color: #b5b5b7;
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact-info li i {
    color: #ffbc3b;
    width: 25px;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-info li span {
    color: #b5b5b7;
}

/* Footer Headings */
.footer-heading {
    font-size: 15px;
    margin-bottom: 15px !important;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: #ffbc3b;
}

/* Footer Links */
.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 4px 0;
    list-style: none;
}

.footer-links li a {
    color: #b5b5b7 !important;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #ffbc3b !important;
    padding-left: 5px;
    transform: translateX(3px);
}

/* Footer Background */
.bg-footer {
    background-color: #182b45;
}

/* Copyright */
.copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 15px 0;
}

.copyright .container {
    padding-left: 15px;
    padding-right: 15px;
}

.copyright .row {
    margin-left: 0;
    margin-right: 0;
}

.copyright-text {
    font-size: 13px;
    color: #b5b5b7;
    margin-bottom: 0;
}

.copyright-text a {
    color: #b5b5b7;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: #ffbc3b;
}

/* Social Icons */
.social-icons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.social-icons .list-inline-item {
    margin: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 188, 59, 0.15);  /* Changed - light background with brand color */
    color: #ffbc3b !important;  /* Changed - brand color for icons */
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;

}

.social-link:hover {
    background: #ffbc3b;  /* Changed - solid brand color on hover */
    color: #fff !important;  /* Changed - white icon on hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 188, 59, 0.4);
}

/* ============================================================
   DESKTOP - LOGO MORE LEFT
   ============================================================ */

@media (min-width: 992px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer .col-lg-3 {
        padding-left: 0 !important;
        padding-right: 15px;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .footer .col-lg-9 {
        padding-left: 15px;
        padding-right: 15px;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .footer .col-lg-9 .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .footer .col-lg-9 .col-lg-3 {
        padding-left: 15px;
        padding-right: 15px;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .logo-footer .footer-logo-img {
        max-height: 70px !important;
        max-width: 170px !important;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 18px !important;
    }

    .footer-links li a {
        font-size: 13px;
    }
}

@media (min-width: 1200px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer .col-lg-3 {
        padding-left: 0 !important;
        padding-right: 30px;
    }

    .logo-footer .footer-logo-img {
        max-height: 88px !important;
        width: 215px !important;
    }

    .footer-heading {
        font-size: 16px;
    }

    .footer-links li a {
        font-size: 14px;
    }

    .footer-contact-info li {
        font-size: 14px;
    }
}

/* ============================================================
   TABLET & MOBILE
   ============================================================ */

@media (max-width: 991px) {
    .footer {
        padding: 40px 0 10px;
    }

    .footer .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        /*padding-left: 15px;*/
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .footer .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer .col-lg-9 .col-md-3 {
        margin-bottom: 25px;
        /*flex: 0 0 50%;*/
        max-width: 50%;
    }

    .logo-footer .footer-logo-img {
        max-height: 65px;
        max-width: 160px;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 12px !important;
    }

    .footer-heading::after {
        width: 20px;
    }

    .footer-contact-info li {
        font-size: 13px;
        padding: 4px 0;
    }

    .footer-links li a {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 30px 0 10px;
    }

    .footer .col-lg-9 .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }

    .logo-footer .footer-logo-img {
        max-height: 55px;
        max-width: 140px;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 10px !important;
    }

    .footer-contact-info li {
        font-size: 12px;
    }

    .footer-links li a {
        font-size: 12px;
    }

    .footer-links li {
        padding: 3px 0;
    }

    .copyright .col-md-6 {
        text-align: center !important;
    }

    .copyright-text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
        color: #ffbc3b;
    }
}

@media (max-width: 480px) {
    .footer .col-lg-9 .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
    }

    .logo-footer .footer-logo-img {
        max-height: 45px;
        max-width: 120px;
    }

    .footer-heading {
        font-size: 13px;
    }

    .footer-contact-info li {
        font-size: 11px;
        padding: 3px 0;
    }

    .footer-contact-info li i {
        width: 20px;
        font-size: 12px;
    }

    .footer-links li a {
        font-size: 11px;
    }

    .copyright-text {
        font-size: 11px;
    }

    .social-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .footer .col-lg-9 .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .logo-footer .footer-logo-img {
        max-height: 38px;
        max-width: 100px;
    }

    .footer-heading {
        font-size: 13px;
    }

    .footer-contact-info li {
        font-size: 10px;
    }

    .footer-links li a {
        font-size: 10px;
    }
}
@media (max-width: 575px) {
    .footer .logo-footer img {
        max-height: 40px;
        max-width: 100px;
    }
}

@media (min-width: 768px) and (max-width: 768px) {
    .footer .logo-footer img {
        max-height: 50px;
        max-width: 130px;
    }
}

@media (min-width: 820px) and (max-width: 1024px) and (orientation: portrait) {
    .footer .logo-footer img  {
    max-height: 60px;
    max-width: 150px;
}
}
/* ============================================================
   COPYRIGHT - COMPLETE FIX
   ============================================================ */

.copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 15px 0;
    background-color: #182b45;
}

.copyright .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

.copyright .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
}

/* Left Column - Copyright Text */
.copyright .col-md-6:first-child {
    flex: 1;
    text-align: left;
    padding-left: 0;
    padding-right: 15px;
}

/* Right Column - Social Icons */
.copyright .col-md-6:last-child {
    flex: 0 0 auto;
    text-align: right;
    padding-left: 15px;
    padding-right: 0;
}

.copyright-text {
    font-size: 13px;
    color: #b5b5b7;
    margin-bottom: 0;
}

.copyright-text a {
    color: #b5b5b7;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: #ffbc3b;
}

/* Social Icons */
.social-icons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.social-icons .list-inline-item {
    margin: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 188, 59, 0.12);
    color: #ffbc3b !important;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 188, 59, 0.2);
}

.social-link:hover {
    background: #ffbc3b;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 188, 59, 0.4);
}

/* ============================================================
   RESPONSIVE - TABLETS & MOBILE
   ============================================================ */

/* Tablet and below */
@media (max-width: 991px) {
    .copyright .row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center !important;
    }

    .copyright .col-md-6:first-child,
    .copyright .col-md-6:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center !important;
        padding: 0;
    }

    .copyright .col-md-6:first-child {
        margin-bottom: 8px;
    }

    .copyright-text {
        text-align: center !important;
    }

    .social-icons {
        justify-content: center !important;
    }
}

/* iPad Air / iPad Pro Portrait */
@media (min-width: 820px) and (max-width: 1024px) and (orientation: portrait) {
    .copyright .row {
        flex-direction: column;
        text-align: center !important;
    }

    .copyright .col-md-6:first-child,
    .copyright .col-md-6:last-child {
        text-align: center !important;
    }

    .copyright-text {
        text-align: center !important;
        margin-bottom: 8px;
    }

    .social-icons {
        justify-content: center !important;
    }
}

/* iPad Mini */
@media (min-width: 768px) and (max-width: 768px) {
    .copyright-text {
        font-size: 12px;
    }
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .copyright-text {
        font-size: 12px;
    }
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .copyright-text {
        font-size: 11px;
    }
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .copyright-text {
        font-size: 10px;
    }
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    .social-icons {
        gap: 3px;
    }
}
