﻿
/*** 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;
    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 {
    background: orangered !important;
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #663399;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -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-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #663399;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color:#663399 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 81px;
    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: 600;
    vertical-align: middle;
}

@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 {
   
    color: #663399;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        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;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: #fff  !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/about.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 90vh 
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/pic.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: #663399;
    
}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: orangered;
    background: #663399;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}
.counter-facts .counter h3 {
    color: #663399;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: orangered;
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: #663399;
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px; 
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: #663399 !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    top: -45px; 
    left: 50%; 
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}
/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex; 
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}  
/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #663399;
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: orangered !important;
}
/*** copyright end ***/



.nav-item.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown menu styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* directly below the link */
  left: 0;
  background-color: #fff;
  min-width: 150px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 100;
}

/* Dropdown items */
.dropdown-item {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}



.company-title-1 {
    font-size: 25px;
    font-weight: 700;
    color: #663399;
    background-color:#fff;
}




/* glowsign code*/
.feature-item-img {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-item-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-image img {
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.feature-item-img:hover .feature-image img {
    transform: scale(1.05) rotate(2deg); /* Slight zoom + rotation on hover */
}

.feature-content h5 {
    color: #0d6efd; /* Optional: Bootstrap primary color */
}

.feature-content p {
    color: #555;
}



/* acrly board */
.fancy-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.fancy-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    opacity: 0.2;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    transition: .4s;
}

.fancy-card:hover::before {
    transform: scale(1.3);
    opacity: 0.35;
}

.fancy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.icon-box {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 10px;
    transition: .3s;
}

.icon-box img {
    width: 55px;
}

.fancy-card:hover .icon-box {
    transform: translateY(-5px) scale(1.05);
}

.fancy-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 20px;
}

.fancy-card p {
    color: #000;
    font-size: 15px;
    margin-bottom: 20px;
}

.fancy-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 25px;
    background: #4f46e5;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.fancy-btn:hover {
    background: #6d28d9;
}
.icon-box i {
    font-size: 40px;
    color:#003a66e6;
}
.carousel-item video {
    width: 100%;
    height: 700px;
    object-fit: cover;
}




/* sunboard */
/* Modern Card */
.modern-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Icon Circle with Gradient */
.modern-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    transition: 0.3s;
}

.modern-card:hover .modern-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Gradient Variants */
.bg-gradient1 { background: linear-gradient(135deg, #4f46e5, #9333ea); }
.bg-gradient2 { background: linear-gradient(135deg, #f59e0b, #f43f5e); }
.bg-gradient3 { background: linear-gradient(135deg, #10b981, #14b8a6); }
.bg-gradient4 { background: linear-gradient(135deg, #ef4444, #f97316); }

.modern-card h4 {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #111;
}

.modern-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

.modern-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background: #4f46e5;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.modern-btn:hover {
    background: #9333ea;
}


/* sunpack */
.fancy-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease;
  cursor: pointer;
}

.fancy-card:hover {
  transform: translateY(-10px);
}

.fancy-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fancy-card:hover .fancy-image img {
  transform: scale(1.1);
}

.fancy-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(255,255,255,0.9);
  color: #111;
  text-align: center;
  transition: bottom 0.5s ease;
}

.fancy-card:hover .fancy-content {
  bottom: 0;
}

.fancy-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.fancy-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #333;
}

.fancy-btn {
  display: inline-block;
  padding: 8px 25px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.fancy-card:hover .fancy-btn {
  transform: translateY(0);
  opacity: 1;
}




.modern-sunpack-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.modern-sunpack-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.modern-sunpack-card:hover .card-img img {
  transform: scale(1.1);
}

/* Overlay gradient effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.modern-sunpack-card:hover .overlay {
  opacity: 1;
}

.card-info {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.modern-sunpack-card:hover .card-info {
  bottom: 0;
  opacity: 1;
}

.card-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-info p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.card-btn {
  display: inline-block;
  padding: 8px 25px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease, transform 0.3s ease;
  transform: scale(0.9);
}

.modern-sunpack-card:hover .card-btn {
  transform: scale(1);
}





/* Acp Board */
.futuristic-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.futuristic-card:hover {
  transform: rotateY(5deg) translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.futuristic-card:hover .card-img img {
  transform: scale(1.1);
}

/* Dark overlay effect */
.card-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  transition: left 0.5s ease;
}

.futuristic-card:hover .card-overlay {
  left: 0;
}

.card-content {
  position: absolute;
  bottom: 20px;
  left: -100%;
  width: 90%;
  color: #fff;
  transition: left 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.futuristic-card:hover .card-content {
  left: 20px;
  opacity: 1;
}

.card-content h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color:#fff;
}

.card-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.card-btn {
  display: inline-block;
  padding: 8px 25px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease, transform 0.3s ease;
  transform: translateX(-20px);
  opacity: 0;
}

.futuristic-card:hover .card-btn {
  transform: translateX(0);
  opacity: 1;
}



.flip-card {
  background-color: transparent;
  perspective: 1000px;
  border-radius: 15px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 350px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 15px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateX(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  transform: rotateX(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.flip-card-back h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.flip-card-back p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.flip-btn {
  padding: 8px 25px;
  background: #fff;
  color: #ee0979;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.flip-btn:hover {
  transform: scale(1.05);
  background: #ff6a00;
  color: #fff;
}
.row.g-4.justify-content-center {
    margin-bottom: 80px; /* Creates space between last card and footer */
}




/* ===============================
       CORPORATE EVENT DESIGN
================================ */

.corporate-section {
  position: relative;
  background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8));
  padding: 100px 8%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Abstract wave shapes */
.corporate-section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -50px;
  width: 480px;
  height: 480px;
  background: #ff450069 !important;
  border-radius: 45% 55% 40% 60%;
  transform: rotate(25deg);
}

.corporate-section::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -90px;
  width: 550px;
  height: 550px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 60% 40% 55% 45%;
  transform: rotate(-20deg);
}

/* Text area */
.corp-content {
  width: 52%;
  position: relative;
  z-index: 3;
  color: #fff;
}

.corp-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  color: orangered !important;
}

.corp-subtitle {
  font-size: 1.25rem;
  margin-top: 10px;
  margin-bottom: 35px;
  opacity: 0.9;
}

/* highlights list */
.corp-highlights .hl {
  font-size: 1.15rem;
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
}

.corp-highlights .hl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  
  border-radius: 50%;
}

/* Button */
.corp-btn {
  margin-top: 25px;
  display: inline-block;
  padding: 14px 35px;
  background: #663399;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.corp-btn:hover {
  background: #d2a437;
}

/* Graphic circles */
.corp-graphic {
  position: relative;
  width: 40%;
  height: 420px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.big { width: 300px; height: 300px; right: 10%; top: 10%; }
.small {  right: 40%; top: 55%; }
.tiny { width: 90px; height: 90px; right: 5%; bottom: 5%; }
/* Image on right */
.corp-image {
  width: 40%;
  height: 420px;
  position: relative;
  z-index: 3;
}

.corp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


/* Responsive */
/* ===============================
   RESPONSIVE MEDIA QUERIES
================================ */

/* Large Tablets & Small Laptops (Below 1200px) */
@media (max-width: 1200px) {
  .corp-content {
    width: 55%;
  }
  .corp-image {
    width: 38%;
  }
}

/* Tablets (Below 992px) */
@media (max-width: 992px) {
  .corporate-section {
    padding: 70px 5%;
  }
  .corp-content {
    width: 60%;
  }
  .corp-title {
    font-size: 1.8rem;
  }
  .corp-image {
    height: 350px;
  }
}

/* Tablets & Large Mobiles (Below 900px) */
@media (max-width: 900px) {
  .corporate-section {
    flex-direction: column;
    text-align: center;
    padding: 70px 6%;
  }

  .corp-content {
    width: 100%;
    margin-bottom: 35px;
  }

  .corp-image {
    width: 100%;
    height: 320px;
    display: block;
  }
}

/* Small Mobiles (Below 600px) */
@media (max-width: 600px) {
  .corp-title {
    font-size: 1.6rem;
  }
  .corp-subtitle {
    font-size: 1rem;
  }
  .corp-highlights .hl {
    font-size: 1rem;
  }
  .corp-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  .corp-image {
    height: 250px;
  }
}

/* Extra Small Mobiles (Below 420px) */
@media (max-width: 420px) {
  .corp-title {
    font-size: 1.4rem;
  }
  .corp-subtitle {
    font-size: 0.95rem;
  }
  .corp-image {
    height: 220px;
  }
}


/* Corporate Cards Section */
.corp-card-wrapper {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 4;
}

.corp-card-box {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: 0.3s ease;
}

.corp-card-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
}

.corp-card-box i {
  font-size: 40px;
  color: orangered !important;
  margin-bottom: 12px;
}

.corp-card-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: orangered !important;
}

.corp-card-box p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Responsive cards */
@media(max-width: 900px) {
  .corp-card-wrapper {
    grid-template-columns: 1fr;
  }
}




















/* ==================================
       shop
================================== */
.cta {
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.cta:hover {
    background: #ff7b47;
}

.hero-right {
    background: url('https://i.ibb.co/y0GkGJj/fashion-banner.jpg') center/cover no-repeat;
}

/* PRODUCT SECTION */
.products {
    padding: 60px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.product-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-box {
    width: 280px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    transition: 0.35s ease;
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.p-img {
    height: 220px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.product-box h3 {
    margin: 15px 0 5px;
    font-size: 1.2rem;
}

.price {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.shop-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.shop-btn:hover {
    background: #ff7b47;
}

/* BRAND STRIP */
.brand-strip {
    background: #000;
    color: #fff;
    padding: 18px;
    text-align: center;
    margin-top: 50px;
    letter-spacing: 5px;
    font-weight: 600;
}
.p-desc {
    font-size: 0.95rem;
    color: #666;
    margin: 8px 0 15px;
}

/* Tech Points */
.tech-points .tp {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-points .tp i {
    color: #0077b6;
    font-size: 18px;
}

/* Cards */
.tech-cards {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.t-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    background: #fff;
    transition: 0.3s;
}

.t-card i {
    font-size: 30px;
    color: orangered !important;
    margin-bottom: 10px;
}

.t-card h4 {
    margin-bottom: 8px;
    font-weight: 600;
}

.t-card p {
    font-size: 14px;
    color: #555;
}

.t-card:hover {
    transform: translateY(-5px);
    border-color: #005f73;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* ===========================
   RESPONSIVE MEDIA QUERIES
=========================== */

/* Large Tablets (Below 992px) */
@media (max-width: 992px) {
    .tech-cards {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .t-card {
        padding: 18px;
    }

    .t-card i {
        font-size: 26px;
    }

    .t-card h4 {
        font-size: 16px;
    }
}

/* Tablets & Large Mobiles (Below 768px) */
@media (max-width: 768px) {
    .tech-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tech-points .tp {
        font-size: 15px;
        gap: 8px;
    }

    .t-card {
        padding: 20px;
    }

    .t-card i {
        font-size: 28px;
    }
}

/* Small Mobiles (Below 576px) */
@media (max-width: 576px) {
    .tech-points .tp {
        font-size: 14px;
    }

    .t-card {
        padding: 18px;
        border-radius: 8px;
    }

    .t-card i {
        font-size: 26px;
    }

    .t-card h4 {
        font-size: 15px;
    }

    .t-card p {
        font-size: 13px;
    }
}

/* Extra Small Mobiles (Below 420px) */
@media (max-width: 420px) {
    .tech-cards {
        gap: 15px;
    }

    .t-card {
        padding: 16px;
    }

    .t-card i {
        font-size: 24px;
    }

    .t-card h4 {
        font-size: 14px;
    }

    .t-card p {
        font-size: 12px;
    }
}










/* ==================================
        FIBRICTION HERO DESIGN
================================== */

/* ================================
        MODERN TECH DESIGN
================================ */

.fib-tech {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    background: #f2f7ff;
    font-family: "Poppins", sans-serif;
    position: relative;
}

/* Subtle grid overlay */
.fib-tech::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

/* Left Image */
.tech-left {
    width: 45%;
    position: relative;
    z-index: 2;
}

.tech-left img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Right Content */
.tech-right {
    width: 48%;
    position: relative;
    z-index: 2;
}

.tech-tag {
    display: inline-block;
    padding: 5px 14px;
    background: orangered !important;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 14px;
}

.tech-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #663399;
    margin-bottom: 18px;
}

.tech-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* Points */
.tech-points .tp {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #663399;
    font-weight: 600;
}

/* Button */
.tech-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #663399;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.tech-btn:hover {
    background: #032a50;
}

/* Responsive */
@media (max-width: 900px) {
    .fib-tech {
        flex-direction: column;
        text-align: center;
        padding: 70px 6%;
    }

    .tech-left,
    .tech-right {
        width: 100%;
    }

    .tech-right {
        margin-top: 40px;
    }
}


/* ==================================
      T-shirt print
================================== */
.tshirt-showcase {
    padding: 80px 10%;
    background: #f4f4f4;
    font-family: "Poppins", sans-serif;
}

.ts-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    color: #663399;
}

.ts-sub {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
}

.ts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
}

.ts-item {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
    border: 2px solid transparent;
}

.ts-item:hover {
    transform: translateY(-8px);
    border-color: #663399;
}

.ts-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ts-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0,0,0,0.35));
    top: 0;
    left: 0;
}

.ts-info {
    padding: 25px 22px;
}

.ts-info h3 {
    font-size: 1.4rem;
    color: #663399;
    margin-bottom: 10px;
}

.ts-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 18px;
}

.ts-btn {
    display: inline-block;
    padding: 10px 22px;
    background:#663399;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.ts-btn:hover {
    background: #ff4f00;
}






/* ===============================
       EXHIBITION BANNER DESIGN
================================ */

.exhibition-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8));
    color: #fff;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

/* Left Content */
.exh-left {
    width: 50%;
    z-index: 2;
}

.exh-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.exh-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #a0e9f7;
}

.exh-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #d0f0ff;
}

/* Button */
.exh-btn {
    padding: 14px 38px;
    background: #663399;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.exh-btn:hover {
    background: #00b2a2;
}

/* Right Image */
.exh-right {
    width: 45%;
    position: relative;
}

.exh-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 255, 213, 0.3);
    transform: skewY(-4deg);
}

.exh-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewY(4deg);
}

/* Neon floating shapes */
.exhibition-banner::before,
.exhibition-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
}

.exhibition-banner::before {
    width: 400px;
    height: 400px;
    background: #00ffd5;
    top: -100px;
    right: -100px;
}

.exhibition-banner::after {
    width: 300px;
    height: 300px;
    background: #ff00ff;
    bottom: -80px;
    left: -80px;
}

/* Responsive */
@media (max-width: 992px) {
    .exhibition-banner {
        flex-direction: column;
        text-align: center;
        padding: 80px 6%;
    }

    .exh-left, .exh-right {
        width: 100%;
    }

    .exh-right {
        margin-top: 40px;
    }

    .exh-image {
        height: 350px;
        transform: skewY(0deg);
    }

    .exh-image img {
        transform: skewY(0deg);
    }
}

@media (max-width: 600px) {
    .exh-title {
        font-size: 2rem;
    }

    .exh-subtitle {
        font-size: 1.1rem;
    }

    .exh-desc {
        font-size: 0.95rem;
    }
}
/* ===============================
       CARDS BELOW BANNER
================================ */

.exh-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px 8%;
    gap: 30px;
}

.card {
    background: #ffffff;
    flex: 1 1 280px;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 2.5rem;
    color:#663399; /* Neon accent matching banner */
    margin-bottom: 18px;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: orangered !important;
    margin-bottom: 12px;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .exh-cards {
        flex-direction: column;
        align-items: center;
        margin: 50px 6%;
    }

    .card {
        width: 100%;
    }
}




/* ===============================
      PROGRAM ORGANIZATION DESIGN
================================ */

.program-section {
    padding: 80px 10%;
    background: #f9f9f9;
    font-family: "Poppins", sans-serif;
}

.prog-header {
    text-align: center;
    margin-bottom: 60px;
}

.prog-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color:#663399;
}

.prog-header p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Program Card */
.prog-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.prog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.prog-icon {
    font-size: 2.8rem;
    color: #663399; /* modern accent */
    margin-bottom: 18px;
}

.prog-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #663399;
    margin-bottom: 12px;
}

.prog-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .prog-section {
        padding: 60px 6%;
    }
    .prog-header h2 {
        font-size: 2.2rem;
    }
    .prog-card h3 {
        font-size: 1.25rem;
    }
}



/* ===============================
       WEBSITE HERO SECTION
================================ */

.website-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    background: #fff;
    color: #000;
    font-family: "Poppins", sans-serif;
}

.hero-left {
    width: 50%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: orangered !important;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.85;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.hero-features li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.hero-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: orangered !important;
    font-weight: bold;
}

.hero-btn {
    padding: 14px 38px;
    background:#663399;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #ffaa00;
}

/* Right Image */
.hero-right {
    width: 45%;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.hero-right img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .website-hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 6%;
    }
    .hero-left, .hero-right {
        width: 100%;
    }
    .hero-right {
        margin-top: 40px;
    }
}




























/* ===========================
   POLICE BOOTH PAGE STYLES
=========================== */

.pbs-intro-text {
    font-size: 18px;
    color: #000;
    margin-top: 15px;
}

.pbs-detail-text {
    font-size: 17px;
    color: #000;
}

.pbs-feature-list {
    font-size: 16px;
    line-height: 1.9;
    color: #000;
}

/* Feature boxes */
.pbs-feature-box {
    background: #f8f4ff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    color: #000;
}

.pbs-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}



/* Why Choose */
.pbs-why-choose {
    background: #663399;
    color: #fff;
}

.pbs-why-text {
    font-size: 17px;
    line-height: 1.8;
}












/* Section Background */
.cw3-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3f4f9, #ffffff);
    font-family: "Poppins", sans-serif;
}

/* Header */
.cw3-header {
    text-align: center;
    margin-bottom: 50px;
}

.cw3-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #663399;
    margin-bottom: 15px;
}

.cw3-header p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
}

/* Grid Layout */
.cw3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Glass Effect Cards */
.cw3-card {
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cw3-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Icons */
.cw3-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

/* Text */
.cw3-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #663399;
    font-weight: 700;
}

.cw3-card p {
    color: #000;
    line-height: 1.5;
}

/* Showcase Image */
.cw3-showcase {
    margin-top: 60px;
}

.cw3-showcase img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.20);
}








.hoarding-dark-section {
    padding: 80px 0;
    background:linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8));
    color: #e3e3e3;
    font-family: "Poppins", sans-serif;
}

/* Title */
.hd-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 60px;
}

.hd-header h2 {
    font-size: 2.7rem;
    font-weight: 800;
    color: orangered !important;
}

.hd-header p {
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.7;
    margin-top: 15px;
}

/* Showcase Layout */
.hd-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
}

.hd-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color:orangered !important;
    margin-bottom: 15px;
}

.hd-text p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hd-text ul {
    padding-left: 20px;
    line-height: 1.9;
    color: #ddd;
}

.hd-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0, 238, 255, 0.35);
}

/* Neon Boxes */
.hd-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.hd-box {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid orangered !important;
    border-radius: 14px;
    transition: 0.3s;
}

.hd-box:hover {
    border-color: #00eaff;
    box-shadow: 0 0 25px rgba(0, 238, 255, 0.4);
    transform: translateY(-6px);
}

.hd-box h4 {
    color:orangered !important;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.hd-box p {
    color: #ccc;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .hd-showcase {
        grid-template-columns: 1fr;
    }
}














.bus-shelter-section {
    padding: 80px 0;
    background: #f2f7fc;
    font-family: "Poppins", sans-serif;
}

/* Header */
.bs-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.bs-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #663399;
}

.bs-header p {
    font-size: 1.1rem;
    color: #000;
    margin-top: 12px;
}

/* Wrapper */
.bs-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-bottom: 70px;
}



.bs-small-imgs {
    display: flex;
    gap: 20px;
}

.bs-small-imgs img {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 75, 160, 0.15);
}

/* Content */
.bs-content h3 {
    font-size: 2rem;
    color: #663399;
    font-weight: 700;
    margin-bottom: 15px;
}

.bs-content p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bs-content ul {
    padding-left: 20px;
}

.bs-content ul li {
    margin-bottom: 8px;
    color: #000;
    line-height: 1.7;
}

/* Feature Grid */
.bs-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.bs-card {
    padding: 25px;
    background: #fff;
    border-left: 6px solid #663399;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.bs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.bs-card h4 {
    color: #ff4500;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.bs-card p {
    color: #000;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .bs-wrapper {
        grid-template-columns: 1fr;
    }
}












.cantilever-icons-section {
    padding: 100px 0;
    background: #fafafa;
    font-family: "Inter", sans-serif;
    color: #000;
}

.ci-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.ci-heading {
    text-align: center;
    margin-bottom: 80px;
}

.ci-heading h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #663399;
    text-shadow: 2px 2px 6px rgba(102, 51, 153, 0.3); /* subtle 3D shadow */
}

.ci-heading p {
    max-width: 720px;
    margin: 12px auto 0;
    font-size: 18px;
    color: #000;
    line-height: 1.7;
}

/* Features */
.ci-features {
    display: flex;
    gap: 120px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}

.ci-feature-box {
    width: 320px;
    text-align: center;
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    border: 1px solid #663399;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* soft 3D shadow */
    transition: all 0.4s ease;
    perspective: 1000px;
}

.ci-feature-box:hover {
    transform: translateY(-10px) scale(1.05); /* hover lift effect */
    box-shadow: 0 18px 35px rgba(102,51,153,0.3); /* hover glow shadow */
}

.ci-icon {
    font-size: 48px;
    color: #663399;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.ci-feature-box:hover .ci-icon {
    transform: rotateY(15deg) rotateX(10deg); /* 3D icon tilt on hover */
}

.ci-feature-box h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ff4500;
}

/* Content List */
.ci-content h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(102,51,153,0.2);
}

.ci-content ul {
    list-style: none;
    padding: 0;
    max-width: 820px;
    margin: auto;
}

.ci-content li {
    padding: 12px 240px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ci-content li i {
    color: #663399;
    font-size: 22px;
}

/* Application Icons */
.ci-applications {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.ci-app {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    text-align: center;
    padding: 30px 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.ci-app:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 18px 35px rgba(102,51,153,0.25);
    border-color: #663399;
}

.ci-app i {
    font-size: 42px;
    color: #663399;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.ci-app:hover i {
    transform: rotateY(15deg) rotateX(10deg);
}

.ci-app p {
    font-weight: 600;
    color: #ff4500;
    font-size: 16px;
}
















.autowood-section {
    padding: 100px 0;
    background: #fafafa;
    font-family: "Inter", sans-serif;
    color: #000;
}

.aw-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.aw-heading {
    text-align: center;
    margin-bottom: 80px;
}

.aw-heading h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #663399;
    text-shadow: 2px 2px 6px rgba(102,51,153,0.2);
}

.aw-heading p {
    max-width: 720px;
    margin: 12px auto 0;
    font-size: 18px;
    color: #000;
    line-height: 1.7;
}

/* Features Cards */
.aw-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.aw-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid #663399;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}

.aw-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102,51,153,0.25);
}

.aw-card-icon {
    font-size: 50px;
    color: #663399;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.aw-card:hover .aw-card-icon {
    transform: rotateY(15deg) rotateX(10deg);
}

.aw-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ff4500;
}

/* Benefits List */
.aw-benefits h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(102,51,153,0.2);
}

.aw-benefits ul {
    list-style: none;
    padding: 0;
    max-width: 820px;
    margin: auto;
}

.aw-benefits li {
    padding: 12px 240px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.aw-benefits li i {
    color: #663399;
    font-size: 22px;
}

/* Applications Grid */
.aw-applications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.aw-app {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.aw-app:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(102,51,153,0.25);
    border-color: #663399;
}

.aw-app i {
    font-size: 40px;
    color: #663399;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.aw-app:hover i {
    transform: rotateY(15deg) rotateX(10deg);
}

.aw-app p {
    font-weight: 600;
    font-size: 16px;
    color: #ff4500;
}














.mobilevan-section-new {
    padding: 100px 0;
    background: #fafafa;
    font-family: "Inter", sans-serif;
    color: #000;
}

.mv-container-new {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.mv-heading-new {
    text-align: center;
    margin-bottom: 80px;
}

.mv-heading-new h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #663399;
    text-shadow: 2px 2px 6px rgba(102,51,153,0.2);
}

.mv-heading-new p {
    max-width: 720px;
    margin: 12px auto 0;
    font-size: 18px;
    line-height: 1.7;
    color: #000;
}

/* Split Layout */
.mv-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

/* Left Features List */
.mv-features-left {
    flex: 1;
    min-width: 320px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    background: #fff;
    border-left: 5px solid #663399;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(102,51,153,0.2);
}

.feature-item i {
    font-size: 36px;
    color: #663399;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ff4500;
}

/* Right Timeline / Applications */
.mv-timeline-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    padding-left: 40px;
}

.mv-timeline-right::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #663399;
    border-radius: 2px;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.timeline-step i {
    font-size: 36px;
    color: #fff;
    background: #663399;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.timeline-step:hover i {
    transform: scale(1.2) rotate(-10deg);
}

.timeline-step span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .mv-split {
        flex-direction: column;
    }
    .mv-timeline-right {
        padding-left: 0;
    }
    .mv-timeline-right::before {
        left: -9999px;
    }
}






.label-small {
    font-size: 14px;
    color: #000;   /* soft grey */
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}