
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}


#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--color-bg) 0%, #1a0a0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#preloader.animate {
  animation: fadeOut 1s ease 2s forwards;
}

#preloader h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 8px;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: slideUp 0.8s ease-out;
}

#preloader p {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-top: 1rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}


.carousel {
   display: flex;
  align-items: center;      
  justify-content: center; 
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--color-bg);
}

.carousel .list {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel .item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.carousel .item.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
}

.carousel .item.active .carousel-bg-image {
  animation: zoomIn 12s ease-out forwards;
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.carousel .content {
  position: relative;
  z-index: 2;
  top: 25%;
  max-width: 800px;
  transform: translateY(-50%);
  padding: 0 5%;
  opacity: 0;
}

.carousel .item.active .content {
  animation: contentUp 1s ease-out 0.3s forwards;
}

@keyframes contentUp {
  to { opacity: 1; transform: translateY(0); }
}

.carousel .content p:first-child {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 3px;
  position: relative;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.carousel .title {
  font-size: clamp(1.5rem, 8vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.carousel .des {
  font-size: 1.1rem;
  color: whitesmoke;
  margin-bottom: 2rem;
  max-width: 600px;
}

.carousel .btn a {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: var(--animation-smooth);
  box-shadow: 0 10px 30px rgba(228, 54, 54, 0.4);
}

.carousel .btn a:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-primary);
}


.arrows {
  position: absolute;
  bottom: 10%;
  right: 5%;
  z-index: 10;
  display: flex;
  gap: 1rem;
}

.arrows button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--animation-smooth);
}

.arrows button:hover {
  background: var(--color-primary);
  transform: scale(1.1);
  border-color: var(--color-primary);
}



.who-we-are-section {
  background: var(--color-bg-2);
  border-radius: 30px;
  box-shadow: inset 0 0 40px rgba(255,0,0,0.15);
  padding: 60px 5%;
  display: flex;
  justify-content: center;
}

.who-we-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}


.who-left {
  flex: 1 1 450px;
  position: relative;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 450px;
}

.img-card {
  position: absolute;
  width: 60%;
  height: 60%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-1 { top: 0; left: 0; z-index: 3; transform: rotate(-5deg); }
.img-2 { top: 20%; left: 20%; z-index: 2; transform: rotate(3deg); }
.img-3 { top: 40%; left: 10%; z-index: 1; transform: rotate(-2deg); }

.img-card:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: var(--glow-primary);
}


.overlay-card {
  position: absolute;
  top: 5%;
  right: 10%;
  background: var(--color-primary);
  padding: 1rem 2rem;
  border-radius: 20px;
  color: white;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--glow-primary);
  z-index: 4;
  transition: transform 0.4s ease;
}

.overlay-card:hover {
  transform: translateY(-5px);
}


.right-section {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.subheading {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.right-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}

.description {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}


.right-points-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.right-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--color-bg-2);
  border-radius: 10px;
  font-size: 0.9rem;
  border-left: 3px solid var(--color-primary);
  transition: transform 0.3s ease, background 0.3s ease;
}

.right-points P{
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.right-point:hover {
  background: var(--color-bg-soft);
  transform: translateX(5px);
}


.check-mark {
  filter: brightness(0) saturate(100%)
          invert(32%)
          sepia(94%)
          saturate(2550%)
          hue-rotate(350deg)
          brightness(95%)
          contrast(95%);
}

.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glow-primary);
}

.check-circle i {
  font-size: 12px;
  color: #fff;
}



.right-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.who-cards {
  flex: 1 1 150px;
  background: var(--color-bg-alt);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-cards:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-primary);
}


#btn {
    display: flex;
    padding: 12px 35px;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    position: relative;
    left: 50%;
    margin-top: 1rem;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 25px;
    border: 2px solid var(--color-primary);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(228, 54, 54, 0.4);
    width: max-content; 
    min-width: 120px;   
}




#btn:hover {
  background: transparent;           
  color: var(--color-primary);
  box-shadow: 0 12px 25px rgba(228, 54, 54, 0.6);
  border-color: var(--color-primary);
}


.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 80px 5%;
  background: var(--color-bg-alt);
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-image-sliderOne {
  flex: 1 1 45%;
  position: relative;
  height: 400px;
  perspective: 1000px; 
}

.swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0.5;
  cursor: pointer;
  transform: translate(0, 0) rotate(0deg);
  box-shadow: var(--shadow-strong);
}

.swiper-slide:nth-child(1) { z-index: 1; }
.swiper-slide:nth-child(2) { z-index: 2; transform: translate(20px, 20px) rotate(-2deg); }
.swiper-slide:nth-child(3) { z-index: 3; transform: translate(40px, 40px) rotate(-4deg); }

.swiper-slide.active {
  opacity: 1;
  transform: translate(0,0) rotate(0deg) scale(1.05);
  z-index: 10;
  box-shadow: 0 25px 60px rgba(228,54,54,0.4);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.swiper-slide.active img {
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.02); }
}

.services-content {
  flex: 1 1 45%;
  background: rgba(0,0,0,0.25);
  border-radius: 25px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--glow-primary);
  position: relative;
}


.service-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
margin: 0.5rem;
  
  background: var(--color-bg-alt);
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  transform: translateY(10px); 
}


.service-item.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


.service-item:hover {
  box-shadow: 0 25px 60px rgba(0,0,0,0.45), 0 0 25px var(--color-primary);
  transform: translateY(-5px);
}


.service-item h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary); 
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}


.service-item h4,
.service-item p {
  transition: color 0.3s ease, transform 0.3s ease;
}



.top-right {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-label p {
  color: var(--color-text);
  font-weight: 600;
}

.top-right-arrow i {
  color: var(--color-text);
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.top-right-arrow i:hover {
  color: var(--color-primary);
  transform: scale(1.2);
}


.services-Left p {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.services-Left h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
}


.company-spectrum-locations {
  position: relative;
  padding: 3rem 0;
  background: var(--color-bg-2);
  border-radius: 30px;
  box-shadow: inset 0 0 40px rgba(255,0,0,0.15);
}

.company-left h6 {
  font-size: 2rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  opacity: 0.8;
}

.company-left h3 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-text);
  text-shadow: var(--box-shadow);
  margin-bottom: 1rem;
}

.company-header-container p {
  width: 60%;
  margin: auto;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.4rem;
  line-height: 1.6;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(255,0,0,0.15);
  transition: 0.3s ease;
}

.company-header-container p:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255,0,0,0.4);
}
.structure-timeline {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
  padding: 30px 0;
}

.structure-block {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  padding: 20px 0;
}

.structure-block:nth-child(odd) {
  flex-direction: row;
}

.structure-block:nth-child(even) {
  flex-direction: row-reverse;
}

.structure-image {
  flex: 1;
}

.structure-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.40);
  transition: 0.35s ease;
}

.structure-image img:hover {
  transform: scale(1.02);
}

.structure-block.left-block .structure-info {
  justify-content: flex-start; 
  text-align: left;
}

.structure-block.right-block .structure-info {
  justify-content: flex-end; 
  text-align: right;
}

.structure-info {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px;
}


.structure-info h4 {
  font-size: 100%;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  background: var(--color-primary);
  padding: 12px 25px;
  border-radius: 10px;
  display: inline-block;
  letter-spacing: 1.5px;
  box-shadow: 0 5px 20px rgba(166,44,44,0.4);
}


.structure-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #A62C2C, #555);
  transform: translateX(-50%);
  opacity: 0.5;
}



.structure-block::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: #A62C2C;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 3px solid #fff;
  box-shadow: 0 0 20px rgba(166,44,44,0.6);
  z-index: 2;
}

.structure-block.left-block::before {
  right: calc(50% - 9px);
}

.structure-block.right-block::before {
  left: calc(50% - 9px);
}



@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







.project-section{
  position: relative;  
  padding: 3rem 0;
  background: var(--color-bg-alt);
  border-radius: 30px;
  gap: 3rem;

}
.project-section .text .title{
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight:555 ;
  color: var(--color-primary);
  opacity: 0.8;
  }
.project-section .text .header{
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1rem auto;
  font-size: 1.9rem;
  width: 75%;
  font-weight: 900;
  color: var(--color-text);
  text-shadow: var(--box-shadow);
}

.project-card-container {
  padding: 3rem 2rem;

}

.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 2rem;
  width: 100%;
}

.cardOne {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 0 15px rgba(255,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cardOne:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,0,0,0.35);
}

.project-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cardOne:hover img {
  transform: scale(1.1);
}

.cardOne h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.cardOne p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}




.company-news{
  position: relative;
  padding: 3rem 0;
  background: var(--color-bg-2);
  border-radius: 30px;
  box-shadow: inset 0 0 40px rgba(255,0,0,0.15);
}

.company-news .company-news-header h6{
  font-size: 2rem;
  text-transform: uppercase;
  padding-left : 5%;
  color: var(--color-primary);
  letter-spacing: 1.5px;
  text-shadow: var(--box-shadow);
  opacity: 0.8;
}

.company-news .highlight-letters {
  font-size: 2rem;
  padding-left: 10%;
  color: var(--color-text-muted);
}

.news-slider-structure {
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 90%;
  margin: auto;
}

.news-slider-structure::-webkit-scrollbar {
  display: none;
}

.news-slider-container {
  display: flex;
  gap: 1.5rem;
}

.news-slider-wrapper {
  display: flex;
  gap: 1.5rem;
}

.gray {
  flex: 0 0 300px; 
}

.news-single-container {
  background: rgba(255, 255, 255, 0.05); 
  border-radius: 15px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.15); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-single-container h2 {
  font-size: 1.2rem;
  color: var(--color-text);
  font-weight: 700;
  margin: 0;
  text-shadow: var(--box-shadow);
}

.news-single-container p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

.news-single-container a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.news-single-container a:hover {
  color: #ff5555;
  text-decoration: underline;
}

.news-single-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.35);
}


.news-slider-wrapper-container {
  position: relative;
  display: flex;
  align-items: center;
}


.news-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--color-text);
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s ease;
}

.news-arrow:hover {
  background: rgba(255,0,0,0.8);
}

.news-arrow.left {
  left: 0.5rem;
}

.news-arrow.right {
  right: 0.5rem;
}


 .final-spectrum-page {

       padding: 20px;
       display: flex;
       justify-content: center;
     }

     .final-section {
       display: flex;
       gap: 50px;
       flex-wrap: wrap;
     }

     .final-spectrum-left {
      flex: 1 1 300px; 
       background-image: url('../images/d3069074a097a03eefd743add101a7d1.jpg');
       border-radius: 20px;
     }
     .final-spectrum-right{
            flex: 1 1 300px; 

     }

     .final-flex-spectrum {
       display: flex;
       gap: 20px;
       justify-content: center;
       align-items: center;
       padding: 30px;
     }

     .final-flex-spectrum h2 {
       width: 40%;
       text-transform: uppercase;
       font-weight: 500;
     }

     .final-flex-spectrum a {
       display: flex;
       align-items: center;
       justify-content: center;
       flex: 0 0 auto;
       background: #b9262c;
       width: 54px;
       height: 54px;
       border-radius: 8px;
       color: black;
       font-size: 20px;
       transition: ease-in-out 0.3s;
     }
     

     .final-flex-spectrum a:hover {
       background-color: var(--color-text);
       color: var(--color-bg);
     }

     .final-spectrum-right-container a:hover {
       background-color: var(--color-text);
       color: var(--color-bg);
     }


     .final-spectrum-right-container a:hover i {
       transform: rotate(90deg);
     }


     .final-flex-spectrum a:hover i {
       transform: rotate(90deg);
     }

     .final-flex-spectrum i,
     .final-spectrum-right-container i {
       transform: rotate(50deg);
       transition: ease-in-out 0.2s;
     }

     .spectrum-icon {
       animation: rotate 10s linear infinite;
     }

     @keyframes rotate {
       0% {
         transform: rotate(0deg);
       }

       100% {
         transform: rotate(360deg);
       }
     }

     .final-spectrum-right {
       background-image: url('../images/WhatsApp\ Image\ 2025-09-12\ at\ 00.56.33_3274f75b.jpg');
       border-radius: 10px;
       color: var(--color-text);

     }

     .final-spectrum-right-container {
       display: flex;
       padding: 50px;
       gap: 20px;
       justify-content: center;
       align-items: center;
     }

     .final-spectrum-right-container h2 {
       font-size: 30px;
       text-transform: uppercase;
       line-height: 1.06;
       width: 60%;

     }

     .final-spectrum-right-container a {
       display: flex;
       align-items: center;
       justify-content: center;
       flex: 0 0 auto;
       background: rgb(158, 158, 158);
       width: 54px;
       height: 54px;
       border-radius: 8px;
       color: black;
       font-size: 20px;
       transition: ease-in-out 0.2s;
     }

     




html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}


button, a {
  min-height: 44px;
  min-width: 44px;
}


@media (min-width: 1440px) {
  .carousel .content,
  .who-we-section,
  .services-container,
  .company-header-container p,
  .project-cards,
  .news-slider-structure {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}






@media (max-width: 767px) and (min-width: 481px) {
  
  #preloader h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    letter-spacing: 4px;
  }
  
  #preloader p {
    font-size: 1rem;
    letter-spacing: 3px;
  }
  
  
  .carousel {
    height: 75vh;
    min-height: 500px;
  }
  
  .carousel .content {
    margin-top: 12vh;
    padding: 0 6%;
    max-width: 100%;
  }
  
  .carousel .content p:first-child {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  
  .carousel .title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
  }
  
  .carousel .des {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .carousel .btn a {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
  
  .arrows {
    bottom: 6%;
    right: 50%;
    transform: translateX(50%);
  }
  
  .arrows button {
    width: 50px;
    height: 50px;
  }
  
  
  
  .company-spectrum-locations {
    padding: 2.5rem 0;
  }
  
  .company-left h6 {
    font-size: 1.4rem;
  }
  
  .company-left h3 {
    font-size: 1.8rem;
  }
  
  .company-header-container p {
    width: 88%;
    padding: 1.2rem;
    font-size: 0.95rem;
  }
  


  
  
  
  .project-section {
    padding: 2.5rem 0;
  }
  
  .project-section .text .title {
    font-size: 1.3rem;
  }
  
  .project-section .text .header {
    font-size: 1.6rem;
    width: 92%;
  }
  
  .project-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .project-card-container {
    padding: 2rem 5%;
  }
  
  
  .company-news {
    padding: 2.5rem 0;
  }
  
  .company-news .company-news-header h6 {
    font-size: 1.4rem;
  }
  
  .company-news .highlight-letters {
    font-size: 1.6rem;
  }
  
  .gray {
    flex: 0 0 270px;
  }
  
  
  .final-spectrum-page {
    padding: 20px 5%;
  }
  
  .final-section {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .final-flex-spectrum,
  .final-spectrum-right-container {
    padding: 35px 20px;
  }
  
  .final-flex-spectrum h2,
  .final-spectrum-right-container h2 {
    font-size: 1.4rem;
  }
}


@media (max-width: 480px) {
  
  body {
    font-size: 14px;
    line-height: 1.5;
  }
  
  
  #preloader h1 {
    font-size: clamp(2rem, 12vw, 2.8rem);
    letter-spacing: 3px;
  }
  
  #preloader p {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  
  
  .carousel {
    height: 65vh;
    min-height: 450px;
  }
  
  .carousel .content {
    margin-top: 10vh;
    padding: 0 5%;
  }
  
  .carousel .content p:first-child {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.7rem;
  }
  
  .carousel .title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }
  
  .carousel .des {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }
  
  .carousel .btn a {
    padding: 10px 24px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }
  
  .arrows {
    bottom: 5%;
    right: 50%;
    transform: translateX(50%);
    gap: 0.7rem;
  }
  
  .arrows button {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }
  
  
  .who-we-are-section {
    padding: 40px 5%;
    border-radius: 20px;
  }
  
  .who-we-section {
    gap: 2rem;
  }
  
  .who-left {
    width: 100%;
  }
  
  .image-stack {
    height: 280px;
    width: 100%;
  }
  
  .img-card {
    width: 75%;
    height: 75%;
    border-radius: 15px;
  }
  
  .img-1 { transform: rotate(-4deg); }
  .img-2 { transform: rotate(2deg); }
  
  .overlay-card {
    top: 8%;
    right: -5px;
    padding: 0.6rem 1rem;
    border-radius: 15px;
  }
  
  .overlay-card h2 {
    font-size: 1.2rem;
  }
  
  .overlay-card p {
    font-size: 0.8rem;
  }
  
  .right-section {
    gap: 1rem;
  }
  
  .subheading {
    font-size: 0.8rem;
  }
  
  .right-section h1 {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }
  
  .description {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  
  .right-points-grid {
    gap: 0.7rem;
  }
  
  .right-point {
    padding: 0.5rem 0.8rem;
    font-size: 0.82rem;
    border-radius: 8px;
  }
  
  .right-point img {
    width: 14px;
    height: 14px;
  }
  
  .right-cards-container {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .who-cards {
    padding: 0.9rem;
  }
  
  .who-cards h2 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .who-cards p {
    font-size: 0.85rem;
  }
  
  
    
  .services-container {
    padding: 40px 5%;
    gap: 2rem;
    border-radius: 20px;
  }
  
  .service-image-sliderOne {
    height: 250px;
  }
  
  .swiper-slide {
    width: 90%;
    height: 90%;
  }
  
  .services-content {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .services-Left p {
    font-size: 0.8rem;
  }
  
  .services-Left h1 {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }
  
  .service-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }
  
  .service-item p {
    font-size: 0.88rem;
    line-height: 1.4;
  }
  
  .top-right {
    flex-direction: row;
    gap: 0.8rem;
  }
  
  .top-right-arrow i {
    font-size: 1.1rem;
  }
  
  
  
  .company-spectrum-locations {
    padding: 2rem 0;
    border-radius: 20px;
  }
  
  .company-left h6 {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }
  
  .company-left h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .company-header-container p {
    width: 92%;
    padding: 1rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }
  
  .spectrum-slider-structure {
    margin-top: 2rem;
  }
  
  
  
  .project-section {
    padding: 2rem 0;
    border-radius: 20px;
  }
  
  .project-section .text .title {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  .project-section .text .header {
    font-size: 1.4rem;
    width: 95%;
    margin: 0.8rem auto;
    line-height: 1.3;
  }
  
  .project-card-container {
    padding: 2rem 5%;
  }
  
  .project-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .cardOne {
    padding: 0.9rem;
    border-radius: 12px;
  }
  
  .project-image {
    height: 160px;
    border-radius: 10px;
  }
  
  .cardOne h4 {
    font-size: 1.05rem;
  }
  
  .cardOne p {
    font-size: 0.88rem;
  }

  
  
  .company-news {
    padding: 2rem 0;
    border-radius: 20px;
  }
  
  .company-news .company-news-header h6 {
    font-size: 1.1rem;
    padding-left: 5%;
  }
  
  .company-news .highlight-letters {
    font-size: 1.4rem;
    padding-left: 5%;
  }
  
  .news-slider-structure {
    width: 100%;
    margin-top: 1.5rem;
  }
  
  .gray {
    flex: 0 0 260px;
  }
  
  .news-single-container {
    padding: 0.9rem;
    border-radius: 12px;
  }
  
  .news-single-container h2 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }
  
  .news-single-container p {
    font-size: 0.86rem;
    line-height: 1.4;
  }
  
  .news-arrow {
    display: none;
  }
  
  
  .final-spectrum-page {
    padding: 15px 5%;
  }
  
  .final-section {
    gap: 1.2rem;
  }
  
  .final-spectrum-left,
  .final-spectrum-right {
    border-radius: 15px;
  }
  
  .final-flex-spectrum,
  .final-spectrum-right-container {
    padding: 25px 15px;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .final-flex-spectrum h2,
  .final-spectrum-right-container h2 {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  
  .final-flex-spectrum a,
  .final-spectrum-right-container a {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  
  .spectrum-icon {
    order: -1;
  }
  
  .spectrum-icon svg {
    width: 70px;
    height: 70px;
  }
}


@media (max-width: 359px) {
  #preloader h1 {
    font-size: 1.8rem;
  }
  
  .carousel {
    height: 60vh;
    min-height: 400px;
  }
  
  .carousel .title {
    font-size: 1.4rem;
  }
  
  .carousel .btn a {
    padding: 8px 20px;
    font-size: 0.7rem;
  }
  
  .arrows button {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  
  .right-section h1,
  .services-Left h1 {
    font-size: 1.25rem;
  }
    

}


@media (max-height: 500px) and (orientation: landscape) {
  .carousel {
    height: 100vh;
  }
  
  .carousel .content {
    margin-top: 5vh;
  }
  
  .carousel .title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel .des {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .arrows {
    bottom: 3%;
  }

}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .carousel-bg-image,
  .swiper-slide.active img {
    animation: none !important;
  }
}


@media (prefers-contrast: high) {
  .carousel .content,
  .services-content,
  .news-single-container {
    border: 2px solid var(--color-text);
  }
  
  .arrows button,
  #btn {
    border-width: 2px;
  }
}


@media print {
  #preloader,
  .arrows,
  .news-arrow,
  #btn,
  .top-right-arrow,
  header,
  footer {
    display: none !important;
  }
  
  .carousel,
  .who-we-are-section,
  .services-container,
  .company-spectrum-locations,
  .project-section,
  .company-news,
  .final-spectrum-page {
    page-break-inside: avoid;
    box-shadow: none;
  }
  
  body {
    background: var(--color-text);
    color: var(--color-bg);
  }
}