@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: bm;
    src: url(./font/BlackMango-Black.otf);
}

h1 {
    font-family: bm;
}

body {
    background: url(./img/stars-bg.png);
    color: rgb(184, 182, 182);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 2rem 5rem;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.logo .star {
    width: 14px;
    object-fit: cover;
    margin-right: 4px;
}

.menu-items {
    display: flex;
    gap: 2rem;
}

li {
    list-style: none;
    text-transform: capitalize;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    display: block;
    transition: .3s ease;
}

a:hover {
    text-decoration: underline;
    transform: scale(1.1);
}

section {
    padding: 3rem;
}

.section-one {
    height: calc(100vh - 85px);
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
    align-items: center;
    max-width: 1300px;
}

.gold {
    height: 600px;
    width: 600px;
    object-fit: cover;
}

.title {
    line-height: 1.2;
}

.title h1 {
    font-size: 57px;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
    color: #fff;
}

.title .star {
    width: 40px;
}

p {
    font-size: 14px;
    font-weight: 600;
    max-width: 400px;
}

.p {
    padding: 2rem 0;
}


  
  
.glow {
    filter: drop-shadow(-20px 0px 1.75em rgb(81,147,194));
}

.right-side {
    justify-self: flex-end;
}

.title h2 {
    font-size: 24px;
    opacity: .5;
}

.line {
    width: 100%;
    background-color: rgb(184, 182, 182);
    height: 2px;
    margin-top: 1rem;
}

.gold3 {
    width: 450px;
    height: 450px;
    object-fit: cover;
}

.type {
    padding: 1rem 0;
}

.type :first-child {
    font-size: 18px;
}

.g-type {
    color: #0152fc;
}

.line-blue {
    background-color: #0152fc;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-top: 2rem;
}

.card {
    width: 28%;
    border-radius: 5px;
    padding: 1rem;
    cursor: pointer;
    transition: .8s ease;
}

.img-card {
    max-width: 350px;
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

.card-1 {
    background: linear-gradient(to right, #545d60, #283048);
}
.card-2 {
    background: linear-gradient(to right, #4b485a, #1f1c2c);
}
.card-3 {
    background: linear-gradient(to right, #3f4c6b, #535e79);
}

.card:hover {
    background: linear-gradient(to left, #3a7bd5, #00d2ff);
}

.color {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: .5rem;
}

.card span {
    text-transform: uppercase;
    font-weight: 200;
    color: #fff;
}

.card:hover .color {
    color: #fff;
}

.txt {
    font-size: 24px;
}

.txt span {
    color: #0152fc;
}

.sides {
    padding-top: 5rem;
}

.menu {
    display: flex;
    max-width: 400px;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu li {
    width: 30%;
}

.footer-section {
    height: auto;
}

footer {
    padding: 3rem;
}

.center {
    justify-self: center;
}

.star-s2 {
    position: absolute;
    width: 65px;
    right: -2%;
}

.star-s4 {
    width: 65px;
    position: absolute;
    left: -2%;
    margin-top: 2.5rem;
}

.star-s5 {
    position: absolute;
    left: 40%;
    width: 40px;
}

.image {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ---------------- RESPONSIVE DESIGN ---------------- */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-bar {
        padding: 2rem;
    }

    .right-side, .left-side {
        justify-self: center;
    }

    .gold, .gold3 {
        width: 400px;
        height: 400px;
    }

    .card-container {
        flex-direction: column;
    }

    .card {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-items {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 2rem;
    }

    .title h1 {
        font-size: 32px;
    }

    .title h2 {
        font-size: 20px;
    }

    .txt {
        font-size: 20px;
    }

    button {
        padding: 0.8rem 1.5rem;
        font-size: 14px;
    }

    .gold, .gold3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .title h1 {
        font-size: 26px;
    }

    .title h2 {
        font-size: 18px;
    }

    p, .txt {
        font-size: 14px;
    }

    .nav-bar {
        padding: 1rem;
    }

    .card {
        width: 90%;
    }

    button {
        padding: 0.6rem 1.2rem;
    }
}

/* Responsive CSS */

/* Tablet and small desktops */
@media (max-width: 1024px) {
    .nav-bar {
      padding: 1.5rem 2rem;
    }
  
    .container {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 2rem;
    }
  
    .gold, .gold3 {
      width: 80%;
      height: auto;
      margin: 0 auto;
    }
  
    .card-container {
      flex-wrap: wrap;
    }
  
    .card {
      width: 45%;
    }
  
    .menu {
      max-width: 100%;
      justify-content: center;
    }
  
    .menu li {
      width: 45%;
    }
  }
  
  /* Tablets and Large Phones */
  @media (max-width: 768px) {
    .nav-bar {
      flex-direction: column;
      gap: 1rem;
    }
  
    .menu-items {
      flex-direction: column;
      align-items: center;
    }
  
    .title h1 {
      font-size: 32px;
    }
  
    .txt, .type :first-child {
      font-size: 20px;
    }
  
    button {
      width: 100%;
      padding: 1rem;
    }
  
    .card {
      width: 80%;
    }
  
    p {
      font-size: 13px;
    }
  }
  
  /* Phones */
  @media (max-width: 480px) {
    section, .container {
      padding: 1rem;
    }
  
    .title h1 {
      font-size: 26px;
    }
  
    .title h2 {
      font-size: 18px;
    }
  
    .menu-items {
      gap: 1rem;
    }
  
    .gold, .gold3 {
      width: 100%;
      height: auto;
    }
  
    .card-container {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 90%;
    }
  
    .menu li {
      width: 90%;
      text-align: center;
    }
  
    .logo {
      font-size: 12px;
    }
  
    a {
      font-size: 12px;
    }
  
    button::after {
      display: none; /* Remove FontAwesome icon on tiny screens */
    }
  }
  


  /* Page 2 Started */
 
 #page2 {
     width: 100%;
     min-height: 100vh;
     background-color: #111;
     border-top-left-radius: 1.5rem;
     border-top-right-radius: 1.5rem;
     padding: clamp(4.5rem, 4.3571rem + 0.7143vi, 5rem)
       clamp(1.6875rem, 1.6339rem + 0.2679vi, 1.875rem);
   }
   
   #page2 h2 {
     color: #d1d1c7;
     font-size: clamp(3rem, 2.25rem + 3.75vw, 5.625rem);
     font-weight: 600;
     text-transform: uppercase;
     display: inline-block;
   }
   #page2 h2 span {
     display: inline-block;
     transform: translateY(100%); /* Start each span below */
     opacity: 0; /* Initially hidden */
   }
   
   #page2 .serviText {
     display: flex;
     width: 100%;
     justify-content: end;
     align-items: flex-start;
     gap: 3rem;
     padding-top: 5rem;
     padding-bottom: 5rem;
   }
   
   #page2 .serviText .para {
     color: rgb(107 100 92/1);
     font-size: clamp(0.875rem, 0.5393rem + 0.5786vi, 1rem);
     text-transform: uppercase;
   }
   #page2 .serviText .serviText2 {
     width: 35%;
     font-size: clamp(1rem, 0.9286rem + 0.3571vi, 1.25rem);
     color: rgb(107 100 92/1);
     line-height: 120%;
     text-wrap: balance;
   }
   
   /* Page2 services */
   #page2 .services {
     width: 100%;
     padding: 3rem 0rem;
     position: relative;
   }
   #page2 .services .one {
     display: flex;
     align-items: flex-start;
     background-color: #111;
   }
   #page2 .services .border {
     border-top: 1px solid #393632;
     padding-top: 3rem;
   }
   
   #page2 .services .one .oneL {
     width: 50%;
   }
   
   #page2 .services .one .oneL h2 {
     color: #d1d1c7;
     font-size: clamp(1.9531rem,1.496rem + 2.2854vi,3.5529rem);
     font-family: "Montreal Regular";
   }
   #page2 .services .one .oneR {
     width: 50%;
     position: relative;
     display: flex;
     flex-direction: column;
   }
   
   
   #page2 .services .one .oneR h3{
     font-size: clamp(1.9531rem,1.496rem + 2.2854vi,3.5529rem);
     font-family: "Montreal Regular";
     color: #d1d1c7;
   }
   #page2 .services .one .oneR p {
     color: #a29e9a;
     padding-top: clamp(1.125rem,1.0893rem + 0.1786vi,1.25rem);
     padding-bottom: clamp(1.125rem,1.0893rem + 0.1786vi,1.25rem);
     max-width: 80%;
   }
   #page2 .services .one .oneR .list {
     padding-top: clamp(1.125rem,1.0893rem + 0.1786vi,1.25rem);
     padding-bottom: clamp(1.125rem,1.0893rem + 0.1786vi,1.25rem);
     color: #a29e9a;
     display: flex;
     flex-direction: column;
     gap: 3rem;
     align-items: flex-start;
     width: 100%;
   }
   
   .listItem.bt{
     border: none !important ;
   }
   #page2 .services .one .oneR .list .listItem {
     font-size: clamp(1.25rem,1.0359rem + 1.0707vi,1.9995rem);
     display: flex;
     align-items: flex-start;
     border-bottom: 1px solid #393632;
     width: 100%;
     padding-bottom: 1rem;
   
     gap: 2rem;
   }
   #page2 .services .one .oneR .list .listItem span {
     font-size: clamp(1rem,0.9286rem + 0.3571vi,1.25rem);
     padding-top: 5px;
   }
 
   @media (max-width: 768px) {
     #page2 .serviText {
       flex-direction: column;
       gap: 2rem;
       padding-top: 3rem;
       padding-bottom: 3rem;
     }
   
     #page2 .serviText .serviText2 {
       width: 100%;
     }
   
     #page2 .services .one {
       flex-direction: column;
       gap: 2rem;
     }
   
     #page2 .services .one .oneL,
     #page2 .services .one .oneR {
       width: 100%;
     }
   
     #page2 .services .one .oneR p,
     #page2 .services .one .oneR .list .listItem {
       max-width: 100%;
     }
   
     #page2 .services .one .oneR .list {
       gap: 1.5rem;
     }
   
     #page2 .services {
       padding: 2rem 0;
     }
   }
 
   *,
   *::before,
   *::after {
     box-sizing: border-box;
   }
   #page2 h2 {
     font-size: 3rem;
     font-size: clamp(3rem, 2.25rem + 3.75vw, 5.625rem);
   }
  
   @media (max-width: 480px) {
    #page2 {
      padding: 3rem 1rem;
    }
  
    #page2 .services .one {
      gap: 1rem;
      padding-bottom: 2rem;
    }
  
    #page2 .services .border {
      padding-top: 2rem;
    }
  
    #page2 .services .one .oneR p,
    #page2 .services .one .oneR .list .listItem {
      font-size: 1rem;
    }
  
    #page2 .services .one .oneR h3,
    #page2 .services .one .oneL h2 {
      font-size: 2rem;
    }
  }
  #page2 .services .one {
    min-height: auto;
    margin-bottom: 3rem; /* Ensures each block is visually distinct */
  }
  @media (max-width: 768px) {
    #page2 {
      padding-bottom: 15rem; /* or increase to 6rem or 8rem if needed */
    }
  }
  @media (max-width: 768px) {
    #page2 .tin {
      margin-bottom: 6rem;
    }
  }
  
  
  @import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');

.banner{
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.banner .slider{
    position: absolute;
    width: 200px;
    height: 250px;
    top: 10%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 20s linear infinite;
    z-index: 2;
}
@keyframes autoRun{
    from{
        transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
    }to{
        transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
    }
}

.banner .slider .item1{
    position: absolute;
    inset: 0 0 0 0;
    transform: 
        rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(550px);
}
.banner .slider .item1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .content{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 100vw);
    height: max-content;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.banner .content h1{
    font-family: 'ICA Rubrik';
    font-size: 16em;
    line-height: 1em;
    color: #25283B;
    position: relative;
}
.banner .content h1::after{
    position: absolute;
    inset: 0 0 0 0;
    content: attr(data-content);
    z-index: 2;
    -webkit-text-stroke: 2px #d2d2d2;
    color: transparent;
}
.banner .content .author{
    font-family: Poppins;
    text-align: right;
    max-width: 200px;
}
.banner .content h2{
    font-size: 3em;
}
.banner .content .model{
    background-image: url(images/model.png);
    width: 100%;
    height: 75vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: auto 130%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 1;
}
@media screen and (max-width: 1023px) {
    .banner .slider{
        width: 160px;
        height: 200px;
        left: calc(50% - 80px);
    }
    .banner .slider .item1{
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(300px);
    }
    .banner .content h1{
        text-align: center;
        width: 100%;
        text-shadow: 0 10px 20px #000;
        font-size: 7em;
    }
    .banner .content .author{
        color: #fff;
        padding: 20px;
        text-shadow: 0 10px 20px #000;
        z-index: 2;
        max-width: unset;
        width: 100%;
        text-align: center;
        padding: 0 30px;
    }
}
@media screen and (max-width: 767px) {
    .banner .slider{
        width: 100px;
        height: 150px;
        left: calc(50% - 50px);
    }
    .banner .slider .item1{
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(180px);
    }
    .banner .content h1{
        font-size: 5em;
    }
}

.wrapper {
  height: 100vh;
}

.list {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  padding: 0.2rem;
}
.item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  box-shadow: rgb(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}




.item_content {
  background-color: #0b0909;
  color: #ede0e0;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem;
  display: flex;
  position: relative;
  width: 50%;
}

.item_media {
  object-fit: cover;
  width: 50%;
  height: 100%;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-vertical {
  padding: 2rem;
}

@media (max-width: 575.98px) {
  .heading {
    font-size: 2.5rem;
  }

  .item {
    display: flex;
    flex-direction: column;
  }

  .item_content,
  .item_media {
    height: 50vh;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .item_number {
    font-size: .5rem;
    top: 1.5rem;
  }
}





@keyframes pulse-underline {
  0%, 100% {
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    transform: translateX(-50%) scaleX(1.3);
  }
}

.social-icons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  height: 100px; /* Increased from 80px */
  width: 100px;  /* Increased from 80px */
  background: #ded9d9;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s;
}

.social-icons li::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.9);
  transition: 0.5s;
}

.social-icons li:nth-child(1)::before {
  background: #2867B2;
}
.social-icons li:nth-child(2)::before {
  background: #E1306C;
}
.social-icons li:nth-child(3)::before {
  background: #D44638;
}

.social-icons li:hover::before {
  transform: scale(1.2);
  filter: blur(3px);
}

.social-icons li:nth-child(1):hover {
  color: #2a6cbb;
  box-shadow: 0 0 15px #2867B2;
  text-shadow: 0 0 15px #2867B2;
}
.social-icons li:nth-child(2):hover {
  color: #e23670;
  box-shadow: 0 0 15px #E1306C;
  text-shadow: 0 0 15px #E1306C;
}
.social-icons li:nth-child(3):hover {
  color: #ff5b4d;
  box-shadow: 0 0 15px #D44638;
  text-shadow: 0 0 15px #D44638;
}

/* Tooltip Styling */
.social-icons li .tooltip {
  position: absolute;
  bottom: -30px;
  font-size: 14px;
  background: #100f0f;
  padding: 3px 10px;
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  font-family: 'OpenSans-Regular';
  color: #f0ebeb;
}

.social-icons li:hover .tooltip {
  opacity: 1;
  transform: translateY(10px);
}

.social-icons li a {
  color: inherit;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.social-icons i {
  font-size: 50px; /* Increased from 40px */
  transition: transform 0.3s ease;
}

.social-icons li:hover i {
  transform: scale(1.2); /* Optional: Zoom effect on hover */
}


/* Tablet: reduce size slightly */
@media (max-width: 768px) {
  .social-icons li {
    height: 80px;
    width: 80px;
  }

  .social-icons i {
    font-size: 40px;
  }

  .social-icons {
    gap: 20px;
  }
}

/* Mobile: further reduce for small screens */
@media (max-width: 480px) {
  .social-icons li {
    height: 60px;
    width: 60px;
  }

  .social-icons i {
    font-size: 30px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icons li .tooltip {
    font-size: 12px;
    bottom: -25px;
  }
}

/* Base Navigation */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #000; /* You can change this */
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 100;
}

/* Menu Items */
.menu-items {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu-items li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-items {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 20px;
      background: #111;
      padding: 20px;
      border-radius: 8px;
      z-index: 99;
  }

  .menu-items.active {
      display: flex;
  }

  .hamburger {
      display: block;
  }
}

@media (max-width: 768px) {
  .section-one .container {
    flex-direction: column-reverse; /* Moves image above text */
    padding-bottom: 6rem; /* optional spacing below */
  }

  .right-side.pyramid {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .right-side.pyramid img {
    max-width: 100%;
    height: auto;
  }
}


.section-one-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
 
}

@media (max-width: 768px) {
  #page1 {
    padding-top: 4rem; /* or increase to 6rem or 8rem if needed */
  }
}