/********** Template CSS **********/
:root {
    --bs-tertiary: #797E88;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** 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;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Top Bar ***/
.top-bar {
    height: 109px;
    padding: 0 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}


/*** Nav Bar ***/
.nav-bar {
    padding: 0 90px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 11px 0;
    color: white;
    font-size: 17px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.page-header {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}


/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}


/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}


/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}


/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}


/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}


/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}



/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}



/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}



/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .95), rgba(5, 19, 17, .95)), url(../img/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}
 .category-box {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      cursor: pointer;
      text-align: center;
      overflow: hidden;
    }

    .category-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .category-box .icon {
      padding: 30px 0 10px 0;
      color: #c69d3d;
      font-size: 40px;
    }

    .category-box .title {
      background-color: #1c3555;
      color: #fff;
      font-weight: 600;
      padding: 12px 0;
      margin: 0;
    }
    

    .about-section {
      padding: 80px 0;
    }
    .section-title {
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 700;
      color: #dc3545;
      position: relative;
    }
    .section-title::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background: #dc3545;
      margin-top: 5px;
    }
    .about-section h2 {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .about-section p {
      color: #555;
    }
    .read-more-btn {
      background: #1c3555;
      color: #fff;
      font-weight: 600;
      border: none;
      padding: 10px 25px;
      border-radius: 30px;
      transition: 0.3s;
    }
    .read-more-btn:hover {
      background: #1c3555;
    }
    .feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 40px;
    }
    .feature-icon {
     padding:12px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #eee;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      margin-right: 20px;
    }
   
    .feature-item h5 {
      font-weight: 600;
      margin-bottom: 8px;
      position: relative;
    }
    .feature-item h5::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background: #dc3545;
      margin-top: 4px;
    }
     .segment-box {
      background: #fff;
      border-radius: 8px;
      padding: 40px 30px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    .segment-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .segment-icon {
      font-size: 60px;
      color: #ff4d4d;
      margin-bottom: 15px;
    }
    .segment-title {
      font-weight: 700;
      font-size: 22px;
      margin-bottom: 15px;
    }
    .segment-list {
      list-style: disc;
      padding-left: 20px;
      color: #555;
      margin-bottom: 0;
    }
    .uki{
      background: #f1e9de;
    }
    
    .brand-slider {
      overflow: hidden;
      position: relative;
      padding: 40px 0;
      background: #fff;
    }
    .brand-track {
      display: flex;
      width: calc(200px * 10);
      animation: scroll 25s linear infinite;
    }
    .brand-logo {
      width: 200px;
      flex: 0 0 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding:15px;
      transition: transform 0.3s ease;
    }
    .brand-logo img {
      width: 100%;
      max-width: 150px;
      height: auto;
      filter: grayscale(100%);
      opacity: 0.8;
      transition: all 0.3s ease;
    }
    .brand-logo:hover img {
      filter: none;
      opacity: 1;
      transform: scale(1.05);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .bras{
       background: #f1e9de; 
    }
    .buy{
        background: white;
    }
    
     /* Optional: slider height and caption styling */
    .carousel-item {
      height: 65vh; /* change as needed */
      min-height: 300px;
      background: #333;
      color: white;
    }
    .carousel-item img {
      object-fit: cover;
      height: 100%;
      width: 100%;
      opacity: 0.95;
    }
    .carousel-caption {
      background: rgba(0,0,0,0.4);
      padding: 0.8rem 1rem;
      border-radius: 0.35rem;
    }

    /* Make arrows larger on desktop */
    @media (min-width: 768px) {
      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        background-size: 3rem 3rem;
      }
    }
    
    .product-card {
      border-bottom: 1px solid #ddd;
      padding: 40px 0;
    }
    .product-image img {
      max-width: 100%;
      border-radius: 10px;
    }
    .product-details h5 {
      font-weight: 600;
    }
    .tech-title {
      color: #d00;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .btn-red {
      background-color: #1c3555;
      color: #fff;
      border: none;
    }
    .btn-red:hover {
      background-color: #cba343;
      color: #fff;
    }
    .product-section {
      padding: 60px 0;
    }
    .product-title {
      color: #e63946;
      font-weight: 600;
    }
    .btn-enquiry {
      background-color: #1c3555;
      color: #fff;
      font-weight: 500;
      border-radius: 30px;
      padding: 10px 20px;
    }
    .btn-enquiry:hover {
      background-color: #1c3555;
    }
    .tab-content {
      border: 1px solid #ddd;
      border-top: none;
      padding: 20px;
    }
    .btn-download {
      background-color: #1c3555;
      color: #fff;
      border-radius: 30px;
      font-weight: 500;
      padding: 10px 25px;
    }
    .btn-download:hover {
      background-color: #1c3555;
    }
    .product-section {
      padding: 60px 0;
    }
    .product-title {
      color: #e63946;
      font-weight: 600;
    }
    .btn-enquiry, .btn-download {
      background-color: #1c3555;
      color: #fff;
      border-radius: 5px;
      font-weight: 500;
      padding: 10px 25px;
    }
    .btn-enquiry:hover, .btn-download:hover {
      background-color: #cca444;
      color: #fff;
    }
    .tab-content {
      border: 1px solid #ddd;
      border-top: none;
      padding: 20px;
    }
    /* --- Image Zoom --- */
    .image-zoom {
      position: relative;
      overflow: hidden;
      cursor: zoom-in;
    }
    .image-zoom img {
      transition: transform 0.4s ease;
      width: 100%;
    }
    .image-zoom:hover img {
      transform: scale(1.3);
    }
    /* --- Thumbnail Gallery --- */
    .thumb-gallery img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border: 2px solid transparent;
      border-radius: 8px;
      cursor: pointer;
      transition: border 0.3s;
    }
    .thumb-gallery img.active,
    .thumb-gallery img:hover {
      border-color: #e63946;
    }
    .reso{
    height: 258px;
    object-fit: cover;}
    .redo{
    height: 358px;
    }
    .prosku{
      border-radius: 10px;
     background: #1c3555;
     color: white;
    }
    .category-section-wrap{background:#faf7f2;padding:60px 0;}
.category-card{position:relative;overflow:hidden;border-radius:18px;background:linear-gradient(135deg,#fdfcfb 0%,#e2d1f9 100%);box-shadow:0 10px 25px rgba(15,23,42,0.08);transition:all .35s ease;height:100%;}
.category-card::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at top left,rgba(255,255,255,.9),transparent 55%);opacity:.7;pointer-events:none;}
.category-card:hover{transform:translateY(-8px);box-shadow:0 16px 35px rgba(15,23,42,0.16);}
.category-inner{position:relative;z-index:2;padding:22px 20px 18px;text-align:left;}
.cat-icon-wrap{width:56px;height:56px;border-radius:50%;background:rgba(15,23,42,0.07);display:flex;align-items:center;justify-content:center;margin-bottom:14px;overflow:hidden;}
.cat-icon-wrap img{max-width:60%;max-height:60%;object-fit:contain;}
.cat-icon-wrap i{font-size:24px;}
.cat-title{font-size:17px;font-weight:700;color:#1f2933;margin-bottom:6px;line-height:1.3;}
.cat-sub{font-size:13px;letter-spacing:.04em;text-transform:uppercase;color:#6b7280;margin-bottom:14px;}
.cat-link{font-size:13px;font-weight:600;color:#0f766e;display:inline-flex;align-items:center;gap:4px;}
.cat-link i{font-size:14px;transition:transform .25s;}
.category-card:hover .cat-link i{transform:translateX(3px);}
@media (max-width:575.98px){
.cat-title{font-size:15px;}
.category-inner{padding:18px 15px 16px;}
}

body{background:#020617;color:#e5e7eb;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;}
.hero-section{min-height:100vh;padding:80px 0 100px;background:radial-gradient(circle at top,#1f3c88 0,#020617 60%);}
.hero-title{font-size:3rem;font-weight:700;color:wheat;}
.hero-subtitle{font-size:1.3rem;color:#93c5fd;font-weight:500;}
.hero-text{max-width:750px;margin:0 auto;font-size:.98rem;color:#cbd5f5;}
.hero-btn{padding:.75rem 2.5rem;font-size:1rem;border-radius:999px;font-weight:600;box-shadow:0 15px 30px rgba(37,99,235,0.5);}
.feature-card{background:radial-gradient(circle at top left,rgba(255,255,255,.18),rgba(15,23,42,.95));border-radius:1.5rem;border:1px solid rgba(148,163,184,.4);box-shadow:0 20px 40px rgba(15,23,42,.8);padding:2.2rem 1.8rem;height:100%;color:#0f172a;background-clip:padding-box;}
.feature-card h3{font-size:1.2rem;font-weight:700;margin-bottom:.75rem;color:#fff;}
.feature-card p{font-size:.95rem;margin:0;color:#fff;}
.feature-icon{width:56px;height:56px;border-radius:18px;display:inline-flex;align-items:center;justify-content:center;margin-bottom:1.1rem;font-size:1.7rem;background:linear-gradient(135deg,#2563eb,#38bdf8);color:#eff6ff;box-shadow:0 12px 25px rgba(37,99,235,.6);}
@media (max-width:767.98px){
.hero-title{font-size:2.2rem;}
.hero-section{padding-top:60px;}
}

.glossy-section{position:relative;overflow:hidden;padding-top:4rem;padding-bottom:4rem;background:radial-gradient(circle at top left,#e0f7ff 0,#f5f8ff 35%,#f8fbff 70%,#e3f0ff 100%);}
.glossy-section::before{content:"";position:absolute;inset:10% 15%;background:radial-gradient(circle at 20% 0,rgba(0,191,255,.25),transparent 55%),radial-gradient(circle at 80% 100%,rgba(0,128,255,.18),transparent 55%);opacity:.8;pointer-events:none;}
.glossy-section .section-heading{position:relative;z-index:1;letter-spacing:.03em;text-transform:uppercase;font-size:1.8rem;}
.glossy-section .section-heading::after{content:"";display:block;margin:.7rem auto 0;width:80px;height:3px;border-radius:999px;background:linear-gradient(90deg,#00c6ff,#0072ff);}
.glossy-card{position:relative;z-index:1;border-radius:1.2rem;padding:2.2rem 2rem;background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(245,250,255,.96));box-shadow:0 18px 45px rgba(0,63,130,.12);border:1px solid rgba(255,255,255,.8);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease,background .25s ease;}
.glossy-card::before{content:"";position:absolute;inset:-1px;border-radius:inherit;padding:1px;background:linear-gradient(135deg,rgba(0,198,255,.6),rgba(0,114,255,.2));-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:0;transition:opacity .25s ease;}
.glossy-card:hover{transform:translateY(-6px);box-shadow:0 24px 55px rgba(0,63,130,.18);background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(240,248,255,.98));}
.glossy-card:hover::before{opacity:1;}
.segment-icon-wrap{display:inline-flex;align-items:center;justify-content:center;width:70px;height:70px;border-radius:999px;margin-bottom:.4rem;background:radial-gradient(circle at 30% 0,#fff,#e7f4ff);box-shadow:0 10px 30px rgba(0,110,255,.25);}
.segment-icon{font-size:2rem;line-height:1;background:linear-gradient(135deg,#0072ff,#00c6ff);-webkit-background-clip:text;background-clip:text;color:transparent;}
.segment-title{font-weight:700;letter-spacing:.12em;font-size:.95rem;margin-bottom:1.2rem;text-transform:uppercase;color:#001d4a;}
.segment-list{list-style:none;padding-left:0;margin-bottom:0;}
.segment-list li{position:relative;padding-left:1.6rem;margin-bottom:.5rem;font-size:.95rem;color:#30425f;}
.segment-list li::before{content:"";position:absolute;left:0;top:.45rem;width:8px;height:8px;border-radius:999px;background:linear-gradient(135deg,#00c6ff,#0072ff);box-shadow:0 0 0 4px rgba(0,166,255,.12);}
.segment-list li:last-child{margin-bottom:0;}
@media (max-width:767.98px){
.glossy-card{padding:1.8rem 1.4rem;}
.glossy-section .section-heading{font-size:1.5rem;}
}
    