/* Enable scroll snapping on the main page */
html, body {
  height: 100%;
  margin: 0;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
 
/* Each full-page section must align to the viewport */
.hero-container,
#aboutSlides,
.slider-container,
#Ourteam,
#connect {
  scroll-snap-align: start;
  height: 100vh;
}
 
/* HEADER */
 
.start {
 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
 
height: 100vh;
  max-width: 100%;
 
}
 
 
 
/* --- CSS VARIABLES & BASIC SETUP --- */
:root {
    --bg-color: #264D54; /* Dark Teal from image */
    --primary-yellow: #fecb2e;
    --primary-white: #ffffff;
    --text-light-gray: #e0e0e0;
 
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Poppins', sans-serif;
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--primary-white);
    overflow-x: hidden;
}
 

/* --- HERO CONTAINER & HEADER --- */
.hero-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2rem 5%;
}
 

 .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed; /* 👈 make it fixed */
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 30px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
 
/* Style for your logo image */
.logo-image {
    height: 50px; /* Adjust height as needed */
    width: auto;
}
 
.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
}
 
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}
 
.main-nav a {
    text-decoration: none;
    color: var(--primary-white);
    font-size: 1rem;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}
 
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease-out;
}
 
.main-nav a:hover {
    color: var(--primary-yellow);
}
 
.main-nav a:hover::after {
    width: 100%;
}
 
 
/* --- HERO SECTION & CONTENT --- */
.hero-section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
 
.hero-background-graphic {
    position: absolute;
    z-index: 1;
    opacity: 0.4; /* Opacity applied to the container */
}
 
/* Style for your watermark image */
.watermark-image {
     max-width: 516px;
    width: 100%;
    margin-bottom: 7em;
    height: auto;
    filter: grayscale(1) brightness(1.5);
}
 
.hero-text-content {
  position: relative;
  padding-top: 5em;
  z-index: 2;
}
 
 
 
/* --- Main Slider & Slide Structure --- */
.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
 
.slides-wrapper {
    display: flex;
    width: 300%; /* 100% for each of the 3 slides */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1); /* Smooth sliding effect */
}
 
.slide {
    width: 33.333%; /* Each slide takes up a third of the wrapper */
    height: 100%;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 60px;
}
 
/* --- Slide 3: Business Model Specifics (Exact UI) --- */
 
.business-model-content {
    width: 100%;
    max-width: 1300px; /* Increased max-width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
 
.business-header {
    text-align: center;
    margin-bottom: 20px;
}
 
.business-header h1 {
    font-weight: 900;
     font-family: 'Anton';
  font-size: 3.5em;
  line-height: 1;
    color: #ffc107; /* Yellow title */
    margin-bottom: 15px;
}
 
.business-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}
 
.business-model-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px; /* Increased gap */
    width: 100%;
}
 
.business-box {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 30px;
}
 
.business-text {
    flex-basis: 55%;
}
 
.business-text h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #4dd0e1; /* Light Teal/Cyan color for the title */
    margin-bottom: 15px;
}
 
.business-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}
 
.business-image-wrapper {
    flex-basis: 45%;
    position: relative;
    background-color: #ffffff; /* White background for the image frame */
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
 
.business-image {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}
 
.yellow-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #ffc107;
    bottom: -20px;
    right: -20px;
    z-index: -1;
}
 
/* Animation Delays */
.active .business-header.animate-on-load { transition-delay: 0.3s; }
.active .business-model-container .animate-on-load:nth-child(1) { transition-delay: 0.5s; }
.active .business-model-container .animate-on-load:nth-child(2) { transition-delay: 0.7s; }
/* --- Header & Logo --- */
 
 
 
/* 1. Lift the entire card up */
.business-box:hover {
    transform: translateY(-12px);
}
 
/* 2. Change the title color to the brand yellow */
.business-box:hover .business-text h3 {
    color: #ffc107;
}
 
/* 3. Enhance the shadow for a more pronounced "lifted" feel */
.business-box:hover .business-image-wrapper {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}
 
/* 4. Zoom the image inside its frame */
.business-box:hover .business-image {
    transform: scale(1.08);
}
 
/* 5. Move and rotate the yellow accent square */
.business-box:hover .yellow-accent {
    transform: rotate(15deg);
    bottom: -25px;
    right: -25px;
}
 
 

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}
.logo-img {
    height: 40px;
}
.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s;
}
.main-nav a:hover {
    color: #ffc107; /* Yellow accent color */
}
 
/* --- Slide Content Styling --- */
.text-content {
  flex-basis: 50%;
}
 
.text-content h1,
.text-content h2 {
  font-size: 4rem;
  font-family: 'Anton';
  font-size: 3.5em;
  line-height: 1;
  /* avoid extra vertical space */
  letter-spacing: 0.06em;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
}
 
.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
}
 
.text-content .highlight-title {
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-block;
  border-bottom: 3px solid #ffc107;
  padding-bottom: 5px;
  margin-top: 25px;
  margin-bottom: 15px;
}
 
 
/* --- Slide 1: Products & Services Specifics --- */
.image-content {
    position: relative;
    flex-basis: 50%;
}
.main-image {
    width: 100%;
    display: block;
    border-radius: 8px;
}
.yellow-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: #ffc107;
    z-index: -1;
}
 
/* --- Slide 2: Market Analysis Specifics --- */
.chart-content {
    flex-basis: 50%;
}
.market-chart {
    width: 100%;
    height: auto;
}
.chart-line {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.series-1 { stroke: #ffffff; }
.series-2 { stroke: #00aaff; }
.series-3 { stroke: #ffc107; }
 
 
/* --- Navigation Arrows --- */
.slider-nav {
    position: absolute;
    bottom: 40px;
    right: 80px;
    display: flex;
    gap: 15px;
    z-index: 5;
}
.nav-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-arrow:hover {
    background-color: #ffc107;
    border-color: #ffc107;
}
.nav-arrow svg {
    width: 24px;
    height: 24px;
}
.nav-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}
 

.arr3 {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  width: 50px;
  display: flex;
  height: 50px;
  margin-left: 77%;
  /* margin-top: 50px; */
  /* padding-bottom: 5px; */
  padding-left: auto;
  /* float: left; */
  position: absolute;
  align-items: center;
  justify-content: space-around;
}

.arr3:hover {
  background-color: #ffc107;
    border-color: #ffc107;
  }

.arr3 svg {
    width: 24px;
    height: 24px;
}
.arr3.hidden {
    opacity: 0;
    pointer-events: none;
}
 

.arr1 {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    width: 50px;
    height: 50px;
    margin-left: auto;
    align-items: center;
    justify-content: space-around;
}
.arr1:hover {
  background-color: #ffc107;
    border-color: #ffc107;
  }

.arr1 svg {
    width: 24px;
    height: 24px;
}
.arr1.hidden {
    opacity: 0;
    pointer-events: none;
}
 

.nav-arrow-about {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-arrow-about:hover {
    background-color: #ffc107;
    border-color: #ffc107;
}
.nav-arrow-about svg {
    width: 24px;
    height: 24px;
}
.nav-arrow-about.hidden {
    opacity: 0;
    pointer-events: none;
}
 


 
/* --- ANIMATIONS --- */
.animate-on-load {
    opacity: 0;
    transform: translateY(30px);
}
.active .animate-on-load {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to left, rgb(8 82 98) 60%, rgba(12, 77, 91, 0) 100%);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
/* Stagger the animation for a nicer effect */
.active .animate-on-load:nth-child(1) { transition-delay: 0.3s; }
.active .animate-on-load:nth-child(2) { transition-delay: 0.4s; }
.active .animate-on-load:nth-child(3) { transition-delay: 0.5s; }
.active .animate-on-load:nth-child(4) { transition-delay: 0.6s; }
 
 
/* SVG Chart Drawing Animation */
.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
/* Trigger animation when slide is active */
#slide-2.active .chart-line {
    animation: draw-line 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}
/* Stagger the line drawing */
#slide-2.active .series-1 { animation-delay: 0.5s; }
#slide-2.active .series-2 { animation-delay: 0.8s; }
#slide-2.active .series-3 { animation-delay: 1.1s; }
 
@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}
 
.hero-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
    animation: slideUpFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s backwards;
}
 
.text-white { color: var(--primary-white); }
.text-yellow { color: var(--primary-yellow); }
 
.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.5em;
    text-align: end;
    margin: 0.5rem 0 2rem 0;
    color: var(--text-light-gray);
    animation: slideUpFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.4s backwards;
}
 
.tagline {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-weight: 400;
    animation: slideUpFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.6s backwards;
}
 
 
/* --- ANIMATIONS --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
@keyframes slowRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
 
 
/* --- BOTTOM ARROW --- */
.scroll-down-arrow {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--text-light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInDown 1s ease-out 1s backwards;
}
 
.scroll-down-arrow:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--bg-color);
    transform: scale(1.1);
}
 
 
/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .hero-container {
        padding: 1.5rem 5%;
    }
 
    .main-header {
        flex-direction: column;
        gap: 1.5rem;
    }
 
    .main-nav ul {
        gap: 1.5rem;
    }
 
    .watermark-image {
        max-width: 350px; /* Make graphic smaller on tablets */
    }
}
 
@media (max-width: 480px) {
    .main-nav ul {
        gap: 1rem;
        flex-wrap: wrap; /* Allow nav items to wrap */
        justify-content: center;
    }
 
    .main-nav a {
        font-size: 0.9rem;
    }
 
    .logo-text {
        font-size: 1.2rem;
    }
 
    .logo-image {
        height: 40px;
    }
   
    .subtitle {
        letter-spacing: 0.3em;
    }
 
    .watermark-image {
        max-width: 280px; /* And even smaller on mobile */
    }
}
 
 

.logo-brand {
  display: flex;
  align-items: center;
  
}

.brand-name {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  margin-left: 25px;
  font-family: 'Poppins',serif;
}

.menu {

  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
   height: 45px;
    width: 450px;
  background-image: linear-gradient(to right,  #18575b, #838687);
}

.menu a {
  color: white;
  text-decoration: none;
  margin-left: 21px;
  font-weight: 600;
  font-size: 19px;
  padding: 5px 0;
  font-family: 'Poppins', Serif;
}



.menu a:hover {
  color:#febd02;
}



.one{
  width:90px;
  text-align: center; 
     padding-right: 14px;
    border-radius: 50px;
}
/* .one:hover{
    background-color: #67a2d8;
} */


.two{
    /* border: 1px solid white; */
    padding-right: 14px;
    border-radius: 90px;
}
/* .two:hover{
    background-color: #004aad;
} */


.three{
    /* border: 1px solid white; */
      padding-right: 14px;
    border-radius: 90px;
}


/* .three:hover{
 background-color: #5de0e6;
} */


.four{
    /* border: 1px solid white; */
    padding-right: 14px;
    border-radius: 90px;
}
/* .four:hover{
    background-color: #5de0e6;
} */

/* 
.five{
    border: 1px solid white;
    padding-right: 14px;
    border-radius: 90px;
}
.five:hover{
    background-color:#5de0e6;
} */



/* HERO SECTION */
/* HERO SECTION */
.hero {
  position:relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
 
}



.bg-behind-text {

  position: relative;
  top: -60px;
  min-width: 180px;
  max-width: 480px;
  z-index: 1;
  /* filter: brightness(1.22); */
}

.hero-overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; /* Above the image */
}

.hero h1 {
  font-family: 'Arvo', serif;
  font-size: 74px;
  margin: 0;
}

.hero .highlight {
  color: white;
  font-family: 'Anton', serif;
}

.hero .highlight-yellow {
  color: #fdbd06;
  font-weight: 600;
  font-family: 'Anton', serif;
}

.hero .highlight-yellow2 {
  color: #fdbd06;
  font-weight: 600;
  font-family: 'Poppins', serif;
}

.tagline {
   color: white;
  font-size:22px;
  font-weight: 400;
  font-family: 'Poppins', serif;
  margin-top: -30px; /* Creates gap between image and text */
}


body {


height: 100vh;
  max-width: 100%;
  margin: 0;
  padding: 0;


}

.slider {
height: 100vh;
  max-width: 100%;
  position: relative;
  /* width: 100%; */
  overflow: hidden;
 

}

.slides {
height: 100vh;
  max-width: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slideactive {
  height: 100vh;
  min-width: 100%;

  /* padding: 20px; */
  box-sizing: border-box;
  /* background: #fff; */
  /* border: 1px solid #ccc; */
  text-align: center;
}

.slide1 {
  height: 100vh;
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  /* background: #fff; */
  /* border: 1px solid #ccc; */
  text-align: center;
}

.slide2 {
  height: 100vh;
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  /* background: #fff; */
  /* border: 1px solid #ccc; */
  text-align: center;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-90%);
  background-color: #ebeff2;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}



/* ABOUT US SECTION */

.logo-brand1 {
  display: flex;
  align-items: center;
  /* border: 1px solid white; */
  margin-top: -35px;
}

.brand-name1 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  font-family: 'Poppins',serif;
}

.about-section {
  height: 100vh;
  max-width: 100%;
  padding: 60px 80px;
  /* background-image: url('BG.png'); */
}

.about-container {
  display: flex;
  max-width: 1200px;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  margin: auto;
  margin-top: 40px;
}

.about-img {
  position: relative;
  flex: 1;
  margin-top: 2em;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.yellow-box {
  width: 50px;
  height: 50px;
  background-color: #ffc107;
  position: absolute;
  bottom: -15px;
  right: -15px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-top: 0;
  text-align: left;
  font-weight: bold;
  color: white;
  font-family: 'Anton';
  font-size: 3.5em;
  line-height: 3; /* avoid extra vertical space */
  letter-spacing: 0.06em; /* optional: improves readability */
}


.about-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #e7e4d2;
  max-width: 900px;
  text-align: justify;
  font-family: system-ui;
  /* border: 1px solid white; */
}




/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
  }

  .menu a {
    margin: 5px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .tagline {
    font-size: 16px;
  }

  .bg-behind-text {
    max-width: 250px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Company Values Section */

.logo-brand2 {
  display: flex;
  align-items: center;
  /* border: 1px solid white; */
  margin-top: -45px;
}

.brand-name2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  font-family: 'Poppins',serif;
}

.values-section {
  padding: 60px 80px;
  /* background-color: #023343; */


}

.values-title {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  top: 50px;
  /* border: 1px solid white; */
  margin-top: -15px;
}

.yellow-bar {
  width: 55px;
  height: 240px;
  background-color: #febd02;
  margin-top: 25px;
}

.values-title h2 {
  font-size: 61px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: white;
  /* font-family: 'Arvo', serif; */
  font-family: 'Anton';
  margin-top: -30px;
  text-align: justify;
  padding-left: 0.3em;
}

.values-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;

  width: 900px;
  margin-left: 35em;
  position: relative;
  top: -100px;
  margin-top: -66px;



}

.vision {
  margin-left: 20px;

  width: 360px;
  height: 210px;

}


.yellow {
  color: #febd02;
  font-size: 35px;
  font-family: 'Poppins', serif;
  text-align: left;
  margin-top: -7px;

}

.d1 {

  margin-top: 0px;
  font-family: 'Poppins', serif;
  font-size: 15px;
  color: #e7e4d2;
  text-align: justify;
  margin-left: -54px;

}


.mission {

  margin-left: 20px;
  /* border: 1px solid  white; */
  width: 360px;
  height: 210px;
}

.white {
  color: white;
  font-size: 35px;
  font-family: 'Poppins', serif;
  text-align: left;
  margin-top: -7px;


}

.d2 {
   margin-top: 0px;
  font-family: 'Poppins', serif;
  font-size: 15px;
  color: #e7e4d2;
  text-align: justify;
  margin-left: -54px;

}

.icon-box {
  width: 30px;
  height: 22px;
  margin-bottom: 8px;
}

.white-box {
  background-color: white;
  width: 33px;
}

.yellow-box-bg {
  background-color: #ffc107;
   width: 33px;
}

.values-image {
  width: 100%;
  border-radius: 8px;
  position: relative;
  top: -154px;
}

.values-image img {
  width: 100%;


  margin-top: 20px;
}



.company-values ul {
  list-style-type: none;
  padding-left: 0;
}

.company-values li {
  margin-bottom: 15px;
  font-size: 18px;
  color: #e0e0e0;
}

.company-values li strong {
  color: #FFA500;
  /* Highlighted text */
}

.arrs{
  display: flex;
margin-top: -150px;
  
}
.arr2 {
  border: 1px solid whitesmoke;
  border-radius: 30px;
  width: 6.3%;
  height: 30px;
  margin-left: auto;
  margin-top: 50px;
  color: white;
  padding-bottom: 5px;
  padding-left: auto;
}




/*milestone section*/

.logo-brand3 {
  display: flex;
  align-items: center;
  /* border: 1px solid white; */
  margin-top: -15px;
}

.brand-name3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  margin-left: 45px;
  font-family: 'Poppins',serif;

}

.milestones-section {
  /* background-color: #01303e; */
  background-image: url('/images/BG.png');
  color: white;
  margin-top: -30px;
}

.milestones-header {
  display: flex;
      margin-top: 5em;

}

.milestones-header h1 {
 font-size: 65px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.06em;
    color: white;
    /* font-family: 'Arvo', serif; */
    font-family: 'Anton';
    /* margin-top: 69px; */
    text-align: start;
    margin-left: 1em;
}

.milestone-img {
  min-width: 400px;
  max-width: 935px;
  border-radius: 5px;
  margin-top: 20px;
}



.container {
  display: flex;
  align-items: center;
  /* border: 1px solid whitesmoke; */
  margin-top: 35px;
  height: 4em;
      background: linear-gradient(to right, #07545d, #07545d);

}

.box11{
  font-family: 'Poppins',serif;
  font-size: 22px;
  position: fixed; 
  margin-left: 50px;
  color: #febd02;
}

.box22{
  font-family: 'Poppins',serif;
  font-size: 22px;
  position: fixed;
  margin-left:598px;
  color: #febd02;

}

.box33{
  font-family: 'Poppins',serif;
  font-size: 22px;
  position: fixed;
  margin-left: 1158px;
  color: #febd02;

}

.connectdots1 {
  margin-top: 7px;
    height: 81px;
    position: relative;
    margin-left: 432px;
    width: 154px;
    width: 125px;

}

.connectdots2 {
  margin-top: 7px;
    height: 81px;
    position: relative;
    margin-left: 428px;
    width: 154px;
    width: 125px;
}



.arrow11 {
  font-size: 24px;

  width: 230px;
}

.arrow22 {
  font-size: 24px;
  /* margin-left: 200px; */
}



.milestone-points {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 10px;
  /* border-bottom: 1px solid #ccc; */
  flex-wrap: wrap;
}

.milestone-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.milestone-title h3 {
  color: #fcd307;
  font-size: 16px;
  margin: 0;
}

.active-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid #fcd307;
  border-radius: 50%;
}

.milestone-content {
  display: flex;
  gap: 30px;
  /* margin-top: 30px; */
  /* flex-wrap: wrap; */
}

.milestone-box {
    margin-top: 1.5em;
    text-align: start;
    font-family: 'Poppins', serif !important;
    font-size: 20px;
    color: #e7e4d2;
    text-align: justify;

}


/* Milestones Section */
.milestones {
  margin-top: 40px;
}

.milestone-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.milestone-item {
  flex: 1;
  min-width: 280px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #FFD700;
  transition: transform 0.3s ease;
}

.milestone-item:hover {
  transform: translateY(-5px);
}


.arr4 {
  border: 1px solid whitesmoke;
  border-radius: 30px;
  width: 5%;
  height: 30px;
  margin-top: -5px;
  color: white;
  padding-bottom: 5px;
  padding-left: auto;
  float: left;
  position: absolute;
}

.arr4:hover{
  background-color: #001ced;
}




/*sliding for part2*/
/*styling for sliding2 */
body {


height: 100vh;
  max-width: 100%;
  margin: 0;
  padding: 0;



}

.sliderr {
  height: 100vh;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  /* width: 100%; */
  overflow: hidden;


}

.slidess {
  height: 100vh;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.5s ease-in-out;

}

.slideactivee{
  margin: 0;
  padding: 0;
    height: 100vh;
  min-width: 100%;
  


  box-sizing: border-box;
  
  text-align: center;

}

.slide3 {
    height: 100vh;
    
  min-width: 100%;
  margin: 0;
  padding: 0;
  
  box-sizing: border-box;
 
  text-align: center;
}

.slide4 {
    height: 100vh;
  min-width: 100%;
    margin: 0;
  padding: 0;

  box-sizing: border-box;
  
  text-align: center;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-90%);
  background-color: #ebeff2;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

/* products and services Section */
.logo-brand4 {
  display: flex;
  align-items: center;
  margin-left: 40px;
  margin-top: 20px;
}

.brand-name4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  margin-left: 45px;
  font-family: 'Poppins',serif;

}


#services{
  height: 100vh;
   min-width: 100%;
 
 
}


.products-section {
  

  color: rgb(255, 255, 255);
  padding: 60px 40px;
  font-family: 'Poppins', sans-serif;
}

#products-section {

  color: white;
  padding: 100px 40px;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: auto;
  margin-top: 25px;
  gap: 40px;

}

.products-text {
  flex: 1;
  min-width: 320px;
}

.products-text h2 {
  font-size: 45px;
  color: #febd02;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
margin-left: -220px;
  font-family: 'Poppins',serif;
}
  
.products-text pre {
  font-size: 16px;
  line-height: 1.7;
  color: #d6e6f2;
  text-align: justify;
  font-family: 'Poppins', serif;
}

.products-images {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.main-image {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  margin-left: -40px;
}

.side-image {
  width: 260px;
  position: absolute;
  top: 70px;
  right: -20px;
  border-radius: 6px;
  z-index: 2;
  background-color: white;
}

.yellow-box {
  width: 70px;
  height: 40px;
  background-color: #ffc107;
  position: absolute;
  top: 370px;
  right: 180px;
  z-index: 1;
}
.plain{

  width: 400px;
  height: 40px;
  margin-left: -20px;
  margin-top: -16px;
    background: linear-gradient(to left, #18575b, #397072);
}

.arr5 {
  border: 1px solid whitesmoke;
  border-radius: 30px;
  width: 5%;
  height: 30px;
  float: right;
  margin-right:95px;
  margin-top: 97px;
  color: white;
  padding-bottom: 5px;
  padding-left: auto;
  
}

.arr5:hover{
  background-color: #001ced;
}



/* market analysis  Section */
.logo-brand5 {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.brand-name5 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  margin-left: 43px;
  font-family: 'Poppins',serif;
}


.market{
  margin: 0;
  padding: 0;
}

.market-analysis-section {
  margin: 0;
  padding: 0;
   height: 100vh;
  max-width: 100vw;
  min-width: 100%;
 
    
 
  color: rgb(212, 179, 15);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 40px;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;



}

.marketrightt {

  display: flex;
  margin-left: 250px;
  margin-right: 200px; 
  height: 550px;
  width: 1000px;
  margin-top: -70px;
}

.market-left {
  flex: 1 1 45%;
  max-width: 800px;

  padding-top: -55px;
  padding-left: -180px;

  

}


.market-left h1 {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: left;
  padding-left: 70px;
  color: #febd02;
 font-family: 'Poppins',serif;

}

.market-block {
  margin-bottom: 30px;
}

.highlight-title {
  color: #febd02;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Poppins', serif;
  
  text-align: left;
  padding-left: 70px;

}

.market-left pre {
  color: white;
  margin-left: 15px;
  font-family: 'Poppins', serif;
  font-size: 16px;
  text-align: justify;

}


.market-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #d9e4e7;
}

.market-right {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-image {
  min-width:68%;
  max-width: 260%;
  height: auto;
  border-radius: 5px;

}



.arr6{
 border: 1px solid whitesmoke;
  border-radius: 30px;
  color: white;
  padding-bottom: 4px;
 width: 75px;
 height: 35px;
 margin-left:85px;
 margin-top: -45px;
 }

.arr6:hover{
  background-color: #001ced;
}

.arr7{
  border: 1px solid whitesmoke;
  border-radius: 30px;
  color: white;
  padding-bottom: 4px;
  float: left;
  position:fixed;
  top: 640px;
  right: -1420px;
  height: 35px;
  width: 75px;

}

.arr7:hover{
   background-color: #001ced;
}



.logo-brand6 {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.brand-name6 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  margin-left: 32px;
  font-family: 'Poppins',serif;
}


#business-model{
  margin: 0;
  height: 0;
  height: 100vh;
  min-width: 100%;

}
.business-model-section {
  margin: 0;
  padding: 0;
  height: 100vh;
  min-width: 100%;

  
  color: white;
  /* padding: 60px 40px; */
  font-family: 'Poppins', sans-serif;
}

.business-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 20px;
  /* border: 1px solid white;
   */
}

.business-header h1 {
  font-size: 42px;
  color: #ffcc00;
  font-weight: 800;
  margin-bottom: 10px;
   margin-top: 10px;
    font-family: 'Poppins',serif;

}

.business-header p {
  font-size: 16px;
  color: #d9e4e7;

     margin-top: 10px;
}

.business-model-container {
  
  display: flex;
  justify-content: space-around;
  
  flex-wrap: wrap;
  gap: 40px;
  height: 350px;

    margin-top: -35px;
}

.business-box1 {

  border-radius: 8px;
  /* Added rounded corners */
  padding: 20px;
  /* Added padding */
  flex: 1;
  /* Makes the boxes flexible */
  max-width: 370px;
  /* Added max width for better layout */
  display: flex;

  height: 240px;
  margin-left: 170px;
  background: linear-gradient(to left, #18575b, #397072);
  margin-top: 25px;
}

.business-box {
 
  border-radius: 8px;
  /* Added rounded corners */
  padding: 20px;
  /* Added padding */
  flex: 1;
  /* Makes the boxes flexible */
  max-width: 400px;
  /* Added max width for better layout */
  display: flex;
  background: linear-gradient(to left, #18575b, #397072);
  height: 240px;
  margin-top: 25px;
  margin-right: 150px;
  
}

.business-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fcb304;
  /* Unified color for titles */
  margin-left: 23px;
  width: 50px;
  /* margin-top: -10px; */
  margin-top: auto;
}

.business-title1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fcb304;
  /* Unified color for titles */
  margin-left: -10px;

  margin-top: auto;
}

.business-box1 pre {
  font-size: 15px;
  line-height: 1.6;
  color: #cde6ea;
  margin-left: -18px;
  margin-top: -12px;
  font-family: 'Poppins', serif;
  text-align: justify;
}

.business-box pre {
  font-size: 15px;
  line-height: 1.6;
  color: #cde6ea;
  margin-left: -18px;
  font-family: 'Poppins', serif;
  margin-right: 80px;
  margin-top: -17px;
  text-align: justify;
}

.model-image {
  width: 100%;
  /* Adjusted to full width of its container */
  border-radius: 4px;
  /* Added slightly rounded corners */
  height: 240px;

}

.model-image1 {
  height: 240px;
  width: 100%;
  /* Adjusted to full width of its container */
  border-radius: 4px;
  /* Added slightly rounded corners */

}

.arr8{
  border: 1px solid whitesmoke;
  border-radius: 30px;
  width: 5%;
  height: 30px;
  margin-top:93px;
  margin-left: 77px;
  color: white;
  padding-bottom: 5px;
  padding-left: auto;
  float: left;
  position: absolute;
}

.arr8:hover{
  background-color: #001ced;
}

/* Ourteam Section */
#Ourteam {
  

  height: 100vh;
  width: 100vw;
 

}

.logo-brand7 {
  display: flex;
  align-items: center;
  margin-top: 22px;
}

.brand-name7 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  margin-left: 65px;
  font-family: 'Poppins',serif;
}

#mid {
  margin-top: -20px;
  
}

.heading {

color: white;
  font-size: 40px;
  padding-left: 210px;
  padding-top: 90px;
  margin-left: 330px;
  width: 1;
  font-size: 60px;
  /* margin-top: 9px; */
  height: 200px;
  /* border: 3px solid white; */
}

.heading p {
  /* border: 2px solid white; */
  margin-top: 0px
}

.cont {


  display: flex;
  width: 1250px;
  height: 350px;
  background: linear-gradient(to right, #262e2e, #18575b);
  margin-left: 140px;
  margin-top: 30px;
  /* border: 1px solid white; */
  
}

.cont img {
  padding-top: 35px;
  padding-left: 95px;
}

.cont pre {
  padding-top: 0px;
}

.matter {
  color: #e7e4d2;;
    margin-right: 15px;
    margin-left: -15px;
    padding-left: 15px;
    font-family: 'Poppins', serif !important;
    font-size: 20px;
    text-align: justify;
  
  }


/* .fa {
  padding-left: 60px;
  padding-top: 6px;
} */
.memories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px; /* slightly reduced horizontal padding */
  width: 170px; /* reduced width to tighten layout */
  height: 55px;
  border-radius: 30px;
  position: relative;
  background: linear-gradient(
    120deg,
    #000b21,
    #003f82,
    #4ca2b5,
    #ffd27f,
    #4ca2b5,
    #003f82,
    #000b21
  );
  background-size: 300% 300%;
  animation: shimmer 4s linear infinite;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.memories span {
  font-size: 22px;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px; /* reduced gap between "We" and ❤️ */
}

.memories a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 4px; /* reduced margin to bring arrow closer */
}

.memories a i {
  font-size: 25px;
  color: white;
  animation: pulseArrow 1.8s infinite ease-in-out;
}

@keyframes pulseArrow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}


.cont a:hover {

  color:#004759;
}



/* connect usSection */

.logo-brand8 {
  display: flex;
  align-items: center;
  padding-top: 3em;
  flex-direction: column;
}

.brand-name8 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
}


#part2 {
  display: flex;
  margin-left: 25px;
  /* border: 1px solid blue; */

}


.brand-name8 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 65px;
  font-family: 'Poppins',serif;
}

#connect {

  height: 90vh;
  width: 100vw;
}
.lt{

  margin-top: 23px;
}
/*contact us box styling*/

#part2 {
  display: flex;

  width: 100%;


}

/*contact styling*/
.contact {

  list-style-type: none;
  border-radius: 30px;
  padding: 20px;
  width: 375px;
  height: 380px;
  margin: 25px 40px 30px 40px;
  background-color: #005b66;
  /* match your screenshot background */
  box-sizing: border-box;
    margin-left: 120px;
  
}

.contact h2 {
  color: white;
  font-size: 26px;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
}

.contact ul {
  padding: 0;
  margin: 0;
}

.contact li {
  display: flex;
  align-items: center;
  /* padding: 5px 0; */
  font-style: italic;
  color: white;
  font-size: 18px;
   padding-top: -30px;
}

.contact i {
  color: #ffc303;
  /* yellow icons */
  font-size: 20px;
  margin-left: -50px;
  margin-right: 10px;
  width: 20px;
  /* text-align: center; */
  padding-top: -10px;
  padding-bottom: 5px;
}



.dotted-line {

/* padding-top: -3px; */
  border-bottom: 2px dashed white;

}

.contact span {
  display: inline-block;
  padding-left: 25px;
}




/*get in touch styling*/
.getintouch {

  margin-left: 500px;
  margin-top: 25px;
  width: 375px;
  height: 380px;
  border-radius: 30px;
  padding: 20px;
  background-color: #005b66;
  /* same dark teal as in your screenshot */
  box-sizing: border-box;

}

.getintouch h2 {
  color: white;
  margin-bottom: 15px;
}

.dotted-lines {
  border-bottom: 2px dashed white;
  padding-top: 2px;
  padding-bottom: 19px;
  
}


.getintouch label {
  color: #ffc303;
  font-weight: bold;
  display: block;
  float: left;

  
}

.getintouch input {
  background: transparent;
  border: none;
  outline: none;
  width: 75%;
  color: white;
  font-size: 14px;
   
}


.getintouch textarea {
  width: 93%;
  height: 60px;
  border-radius: 20px;
  border: 2px solid yellow;
  padding: 10px;
  font-family: cursive;
  resize: vertical;
  background: transparent;
  color: white;
  overflow-y: hidden;
}


.getintouch button {
  display: block;
  margin: 20px auto 0;
  background-color: #ffc303;
  border: none;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.getintouch button:hover {
  background-color: #248dea;
}


/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.popup-content {
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  margin: 15% auto;
  text-align: center;
}

.popup-content button {
  background-color: #005b66;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: #248dea;
}


/*last section*/

.third {
  margin-top: 10px;
  margin-left: 635px;
  height: 100px;
}

.third>p {
  display: inline;

}

.head3 {
  font-size: 75.4px;
  color: white;

}

.head4 {
  font-size: 75.4px;
  color: #ffc303
}

.small {
  font-size: 18px;
  color: white;
}

.last {
  margin-top: -13px;
  margin-left: 900px;
  font-size: 26.6px;
  font-style: italic;
  color: white;
}

.end {
    margin-left: -37em;
}
