 :root {
        --primary-dark: #111a4c;
        --primary-medium: #5e70d0;
        --primary-accent: #ee813c;
        --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
        --gradient-accent: linear-gradient(135deg, var(--primary-accent) 0%, #f5a76e 100%);
        --gradient-dark-to-medium: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    }
    
    /* Modern Hero Slider */
    .hero-slider-parallax {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider-parallax .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slider-parallax .hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider-parallax .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-slider-parallax .parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-slider-parallax .floating-element {
    position: relative;
    transition: transform 0.3s ease;
}

.hero-slider-parallax .parallax-element {
    will-change: transform;
}

.hero-slider-parallax .flag-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-slider-parallax .accent-line {
    width: 80px;
    height: 4px;
    background: #FFC107;
    margin: 20px 0;
}

    
    /* Slider controls */
    .slider-controls {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 1rem;
    }
    
    .slider-dots {
      display: flex;
      gap: 0.5rem;
    }
    
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .slider-dot.active {
      background: var(--secondary);
      transform: scale(1.2);
    }
    
    /* Flush texture at bottom */
    .hero-flush {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: url('https://www.transparenttextures.com/patterns/concrete-wall.png') repeat;
      background-size: 300px;
      z-index: 5;
      clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
      opacity: 0.3;
    }
    
    .hero-badge {
      display: inline-block;
      background: var(--secondary);
      color: var(--dark);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .hero-title {
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .hero-subtitle {
      font-size: 1rem;
      max-width: 700px;
      margin-bottom: 2.5rem;
      opacity: 0.9;
    }
    
    .hero-cta {
      display: flex;
      gap: 1rem;
    }
    
    .scroll-down {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
    }
    
    
    
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
      40% {transform: translateY(-20px);}
      60% {transform: translateY(-10px);}
    }
    

    /* Features Section */

    .section-header {
  text-align: center;
  max-width: 900px;
  margin: 20px auto 2rem;
  padding: 0 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c5282 !important; /* Dark slate */
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  background: #f6ad55; /* Tailwind blue-500 */
  border-radius: 2px;
  margin: 0.5rem auto 0;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #64748b !important; /* slate-500 */
  line-height: 1.6;
  margin-top: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-title {
  font-size: 1.75rem;
  color: #1e293b; /* slate-800 */
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

.feature-title::before {
  content: "★";
  color: #facc15; /* yellow-400 */
  margin-right: 0.6rem;
}

    

.features-section {
  padding: 4rem 2rem;
  background: #f5f9ff;
  text-align: center;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #112a4c;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: #0a58ca;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  color: #112a4c;
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feature-examples {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.feature-examples .example {
  background: #eef3fa;
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  color: #0a58ca;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.feature-link {
  margin-top: auto;
  text-decoration: none;
  color: #0a58ca;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: #06357a;
}


    /* News Section */
    .news-section {
      padding: 1rem 2rem;
      background: #fff;
    }
    
    .news-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
    }
    
    .news-card {
      background: white;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    
    .news-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    
    .news-image {
      height: 200px;
      background-size: cover;
      background-position: center;
    }
    
    .news-content {
      padding: 1.5rem;
    }
    
    .news-date {
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .news-title {
      font-size: 1.3rem;
      color: var(--dark);
      margin-bottom: 1rem;
    }
    
    .news-excerpt {
      color: #666;
      margin-bottom: 1.5rem;
    }
    
    .news-link {
      color: var(--primary);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    
       /* Newsletter Section */
    .newsletter-section {
      padding: 2rem 2rem;
      background: var(--primary-dark);
      position: relative;
      overflow: hidden;
    }

    .newsletter-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .newsletter-title {
      font-size: 2.2rem;
      color: white;
      margin-bottom: 1.5rem;
    }

    .newsletter-desc {
      color: rgba(255,255,255,0.8);
      margin-bottom: 2rem;
      font-size: 1.1rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .newsletter-form {
      display: flex;
      max-width: 500px;
      margin: 0 auto;
      background: white;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .newsletter-input {
      flex: 1;
      padding: 1rem 1.5rem;
      border: none;
      font-size: 1rem;
      outline: none;
    }

    .newsletter-btn {
      background: #f57c2b;
      color: white;
      border: none;
      padding: 1rem 2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
      background: #f57c2b;
    }

    .newsletter-pattern {
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="25" cy="25" r="3" fill="%23ffffff" fill-opacity="0.9"/><circle cx="75" cy="25" r="3" fill="%23ffffff" fill-opacity="0.9"/><circle cx="25" cy="75" r="3" fill="%23ffffff" fill-opacity="0.9"/><circle cx="75" cy="75" r="3" fill="%23ffffff" fill-opacity="0.9"/></svg>');
      background-size: 100px 100px;
      opacity: 0.3;
    }
/* Responsive adjustments */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}
    
    .newsletter-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .newsletter-title {
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
    
    .newsletter-desc {
      margin-bottom: 2rem;
      opacity: 0.9;
    }
    
    .newsletter-form {
      display: flex;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .newsletter-input {
      flex: 1;
      padding: 1rem;
      border: none;
      border-radius: 50px 0 0 50px;
      font-size: 1rem;
    }
    
    .newsletter-btn {
      background: #f57c2b;
      color: var(--dark);
      border: none;
      padding: 0 2rem;
      border-radius: 0 50px 50px 0;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .newsletter-btn:hover {
      background: #ffc720;
    }
    

    
    /* Responsive */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 3rem;
      }

    }
    
    @media (max-width: 768px) {
         .hero-slider-parallax {
    height: auto;
    min-height: 80vh;
  }
      .hero-title {
        font-size: 2.5rem !important;
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
      }
      
      .hero-cta {
        flex-direction: column;
      }
      
      .newsletter-form {
        flex-direction: column;
      }
      
      .newsletter-input {
        border-radius: 50px;
        margin-bottom: 1rem;
      }
      
      .newsletter-btn {
        border-radius: 50px;
        padding: 1rem;
      }
    }
    
    
  
    /* Modern Hero Slider */
    .hero-slider {
      position: relative;
      height: 100vh;
      min-height: 800px;
      overflow: hidden;
    }
    
    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      opacity: 0;
      transition: opacity 1s ease;
    }
    
    .hero-slide.active {
      opacity: 1;
      z-index: 1;
    }
    
    /* Overlay for better text readability */
    .hero-slide:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(26, 43, 80, 0.8), rgba(26, 43, 80, 0.8));
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    /* Slider controls */
    .slider-controls {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 1rem;
    }
    
    .slider-dots {
      display: flex;
      gap: 0.5rem;
    }
    
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .slider-dot.active {
      background: var(--secondary);
      transform: scale(1.2);
    }
    
    /* Flush texture at bottom */
    .hero-flush {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: url('https://www.transparenttextures.com/patterns/concrete-wall.png') repeat;
      background-size: 300px;
      z-index: 5;
      clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
      opacity: 0.3;
    }
    
    /* Rest of your existing styles remain the same */
    .hero-badge {
      display: inline-block;
      background: var(--secondary);
      color: var(--dark);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .hero-title {
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    

    .hero-cta {
      display: flex;
      gap: 1rem;
    } 
    
    
    .relaxer-section {
  position: relative;
  background-image: url('../images/dam 3.jpeg'); /* Replace with your actual image URL */
  background-size: cover;
  background-attachment: fixed; /* Sticky background */
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.relaxer-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  z-index: 1;
}

.relaxer-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.relaxer-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.relaxer-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.relaxer-buttons .btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 10px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.btn-primary {
  background-color: #003262; /* UCOLD blue */
  color: #fff;
}

.btn-primary:hover {
  background-color: #001d3d;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: #003262;
}

.about-float-section {
  padding: 0 20px;
  background: linear-gradient(145deg, #f0f6fb, #e4ecf3);
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.about-float-wrapper {
  max-width: 1300px;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
}

/* Main About Circle (Larger) */
.about-main-circle {
  width: 550px;
  height: 550px;
  background: #ffffff;
  border-radius: 50%;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
}

.about-main-circle h2 {
  font-size: 2.5rem;
  color: #11336c;
  margin-bottom: 20px;
}

.about-main-circle p {
  font-size: 1.1rem;
  color: #334;
  line-height: 1.7;
  margin-bottom: 15px;
}

.learn-more-btn {
  background-color: #11336c;
  color: white;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #0c274f;
}

.floating-circle {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 15px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.floating-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

/* Label overlay (initially hidden) */
.circle-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 10px;
  border-radius: 50%;
}

/* Show label on hover */
.floating-circle:hover .circle-label {
  opacity: 1;
}


/* Floating Image Circles (Larger and More) */
.floating-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}


/* Positions */
.img-circle.one {
  top: 5%;
  left: 10%;
  animation-delay: 0s;
}
.img-circle.two {
  top: 15%;
  right: 12%;
  animation-delay: 1s;
}
.img-circle.three {
  bottom: 15%;
  left: 5%;
  animation-delay: 2s;
}
.img-circle.four {
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}



@media (max-width: 768px) {
  .floating-circles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    margin-bottom: 30px;
  }

  .floating-circle {
    width: 160px;
    height: 160px;
    animation: float 4s ease-in-out infinite;
  }

  /* Hide the absolutely positioned circles in mobile view */
  .img-circle.one,
  .img-circle.two,
  .img-circle.three,
  .img-circle.four {
    position: static;
    animation: float 4s ease-in-out infinite;
  }

  .about-float-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 60px 0px;
  }

  .about-main-circle {
    width: 90%;
    height: auto;
    border-radius: 25px;
    padding: 30px 0px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 400px) {
  .hero-slider-parallax {
    height: auto;
    min-height: 80vh;
  }
  
  .hero-content{
      max
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .hero-slide .col-lg-7 {
    padding: 2rem 1rem !important;
  }
}

@media (max-width: 400px) {
  .relaxer-section {
    padding: 3rem 1rem;
  }
  
  .relaxer-content h2 {
    font-size: 1.5rem;
  }
  
  .relaxer-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .relaxer-buttons .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    margin: 0.3rem;
  }
}

@media (max-width: 400px) {
  .news-section {
    padding: 1rem 0.5rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card {
    margin-bottom: 1rem;
  }
  
  .news-title {
    font-size: 1.1rem;
  }
  
  .news-excerpt {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .about-float-section {
    padding: 2rem 0.5rem;
  }
  
  .about-main-circle {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .about-main-circle h2 {
    font-size: 1.5rem;
  }
  
  .about-main-circle p {
    font-size: 0.9rem;
  }
  
  .floating-circle {
    width: 140px;
    height: 140px;
    margin: 0.5rem;
  }
  
  .circle-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .features-section {
    padding: 2rem 0.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .feature-desc {
    font-size: 0.9rem;
  }
  
  .feature-examples .example {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}


/* Clients Section */
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.client-logo-item {
    flex: 0 0 calc(20% - 2rem);
    max-width: 180px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: scale(1); /* default */
}

.client-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.5); /* Enlarge on hover */
}

.client-logo-item img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .client-logo-item {
        flex: 0 0 calc(25% - 2rem);
    }
    
    .about-image-container,
    .why-choose-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .client-logo-item {
        flex: 0 0 calc(33.333% - 2rem);
    }
    
    .why-choose-image {
        margin-bottom: 2rem;
    }
    
    .cta-section .btn {
        margin-bottom: 10px;
    }
}

