
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 95px; 
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand h1 {
  margin: 0;
  font-size: 22px;   /* adjust if needed */
  white-space: nowrap;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/

/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/

.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float img{
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}

/*** Blog Start ***/
/* Make all blog cards equal height */
.blog-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Fix image container height */
.blog-img {
  height: 220px;   /* adjust (200–250px best) */
  overflow: hidden;
}

/* Force all images same size */
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* prevents stretching */
}

.col-lg-4 {
  margin-bottom: 30px;
}

/* Make content stretch properly */
.blog-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
.footer-map-container {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.footer-map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}
.list-group-item h5 {
    white-space: nowrap;
}
/*** Blog End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/





/* =========================
   GENERAL
========================= */

body{
    font-family: 'Jost', sans-serif;
    background: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5{
    font-weight: 700;
}

p{
    line-height: 1.8;
}


/* =========================
   HERO SECTION
========================= */

.page-header{
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-header h1{
    font-size: 60px;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.page-header p{
    font-size: 20px;
    letter-spacing: 1px;
}

/* =========================
   CONTENT SECTION
========================= */

.container.py-5{
    background: #fff;
    border-radius: 20px;
    padding: 50px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.container.py-5 h1{
    color: #023047;
    margin-bottom: 20px;
}

.container.py-5 h3{
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.container.py-5 h4{
    margin-top: 30px;
    color: #fb8500;
    font-size: 28px;
    position: relative;
}

.container.py-5 h4::after{
    content: "";
    width: 70px;
    height: 4px;
    background: #ffb703;
    display: block;
    margin-top: 8px;
    border-radius: 20px;
}

.goa-title{
    color: white;
    font-size: 150px;
}

/* =========================
   LISTS
========================= */

ul{
    padding-left: 0;
}

ul li{
    list-style: none;
    background: #f1f5f9;
    margin-bottom: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    transition: 0.3s;
    font-weight: 500;
}

ul li:hover{
    transform: translateX(8px);
    background: #ffedd5;
}

/* =========================
   GALLERY
========================= */

.gallery img,
.row.g-3 img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.row.g-3 img:hover{
    transform: scale(1.05);
}

/* =========================
   FOOTER
========================= */

.footer{
    background: #023047;
}

.footer h4{
    color: #ffb703 !important;
}

.footer a{
    color: #ddd;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer a:hover{
    color: #ffb703;
    padding-left: 5px;
}

.footer .btn-square{
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer iframe{
    width: 100% !important;
    height: 250px;
    border-radius: 15px;
}

.footer-item a{
    color: black !important;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .navbar-brand h1{
        font-size: 18px;
    }

    .page-header h1{
        font-size: 42px;
    }

    .container.py-5{
        padding: 25px !important;
        margin-top: -40px;
    }

    .container.py-5 h3{
        font-size: 17px;
    }
}
/* 1. Prevent Window Overflow */
.custom-mega-menu {
    right: 0 !important; /* Forces alignment to the right edge of the button */
    left: auto !important;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 2. Compress Text and Space */
.custom-mega-menu .dropdown-item {
    font-size: 16px; /* Smaller font to save space */
    padding: 8px 12px; /* Tighter padding */
    white-space: nowrap; /* Prevents text from wrapping to a second line */
    overflow: hidden;
    text-overflow: ellipsis; /* Adds ... if text is still too long */
    color: #333;
}

/* 3. Zig-Zag / Column Visuals */
.custom-mega-menu .col-6:first-child {
    border-right: 1px solid #eee; /* Thin separator line */
}

.custom-mega-menu .dropdown-item:hover {
    background-color: #152440;
    color: #fff !important;
}

/* 4. Mobile Responsive Fix */
@media (max-width: 991px) {
    .custom-mega-menu .row {
        width: 100% !important; /* Takes full width on mobile */
    }
    .custom-mega-menu .col-6 {
        width: 100%; /* Stacks back to 1 column on mobile */
    }
}

@media(max-width:768px){

    .page-header{
        min-height: 350px;
    }

    .page-header h1{
        font-size: 34px;
    }

    .page-header p{
        font-size: 16px;
    }

    .row.g-3 img{
        height: 220px;
    }
}

/* Image hover name label */
.img-hover-wrap {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.img-hover-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: block;
    transition: transform 0.3s ease;
    margin-bottom: 0;
}

.img-hover-wrap:hover img {
    transform: scale(1.05);
}

.img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-hover-wrap:hover .img-label {
    opacity: 1;
}



/* FAQ PAGE */

.faq-banner{
    background:linear-gradient(rgba(19,53,123,0.8),
    rgba(19,53,123,0.8)),
    url('../img/carousel-2.jpg');
    background-size:cover;
    background-position:center;
    padding:120px 20px;
    text-align:center;
    color:#fff;
}

.faq-banner h1{
    font-size:50px;
    font-weight:700;
    margin-bottom:10px;
}

.faq-banner p{
    font-size:18px;
}

.faq-page{
    background:#f7f9fc;
}

.footer .footer-item a:hover,
.footer a:hover {
     color: #0d6efd !important;
     letter-spacing: 0;
     padding-left: 0;
     transform: none;
     
}

.footer-seo-link {
                color: #adb5bd !important;
                font-size: 13px !important;
                margin-bottom: 8px !important;
                display: flex !important;
                align-items: center;
                text-decoration: none;
                transition: color 0.3s ease;
            }
            .footer-seo-link:hover {
                color: #ffffff !important;
            }
            .footer-seo-link i {
                font-size: 11px;
                color: #FFC107;
            }



.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:22px 25px;
    font-size:18px;
    font-weight:600;
    color:#13357B;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
}

.faq-question i{
    color:#13357B;
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    background:#f8fbff;
}

.faq-answer p{
    padding:0 25px 25px;
    margin:0;
    color:#555;
    line-height:1.8;
}

.faq-box.active .faq-answer{
    max-height:220px;
}

.faq-box.active .faq-question i{
    transform:rotate(45deg);
}

/* Responsive */

@media(max-width:768px){

    .faq-banner h1{
        font-size:34px;
    }

    .faq-question{
        font-size:16px;
        padding:18px;
    }
}





