/* Custom CSS for Universe Lanka */

/* CSS Variables */
:root {
    --primary-color: #02b0ff;
    --secondary-color: #32529f;
    --accent-color: #fec400;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #374151;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

/* Utility Classes */
.text-light-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.min-vh-50 {
    min-height: 50vh;
}

.whole-page{
    margin-top: 80px;
}

/*logo*/

.navbar{
    max-width: 100%;
}

.navbar-container{
    max-width: 1600px;
    margin: 0px auto;
}

.logo-img {
  max-height: 135px;
  width: auto;
  height: auto;
}

.navbar-container {
  /* You can style the outer container here if needed */
}

/* Tablet */

@media (max-width: 992px) {
  .navbar-container {
    margin-top: -100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar-container{
    margin-top: -90px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .navbar-container {
    margin-top: -106px; /* moves higher for small screens */
  }
}



/* Custom Button Styles */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Navigation Styles */
.navbar {
        z-index: 99;
    padding: 1rem 0;
    transition: var(--transition);
        POSITION: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 110px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.75rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #6c6c6c;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-image {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


 /*Hero Section*/
 
 section.banner {
  position: relative;
  display: flex;
  align-items: center;
  height: 540px;
  color: #fff;
  overflow: hidden;
  background: url('/assets/images/banner-image.webp') no-repeat center/cover;


}

/* Gradient Overlay */
section.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-text {
  position: relative;
  z-index: 2;
  padding: 50px;
  color: #fff;
  margin-left: 230px;
  backdrop-filter: blur(10px);
      max-width: 1360px;
}

.banner-text h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
  color: black;
}

.banner-text em {
  font-style: italic;
  font-size: 1.5rem;
  display: block;
  margin: 10px 0;
  color: #eafaff;
}

.banner-text p {
  font-size: 1rem;
  margin: 15px 0;
  color: black;
}

.banner-text p span {
  margin: 0 8px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent-color, #fec400);
  color: #000;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ffda47;
}

/* ------------------- */
/* RESPONSIVE STYLES   */
/* ------------------- */

/* Large tablets & small desktops */
@media (max-width: 1200px) {
  .banner-text {
    margin-left: 100px;
    padding: 40px;
  }
  .banner-text h1 {
    font-size: 2.2rem;
  }
  .banner-text p {
    font-size: 1.05rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  section.banner {
    height: 480px;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  .banner-text {
    margin-left: 0;
    max-width: 80%;
    padding: 30px;
  }
  .banner-text h1 {
    font-size: 2rem;
  }
  .banner-text p {
    font-size: 1rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  section.banner {
    height: auto;
    padding: 40px 20px;
  }
  .banner-text {
    margin-left: 0;
    max-width: 100%;
    padding: 20px;
  }
  .banner-text h1 {
    font-size: 1.8rem;
  }
  .banner-text em {
    font-size: 1.2rem;
  }
  .banner-text p {
    font-size: 0.95rem;
  }
  .btn {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .banner-text h1 {
    font-size: 1.5rem;
  }
  .banner-text em {
    font-size: 1rem;
  }
  .banner-text p {
    font-size: 0.9rem;
  }
}

 
@media (max-width: 768px) {
  .navbar-collapse {
    margin-top: -113px;
    background-color: white;
  } 
}
 
 
 

/*banner about-us*/

.about-topic{
   color:white; 
}


/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon i {
    font-size: 3rem;
}

/* Product Cards */
.product-card {
    transition: var(--transition);
    border: none;
}

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

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid #e5e7eb;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.service-icon i {
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--secondary-color) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 70%, #e5e7eb 100%);
}
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--accent-color);
}

.breadcrumb-item a {
   color: var(--accent-color);
    text-decoration: none;
}
.breadcrumb-item.active{
    color:white;
}

/* Forms */
.form-control {
    border-radius: var(--border-radius);
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-select {
    border-radius: var(--border-radius);
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Cards */
.card {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
    border: 2px solid var(--accent-color);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

/* Stats */
.stat-box {
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Contact Info */
.contact-info .card {
    transition: var(--transition);
}

.contact-info .card:hover {
    transform: translateY(-3px);
}

/* Business Hours */
.business-hours {
    font-size: 0.9rem;
}

/* Feature List */
.feature-item {
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--light-color);
    transform: translateX(5px);
}

.feature-icon i {
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.a-td-none{
    text-decoration: none;
}

.lead {
        font-size: 18px !important;
    }
    
.primary-col  {
    color: var(--secondary-color);
} 
.img-fluid{
        margin: 20px;
}    

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size:14px;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .feature-card,
    .service-card {
        margin-bottom: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}



@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}


  .value-card {
        border: 4px solid var(--secondary-color);
        border-radius: .375rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    }

/* CTA Section*/

.cta-section{
    background-color: var(--secondary-color);
}


/*contact*/

.contact-btn{
  background-color: var(--secondary-color);
    border: none;
}

.contct-num{
    color:black;
}


/*<!--Company details-->*/

 
    /* 2. STYLE THE MAIN SECTION TITLE */
    .section-title-text {
        color: var(--secondary-color);
    }

    /* 3. STYLE THE SHARED INFO CARD */
    .info-card {
        background-color: #fff;
        border-radius: 8px;
        padding: 2rem;
        border: 1px solid var(--primary-color);
        border-left: 5px solid var(--primary-color);
        height: 100%;
    }
    
    .info-card-title {
        color: var(--secondary-color);
        font-weight: 600;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--accent-color);
        display: inline-block;
    }

    /* 4. STYLE THE INFO ITEMS (ICON + LABEL + VALUE) */
    .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }
    .info-item .icon {
        color: var(--primary-color);
        font-size: 1.25rem;
        width: 35px;
        flex-shrink: 0;
        text-align: center;
    }
    .info-item .details {
        display: flex;
        flex-direction: column;
    }
    .info-item .label {
        font-weight: 600;
        color: #343a40;
        font-size: 0.9rem;
    }
    .info-item .value {
        color: var(--text-color);
        font-size: 1rem;
    }




/*Terms and conditions*/

    /* 2. STYLE THE TERM CARD */
    .term-card {
        background-color: #fff;
        border-radius: 8px;
        padding: 2.5rem 2rem;
        text-align: center;
        border: 1px solid var(--border-color);
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .term-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
    }
    
    /* 3. STYLE THE ICONS AND TEXT */
    .term-icon {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }

    .term-title {
        color: var(--secondary-color);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .term-description {
        color: var(--text-color);
        line-height: 1.6;
    }
    
     #terms {
            scroll-margin-top: 290px; /* Should be slightly more than your header's height */
        }
        
        
        
        
        
        
#unvs-lk {
  background-color:#32529f;
  color: #ffffff;
  position: relative;
}

#unvs-lk .accent-text {
  color: #008374;
}

#unvs-lk .feature-list-container {
  position: relative;
  padding-left: 50px; 
}

#unvs-lk .feature-list-container::before {
  content: '';
  position: absolute;
  left: 19px; 
  top: 20px;
  bottom: 20px;
  width: 4px;
  background-color: #0a2c5a; 
  border-radius: 2px;
}

#unvs-lk .feature-item {
  position: relative;
  transition: background-color 0.3s ease;
}

#unvs-lk .feature-icon {
    
  position: absolute;
  left: -52px;
  top: 50%;
  transform: translateY(-50%);
      color: #fec400;
  color: #fec400;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #0a2c5a;
  transition: all 0.3s ease;
}

#unvs-lk .feature-item:hover .feature-icon {
  transform: translateY(-50%) scale(1.15);
  border-color: #008374;
}

#unvs-lk .feature-item:hover {
  background-color: #0a2c5a; 
}

#unvs-lk .cta-button {
  background-color: #008374;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(0, 131, 116, 0.39);
  text-decoration: none; 
}

#unvs-lk .cta-button:hover {
  background-color: #00a896;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0, 131, 116, 0.45);
}

/*==========target-audience=============*/
#unvrs-lk-targted {
    margin: auto !important;
    width: 100% !important;
    max-width: 1400px !important;
    text-align: center !important;
    padding: 6rem 1.5rem !important; /* Increased padding */
    position: relative !important;
    overflow: hidden !important;
    background-color: #fff;
}

#unvrs-lk-targted h2 {

    font-size: 3rem;
    font-weight: 700;
    color: #32529f; /* Dark Blue */
    margin-bottom: 4rem; /* Increased spacing */
    position: relative;
    display: inline-block;
}

#unvrs-lk-targted h2::after {
    content: '';
    position: absolute;
    bottom: -15px; /* Adjusted position */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: #02b0ff; /* Light Blue */
    border-radius: 3px;
}

#unvrs-lk-targted .target-customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

#unvrs-lk-targted .feature-card {
    background-color: #fff;
    border: 2px solid #fec400; /* Yellow border */
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(50, 82, 159, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

#unvrs-lk-targted .feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(2, 176, 255, 0.2);
}

#unvrs-lk-targted .card-icon {
    font-size: 2.75rem; /* Slightly larger icon */
    color: #fff;
    background: linear-gradient(135deg, #02b0ff, #32529f);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(2, 176, 255, 0.45);
    transition: transform 0.3s ease;
}

#unvrs-lk-targted .feature-card:hover .card-icon {
    transform: rotate(-15deg);
}

#unvrs-lk-targted .feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #32529f; /* Dark Blue */
    margin: 0 0 0.75rem 0; /* Adjusted margin */
}

#unvrs-lk-targted .feature-card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 991px) {
    #unvrs-lk-targted .target-customers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    #unvrs-lk-targted h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
     #unvrs-lk-targted {
        padding: 3rem 1rem !important;
    }
    #unvrs-lk-targted h2 {
        font-size: 2.2rem;
    }
}
/*==============================*/

/*product-catogery*/
#unvs-sl-products {
   background: #e6f7ff;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    #unvs-sl-products {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

#unvs-sl-products .container {
    width: 100%;
    max-width: 1480px; 
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
     #unvs-sl-products .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

#unvs-sl-products .tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

/* Styles for the JS-powered tab buttons */
#unvs-sl-products .tab-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #32529f; /* Dark Blue Border */
    background-color: #ffffff;
    color: #32529f; /* Dark Blue Text */
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

#unvs-sl-products .tab-button:first-of-type {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#unvs-sl-products .tab-button:last-of-type {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Active state for the tab buttons */
#unvs-sl-products .tab-button.active {
    background-color: #32529f; /* Color 2: Dark Blue */
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Product Grid Layout */
#unvs-sl-products .product-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) { /* sm breakpoint */
    #unvs-sl-products .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 768px) { /* md breakpoint */
    #unvs-sl-products .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1024px) { /* lg breakpoint */
    #unvs-sl-products .product-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Card styles with the new color scheme */
#unvs-sl-products .product-card {
        background: #e5e7eb !important;

    border-radius: 0.75rem;
    border: 1px solid #dee2e6;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

#unvs-sl-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-color: #fec400; /* Color 3: Yellow on hover */
}

#unvs-sl-products .product-card img {
    /*width: 100%;*/
    /*   height: auto;*/
    /*object-fit: cover;*/
    width: 217px;
    height: 217px;
    object-fit: cover;
}

#unvs-sl-products .card-content {
    padding: 0.75rem;
}

#unvs-sl-products .card-title {
     color: #32529f; /* Dark Blue Text */
     font-weight: 600;
     font-size: 1rem;
     line-height: 1.5rem;
}

.hidden {
    display: none;
}

#unvs-sl-products .subcategory-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #32529f; /* Dark Blue Text */
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #fec400; /* Yellow border */
}

#unvs-sl-products .subcategory-title:first-child {
    margin-top: 0;
}

@media (max-width: 1064px) {
      #unvs-sl-products .product-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
      }
    }
    
        @media (max-width: 400px) {
          #unvs-sl-products .product-grid {
            display: grid;
            gap: 1.5rem;
            
            grid-template-columns: 1fr;
          }
        }
/*========================services=========================*/
  #unvs-lk-services * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#unvs-lk-services {
    
    background: #ffffff;
    padding: 80px 0;
    color: #333;
    position: relative;
}

#unvs-lk-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #32529f 0%, #02b0ff 50%, #fec400 100%);
}

#unvs-lk-services .services-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}

#unvs-lk-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#unvs-lk-services .section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #32529f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

#unvs-lk-services .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #fec400;
}

#unvs-lk-services .section-subtitle {
    font-size: 1.2em;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

#unvs-lk-services .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
}

#unvs-lk-services .service-item {
    background: #ffffff;
    border: 1px solid #e8e9ea;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

#unvs-lk-services .service-item:hover {
    box-shadow: 0 8px 30px rgba(50, 82, 159, 0.12);
    transform: translateY(-3px);
}

#unvs-lk-services .service-header {
    background: #f8f9fa;
    padding: 30px 35px 25px;
    border-bottom: 3px solid #02b0ff;
}

#unvs-lk-services .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #32529f, #02b0ff);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: white;
}

#unvs-lk-services .service-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #32529f;
    margin-bottom: 0;
    line-height: 1.3;
}

#unvs-lk-services .service-content {
    padding: 35px;
}

#unvs-lk-services .service-description {
    font-size: 1.05em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

#unvs-lk-services .company-highlight {
    color: #02b0ff;
    font-weight: 600;
}

#unvs-lk-services .support-section {
    margin-top: 25px;
}

#unvs-lk-services .support-intro {
    font-size: 1.05em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

#unvs-lk-services .support-list {
    background: #f8f9fa;
    border-left: 4px solid #fec400;
    padding: 25px 30px;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
}

#unvs-lk-services .support-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 1.6;
}

#unvs-lk-services .support-item:last-child {
    margin-bottom: 0;
}

#unvs-lk-services .support-bullet {
    width: 8px;
    height: 8px;
    background: #32529f;
    border-radius: 50%;
    margin: 8px 15px 0 0;
    flex-shrink: 0;
}

#unvs-lk-services .support-text {
    color: #444;
    flex: 1;
}

#unvs-lk-services .installation-service {
    position: relative;
}

#unvs-lk-services .installation-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 176, 255, 0.02), rgba(50, 82, 159, 0.02));
    pointer-events: none;
}

#unvs-lk-services .installation-service .service-header {
    border-bottom-color: #fec400;
}

/* Professional Typography */
#unvs-lk-services h1,
#unvs-lk-services h2,
#unvs-lk-services h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

#unvs-lk-services p {
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #unvs-lk-services .services-container {
        padding: 0 30px;
    }

    #unvs-lk-services .services-grid {
        gap: 40px;
    }

    #unvs-lk-services .section-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    #unvs-lk-services {
        padding: 60px 0;
    }

    #unvs-lk-services .services-container {
        padding: 0 25px;
    }

    #unvs-lk-services .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    #unvs-lk-services .section-header {
        margin-bottom: 45px;
    }

    #unvs-lk-services .section-title {
        font-size: 2em;
    }

    #unvs-lk-services .section-subtitle {
        font-size: 1.1em;
    }

    #unvs-lk-services .service-header {
        padding: 25px 30px 20px;
    }

    #unvs-lk-services .service-content {
        padding: 30px;
    }

    #unvs-lk-services .service-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    #unvs-lk-services {
        padding: 50px 0;
    }

    #unvs-lk-services .services-container {
        padding: 0 20px;
    }

    #unvs-lk-services .section-title {
        font-size: 1.8em;
    }

    #unvs-lk-services .section-subtitle {
        font-size: 1em;
    }

    #unvs-lk-services .service-header {
        padding: 20px 25px 18px;
    }

    #unvs-lk-services .service-content {
        padding: 25px;
    }

    #unvs-lk-services .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3em;
    }

    #unvs-lk-services .service-title {
        font-size: 1.2em;
    }

    #unvs-lk-services .service-description,
    #unvs-lk-services .support-intro {
        font-size: 1em;
    }

    #unvs-lk-services .support-list {
        padding: 20px 25px;
    }
}

/* Animation */
#unvs-lk-services .service-item {
    animation: slideInUp 0.6s ease-out;
}

#unvs-lk-services .service-item:nth-child(2) {
    animation-delay: 0.15s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*================our-trusted brands================*/

   #unvsl-product {
       background: #efefefa8;
    --light-blue: #02b0ff;
    --dark-blue: #32529f;
    --yellow: #fec400;
}

/* --- General Section Styling --- */
#unvsl-product .section-container {
    padding: 5rem 1.5rem;
    margin: 0 auto;
    max-width: 1400px;
}

#unvsl-product .section-title {
    color: var(--dark-blue);
    font-size: 2.75rem; /* 44px */
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

/* A decorative underline for a 'designed' feel */
#unvsl-product .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--yellow);
    border-radius: 2px;
}


/* --- Brands Section --- */
#unvsl-product .brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* More fluid responsive grid */
    gap: 2rem;
    margin-top: 4rem; /* More space after the title */
}

#unvsl-product .brand-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Softer, more layered shadow */
    box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 5px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

#unvsl-product .brand-item:hover {
    /* A more dynamic hover effect */
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 10px 25px rgba(0,0,0,0.08);
    border-color: transparent;
}

#unvsl-product .brand-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    /* Muted effect 
    /*opacity: 0.6;*/
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother transition */
}

#unvsl-product .brand-item:hover .brand-logo {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
    transform: scale(1.1);
}

/* --- Materials Section --- */
#unvsl-product .materials-container {
    background-color: var(--dark-blue);
    color: #ffffff;
    margin-top: 6rem;
    border-radius: 16px;
    padding: 4rem 2.5rem;
    position: relative;
    overflow: hidden; /* For pseudo-elements */
}

/* Decorative background element */
#unvsl-product .materials-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--light-blue);
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(45deg);
}

#unvsl-product .materials-title {
    color: var(--yellow);
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

#unvsl-product .materials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left; /* Left-aligning for better readability */
}

@media (min-width: 768px) {
    #unvsl-product .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

#unvsl-product .material-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--light-blue);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#unvsl-product .material-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

#unvsl-product .material-name {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

#unvsl-product .material-description {
    font-size: 1rem; /* 16px */
    line-height: 1.7; /* Increased for readability */
    color: #dbeaff;
}


/*===========================Key values===========================*/




   #unvsl-keyvalues .section-container {
      
    padding: 5rem 1.5rem;
    margin: 0 auto;
    max-width: 1400px;
}

#unvsl-keyvalues .section-title {
    color: var(--dark-blue);
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

#unvsl-keyvalues .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--yellow);
    border-radius: 2px;
}

/* --- Key Value Propositions Section --- */
#unvsl-keyvalues {
        background: #d9e6eb;
    --light-blue: #02b0ff;
    --dark-blue: #32529f;
    --yellow: #fec400;
}

/* New Staggered Grid Layout */
#unvsl-keyvalues .keyvalues-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 2rem;
    margin-top: 5rem;
}

/* Two-column grid for larger screens */
@media (min-width: 768px) {
    #unvsl-keyvalues .keyvalues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

#unvsl-keyvalues .keyvalue-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Ensure content stacks vertically */
}

#unvsl-keyvalues .keyvalue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Staggered effect for even cards on larger screens */
@media (min-width: 768px) {
    #unvsl-keyvalues .keyvalue-card:nth-child(even) {
        transform: translateY(40px);
    }
    #unvsl-keyvalues .keyvalue-card:nth-child(even):hover {
         transform: translateY(32px); /* Adjust hover effect */
    }
}

.keyvalue-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

#unvsl-keyvalues .keyvalue-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px; /* Rounded square */
    background-color: var(--dark-blue);
    color: var(--yellow);
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 24px; /* Adjust icon size */
}

#unvsl-keyvalues .keyvalue-card:hover .keyvalue-icon {
    transform: rotate(-10deg) scale(1.1);
}

#unvsl-keyvalues .keyvalue-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
}

#unvsl-keyvalues .keyvalue-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
    #unvsl-keyvalues .section-title {
        font-size: 2.25rem;
    }
    #unvsl-keyvalues .keyvalue-header {
        flex-direction: column;
        text-align: center;
    }
     #unvsl-keyvalues .keyvalue-title {
        margin-top: 1rem;
     }
     #unvsl-keyvalues .keyvalue-description {
        text-align: center;
     }
}

:root {
    --yellow: #fec400;
    --blue: #02b0ff;
    --navy: #32529f;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background */
#new-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#new-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: rotateY(180deg);
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        flex-grow: 0;
    }
}

@media screen and (max-width: 1200px){
    #company-content{
        display: none !important;
    }
    .logo-img {
        max-height: 115px;
    }
}

#new-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Container */
#new-hero .hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.me-1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    color: white;
}

#new-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Left Side - Text Content */
#new-hero .hero-text {
    space-y: 2rem;
}


.hero-text{
  backdrop-filter: blur(39px);
    padding: 50px;  
}


#new-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgb(0 102 254 / 10%);
    border: 1px solid #214ef3;
    color: #3f57b5;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

#new-hero .hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: none;
    color: rgb(6 6 6 / 90%);
}

#new-hero .hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgb(6 6 6 / 90%);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Buttons */
#new-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0rem;
}

#new-hero .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#new-hero .btn-primary {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffdd44 100%);
    color: var(--black);
    box-shadow: 0 8px 32px rgba(254, 196, 0, 0.3);
}

#new-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(254, 196, 0, 0.4);
    background: linear-gradient(135deg, #ffdd44 0%, var(--yellow) 100%);
}

#new-hero .btn-secondary {
    background: rgb(12 12 12 / 10%);
    color: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

#new-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

#new-hero .btn i {
    transition: transform 0.3s ease;
}

#new-hero .btn:hover i {
    transform: rotate(12deg);
}

/* Stats */
#new-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#new-hero .stat-item {
    text-align: center;
}

#new-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

#new-hero .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Right Side - Feature Cards */
#new-hero .hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#new-hero .feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#new-hero .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

#new-hero .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

#new-hero .feature-icon.blue {
    background: linear-gradient(135deg, var(--blue) 0%, #33c3ff 100%);
}

#new-hero .feature-icon.navy {
    background: linear-gradient(135deg, var(--navy) 0%, #4a6bb3 100%);
}

#new-hero .feature-icon.yellow {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffdd44 100%);
}

#new-hero .feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

#new-hero .feature-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #new-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    #new-hero .hero-stats {
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #new-hero .hero-container {
        padding: 0 1rem;
    }
    
    #new-hero .hero-title {
        font-size: 2.5rem;
    }
    
    #new-hero .hero-description {
        font-size: 1.1rem;
    }
    
    #new-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    #new-hero .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    #new-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #new-hero .feature-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #new-hero .hero-title {
        font-size: 2rem;
    }
    
    #new-hero .feature-card {
        padding: 1.5rem;
    }
    
    #new-hero .stat-number {
        font-size: 2rem;
    }
}





















