* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

@font-face {
  font-family: 'HelveticaNeue';
  src: url(../font/HelveticaNeue-Bold.ttf);
  font-style: normal;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

li {
  list-style: none !important;
}

h1 {
  font-size: 100px !important;
  color: #03414E;
  font-family: 'HelveticaNeue';
}

h2 {
  font-size: 60px !important;
  color: #03414E;
  font-family: 'HelveticaNeue';
}

h3 {
  font-size: 40px !important;
  color: #03414E;
  font-family: 'HelveticaNeue';
}

h4 {
  font-size: 30px !important;
  color: #03414E;
  font-family: 'HelveticaNeue';
}

h5 {
  font-size: 20px !important;
  color: #74B0BB;
}

.section-padd {
  padding: 100px 0;
  width: 100%;
  display: flex;
}

.dis-flex {
  display: flex;
  align-items: center;
}

p {
  font-size: 16px;
  color: #524b48;
}


/* ==== MOVIE‑CREDITS SCROLL – LOCKED VERSION ==== */
.credits{
  /* if you ever change font‑size, adjust only this number */
  --row-h: 1.7rem;    /* single‑line height               */
  --rows-vis: 3;      /* rows visible in the window       */

  height: calc(var(--row-h) * var(--rows-vis));
  line-height: var(--row-h);
  overflow: hidden;
  position: relative;
  margin-top: .75rem; /* gap under “I am ATMA” */
}

/* scrolling track */
.credits__inner{
  margin: 0;
  padding: 0;
  list-style: none;
  animation: scroll 40s linear infinite;
}

/* one‑line ticker, all break‑points */
.credits__inner li{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 600;
}

/* optional micro‑shrink on phones */
@media (max-width: 992px){
  .credits{ font-size: .92rem; }
}

/* pause on hover */
.credits:hover .credits__inner{
  animation-play-state: paused;
}

/* honour “Reduce motion” system setting */
@media (prefers-reduced-motion: reduce){
  .credits__inner{ animation: none; }
}

/* ── SCROLLING TIMELINE ───────────────────────────
   List structure:
     • unique lines   =  23
     • duplicates     =   3   (first 3 lines repeated at end)
     • visible window =   3   rows
   We scroll the list up by:
     total height − window height − duplicate height
   = 100% − 2 × window height
   = -100% + (row-h × rows-vis × 2)

   With row‑h = 1.7rem and rows‑vis = 3:
   shift = -100% + (1.7 rem × 6)  ≈ -100% + 10.2 rem
   --------------------------------------------------- */
@keyframes scroll{
  /* 0–5 %  : 2‑second pause at top */
  0%, 5%{
    transform: translateY(0);
  }

  /* 5–87.5 %: smooth upward glide */
  /* 87.5–100 %: 5‑second pause on final unique line */
  87.5%, 100%{
    transform: translateY(calc(-100% + (var(--row-h) * 6)));
  }
}



/* Navbar */
#navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  background: #fff;
}

.navbar-nav {
  margin-left: auto;
}

.nav-item {
  padding: 0 20px;
}

.navbar-brand img {
  width: 250px;
}

.nav-item a {
  color: #03414E;
  transition: .4s ease;
}

.nav-item a:hover {
  color: #E4634D;
}

.navbar-toggler-icon {
  color: #252c3a;
}

.different-nav a span {
  margin-left: 80px;
  background-color: #E4634D;
  padding: 10px 25px;
  border-radius: 4px;
  color: #fff;
}

/* Hero */
.hero {
  padding: 150px 0 50px;
  background: url(../images/hero-bg.png) top center no-repeat;
}

.hero-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-left {
  width: 50%;
}

.hero-left h1 span {
  color: #E4634D;
  font-family: 'HelveticaNeue';
}

.hero-left p {
  font-size: 26px;
  margin: 0;
  padding: 0;
}

.br {
  width: 30px;
  margin-right: 10px;
  border-radius: 4px;
  background-color: #E4634D;
  height: 4px;
}

.br-cpation {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
}

.hero-right {
  width: 50%;
}


/* about-me */
.about-me{
	margin-top: -150px;
	background:url(../images/blue-bg.png) no-repeat;
	background-size: cover;
	width: 100%;
}
.about-content{
	width: 100%;
	display: flex;
	align-items: flex-end;

}
.about-img{
	width: 40%;
}
.about-img img{
	width: 100%;
}
.about-text{
	padding-left: 30px;
	width:60%;
}
.about-text h2{
	text-transform: uppercase;
	margin-bottom: 20px;
}
.about-text ul li{
	margin-bottom: 10px;
	display: flex;
	font-weight: 600;
	color: #536366;
}
.about-text ul li i{
	font-size: 6px;
	margin-right: 15px;
	padding-top: 10px;
}
.btn-gobal{
	margin-top: 30px;	
}
.btn-gobal a{
	background-color: #E4634D;
	padding: 10px 25px;
	border-radius: 4px;
	color: #fff;
}
.btn-gobal a:hover{
	color: #fff;
}


/* strategy */
.strategy{
	
	background: url(../images/gobal-bg.png);
}
.strategy-content{
	align-items:center;
}
.strategy-text{
	width: 40%;
	padding-right: 20px;
}
.strategy-img{
	width: 60%;
	position: relative;
}
.strategy-img img{
	width: 100%;
}
.left-pre{
	border-radius: 4px;
	left: 20px;
	position: absolute;
	bottom: 60px;
	padding: 20px;
	background: #74B0BB;
	width: 350px;
}
.left-pre p{
	color: #fff;
	font-weight: 600;
}
.left-pre p span{
font-weight: 400;
	font-size: 13px;
	color: #fff;
}
.left-pre2{
	border-radius: 4px;
	right: -100px;
	position: absolute;
	bottom: 10px;
	padding: 20px;
	background: #68944F;
	width: 350px;
}
.left-pre2 p{
	color: #fff;
	font-weight: 600;
}
.left-pre2 p span{
font-weight: 400;
	font-size: 13px;
	color: #fff;
}

.system-img{
	margin-top: 30px;
	text-align: center;
}
.system-content h3{
	margin-bottom: 30px;
}
.system-content  p span{
	color: #74B0BB;
}
.mar-top{
	margin-top: 50px;
}
.all-tab{
	width: 100%;
	background-size: cover;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.037);
	background: url(../images/tab-bg.png);
	border-radius: 7px;
	padding: 50px 30px;
}
.first-tab-content h5{
	margin: 25px 0;
}
.first-tab-content span{
	font-weight: 600;
	color: #536366;
	
}
.first-tab-content ul{
	margin-top: 20px;
}
.first-tab-content ul li{
	display: flex;
}
.first-tab-content ul li i{
	color: #74B0BB;
	font-size: 5px;
	padding-top: 10px;
	margin-right: 15px;
}
.first-tab-img img{
	width: 100%;
}

.first-tab-row{
	display: flex;
	width: 100%;
	margin-bottom: 20px;
	
}
.first-tab-box {
	width: 33%;
	padding-right: 15px;
}
.first-tab-box p{
	font-weight: 600;
}
.text-b{
	font-weight: 600;
}
.blue-ul li{
	color: #236D6E;
	font-weight: 600;
}
.note p{
	font-weight: 600;
	color: #E4634D;
}
.special-text{
	padding-left: 20px;
}
.last-text{
	padding: 50px 60px;
	background: url(../images/first-tab-bg.png) no-repeat;
	background-size: cover;
	border-radius: 20px;
}	
.last-text p{
	color: #fff;
}
.last-text p span{
	font-weight: 600;
}

/* Style the tab */
.tab {
	overflow: hidden;
	padding: 40px 0;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
	background: transparent;
	border: 1px #74B0BB solid;
	border-radius: 4px;
	outline: #fff;
	margin: 0 20px;
	color: #236D6E;
	font-weight: 600;
	cursor: pointer;
	padding: 15px 46px;
	transition: 0.3s;
	font-size: 17px;
  }
  .tab button img{
	margin-right: 15px;
  }
  /* Change background color of buttons on hover */
  .tab button:hover {
	background-color: rgb(255, 255, 255);
	
  }

  .mar-b{
	margin:60px 0 30px;
  }
  /* Create an active/current tablink class */
  .tab button.active {
	padding: 15px 56px;
	box-shadow: 0px 4px 20px rgba(116, 136, 138, 0.466);
	outline-color: #fff;
	background-color: rgb(255, 255, 255);
  }
  
  /* Style the tab content */
  .tabcontent {
	display: none;
	width: 100%;
	background-size: cover;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.037);
	background: url(../images/tab-bg.png);
	border-radius: 7px;
	padding:80px 30px;
	
  }

.final-cta-wrap {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.final-cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.final-cta-text {
  flex: 1 1 48%;
  min-width: 280px;
}

.final-cta {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.final-cta-image {
  flex: 1 1 48%;
  text-align: center;
  min-width: 280px;
}

.final-cta-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}








footer{
	width: 100%;
	background: #EEFFFF;
	padding: 50px 0;
}
.footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-box{
	width: 33%;
}
.footer-box p{
	text-align: center;
}
.footer-box ul{
	width: 100%;
	justify-content: center;
	display: flex;
}
.footer-box ul li{
	margin: 0 13px;
}
.footer-box ul li a i{
	color:#236D6E;
	transition:.6s;
	font-size: 25px;

}
.footer-box ul li a i:hover{
	color: #E4634D;
	transform: translateY(-10px);
}
