body {
	background-color: #000000;
	overflow-x: hidden;
}

.logobox {
    display: flex;
    justify-content: center; /* Center the logo box */
    align-items: center; /* Center items vertically */
}

.logo {
    display: flex;
    justify-content: space-around; /* Space the text elements evenly */
    align-items: center; /* Center text vertically */
    flex: 1;
    color: black;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    height: 100px;
}

.logo-text {
    margin: 0 20px; /* Add some margin to ensure there's space between texts */
}
.logo111{
    width: 400px;
    height: 100px;
}

header {
    position: sticky ;
    top: 0;
    width: 100%;
    height: 80px;
    background-color:   #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1001;
    overflow: visible;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  header ul {
    flex: 2;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
  }
  
  header ul li {
    position: relative;
  }
  
  header ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: black;
    font-weight: 900;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 1.2em;
    overflow: hidden;
  }
  
  header ul li a span {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    text-shadow: 0 0 5px #ffffff;
  }
  /* Header Styles */
  header ul li a:before,
  header ul li a:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: #0A1F44;
    transition: width 0.5s;
    z-index: 0; /* Ensure the lines are behind the text */
  }
  
  header ul li a:before {
    left: 0;
    top: 0;
  }
  
  header ul li a:after {
    right: 0;
    bottom: 0;
  }
  
  header ul li:hover > a:before,
  header ul li:hover > a:after {
    width: 100%;
  }
  
  /* Dropdown Content */
  header ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #d9e2e3;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  header ul li:hover .dropdown-content {
    display: block;
  }
  
  header ul li .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.5s;
  }
  
  header ul li .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  /* Blink Effect */
  @keyframes blink {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  header ul li .dropdown-content a:hover span {
    animation: blink 0.8s;
  }
  
  /* Remove green line hover effect for dropdown-content links */
  header ul li .dropdown-content a:before,
  header ul li .dropdown-content a:after {
    width: 0; /* Ensure no green line */
    transition: none; /* Disable width transition */
  }
  
  header ul li .dropdown-content a:hover:before,
  header ul li .dropdown-content a:hover:after {
    width: 0; /* Ensure no green line on hover */
  }
  
  /* Dropdown Styles */
  .menu-items .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f7f2f2;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(114, 112, 112, 0.2);
    top: 100%;
    left: 0;
    z-index: 1002; /* Increased z-index to ensure it appears in front */
  }
  
  .menu-items .dropdown-content li {
    display: block;
  }
  
  .menu-items .dropdown-content li a {
    padding: 10px 20px;
    text-decoration: none;
    color: rgb(5, 4, 4);
    display: block;
  }
  
  .menu-items .dropdown:hover .dropdown-content {
    display: block;
  }
  /* === HAMBURGER ICON === */
  .hamburger {
    cursor: pointer;
    position: absolute;
    left: 20px;     /* This puts it 20px from the right edge */
    top: 40px;       /* Adjust this value to move it further down */
    display: none;   /* hidden by default, shown on mobile with media query */
    z-index: 1100;
  }
  
  
  .hamburger input {
    display: none;
  }
  
  .hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line {
    fill: none;
    stroke: black;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .hamburger input:checked + svg {
    transform: rotate(-45deg);
  }
  
  .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }
  
  /* === MEDIA QUERIES === */
  @media screen and (max-width: 1024px) {
    .hamburger {
      display: block;
      position: sticky;
      transform: translatex(40%);
      top: 30px;          /* Move it down */
      right: 10px;        /* Move it to the right */
      background-color: rgb(96, 206, 223);
      border-radius: 25px;
      width:-200px;        /* Remove full width */
      height:50px ;       /* No forced height */
      z-index: 1100;
      
      
    }
  
  
    
    .hamburger svg {
      display: block;
      margin: 0 auto;
    }
  
    header {
      transform: translateY(-100%);
      opacity: 0;
      position: fixed;
      top: 0;
      left: 0;
      background-color: #d9e2e3;
      flex-direction: column;
      height: auto;
      padding: 20px;
      z-index: 1000;
    }
  
    header.active {
      transform: translateY(0);
      opacity: 1;
    }
  
    header ul {
      flex-direction: column;
      gap: 10px;
      padding: 10px 0;
    }
  }
  
  
  @media screen and (max-width: 1024px) {
    header {
      transform: translateY(-120%);
      opacity: 0;
      position: fixed;
      top: 220px; /* Push it down a bit from top */
      left: 0;
      background-color: #d9e2e3;
      flex-direction: column;
      height: auto;
      padding: 20px;
      transition: transform 0.4s ease, opacity 0.4s ease;
      z-index: 1000;
    }
  
    header.active {
      transform: translateY(0);
      opacity: 1;
    }
  
    .hamburger {
      display: block;
      position: fixed;
      top: 150px;
      right: 20px;
      background-color: #64cbeb;
      padding: 5px;
      border-radius: 20px;
      z-index: 1100;
    }
  }
  

img {
	max-width: 55%;
    height: 325px;
    z-index: 1002;
    border-radius: 15px;
}

.Container {
	width: 1160px;
	margin: 0 auto;
	position: relative;
}

.Main {
	padding: 300px 0;
}
.TopTitle {
	padding: 0 0 30px;
	text-align: center;
}
.FirstTitle {
	font-size: 100px;
	color: #fff;
}
.secTitle {
	color: #ffbb00;
	font-size: 60px
}

.ag-timeline_item {
	margin: 0 0 50px;
	position: relative;
}
.ag-timeline_item:nth-child(2n) {
	text-align: right;
}

.ag-timeline {
	display: inline-block;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
}
.ag-timeline_line {
	width: 8px;
	background-color: #393935;
	position: absolute;
	top: 2px;
	left: 50%;
	bottom: 0;
	overflow: hidden;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.ag-timeline_line-progress {
	width: 90%;
	height: 350px;
	background-color: #ffbb00;
}

.ag-timeline-card_box {
	padding: 0 0 20px 50%;
}

.ag-timeline_item:nth-child(2n) .ag-timeline-card_box {
	padding: 0 50% 20px 0;
}

.ag-timeline-card_point-box {
	display: inline-block;
	margin: 0 14px 0 -28px;
}

.ag-timeline_item:nth-child(2n) .ag-timeline-card_point-box {
	margin: 0 -28px 0 14px;
}

.ag-timeline-card_point {
	height: 50px;
	line-height: 50px;
	width: 50px;
	border: 3px solid #ffbb00;
	background-color: #1d1d1b;
	text-align: center;
	font-family: 'ESL Legend', sans-serif;
	font-size: 20px;
	color: #FFF;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.js-ag-active .ag-timeline-card_point {
	color: #1d1d1b;
	background-color: #ffbb00;
}

.ag-timeline-card_meta-box {
	display: inline-block;
	
	
}

.ag-timeline-card_meta {
	margin: 10px 0 0;
	font-family: 'ESL Legend', sans-serif;
	font-weight: bold;
	font-size: 28px;
	color: #ffffff;
	
	margin-left: 100px;
	
	white-space: nowrap;
	
	
}
.ag-timeline_item:nth-child(2n) .ag-timeline-card_meta {
    text-align: left;
	margin-left: -60px ;
	padding-right: 100px;
}


.ag-timeline-card_item {
	display: inline-block;
	width: 45%;
	margin: -77px 0 0;
	background-color: #000000;
	opacity: 0;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,.5);
	-moz-box-shadow: 0 0 0 0 rgba(0,0,0,.5);
	-o-box-shadow: 0 0 0 0 rgba(0,0,0,.5);
	box-shadow: 0 0 0 0 rgba(0,0,0,.5);
	-webkit-transition: -webkit-transform .5s, opacity .5s;
	-moz-transition: -moz-transform .5s, opacity .5s;
	-o-transition: -o-transform .5s, opacity .5s;
	transition: transform .5s, opacity .5s;
	position: relative;
}

.ag-timeline_item:nth-child(2n+1) .ag-timeline-card_item {
	-webkit-transform: translateX(-200%);
	-moz-transform: translateX(-200%);
	-ms-transform: translateX(-200%);
	-o-transform: translateX(-200%);
	transform: translateX(-200%);
}

.ag-timeline_item:nth-child(2n) .ag-timeline-card_item {
	-webkit-transform: translateX(200%);
	-moz-transform: translateX(200%);
	-ms-transform: translateX(200%);
	-o-transform: translateX(200%);
	transform: translateX(200%);
}

.js-ag-active.ag-timeline_item:nth-child(2n+1) .ag-timeline-card_item,
.js-ag-active.ag-timeline_item:nth-child(2n) .ag-timeline-card_item {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.ag-timeline-card_arrow {
	height: 18px;
	width: 18px;
	margin-top: 20px;
	background-color: #ffbb00;
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.meta11{
	font-size: 20px;
}
.ag-timeline_item:nth-child(2n+1) .ag-timeline-card_arrow {
	margin-left: calc(-18px / 2);
	margin-right: calc(-18px / 2);
}
.ag-timeline_item:nth-child(2n) .ag-timeline-card_arrow {
  margin-left: -10px;
  right: auto;
  left: 0;
}

.ag-timeline-card_img {
	width: 90%;
	border: 1px solid#ffbb00;
}


@media only screen and (max-width: 979px) {
  .ag-timeline_line {
	left: 30px;
  }

  .ag-timeline_item:nth-child(2n) {
	text-align: left;
  }

  .ag-timeline-card_box,
  .ag-timeline_item:nth-child(2n) .ag-timeline-card_box {
	padding: 0 0 20px;
  }
  
  .ag-timeline-card_meta-box {
    display: none;
  }
  
  .ag-timeline-card_point-box,
  .ag-timeline_item:nth-child(2n) .ag-timeline-card_point-box {
    margin: 0 0 0 8px;
  }
  
  .ag-timeline-card_point {
    height: 40px;
    line-height: 40px;
    width: 40px;
  }
  
  .ag-timeline-card_item {
    width: auto;
    margin: -65px 0 0 75px
  }
  
  .ag-timeline_item:nth-child(2n+1) .ag-timeline-card_item,
  .ag-timeline_item:nth-child(2n) .ag-timeline-card_item {
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
    transform: translateX(200%);
  }
  
  .ag-timeline_item:nth-child(2n+1) .ag-timeline-card_arrow {
    right: auto;
    left: 0;
  }
  
  .ag-timeline-card_arrow {
    margin-top: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .Container {
    width: 96%;
  }

  .ag-timeline-card_img {
    height: auto;
    width: auto;
  }
}

@media only screen and (max-width: 639px) {
  .secTitle {
    font-size: 60px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .Container {
    width: 750px;
  }
}

@media (min-width: 980px) and (max-width: 1161px) {
  .Container {
    width: 960px;
  }
}
