@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}



a {
	text-decoration: none;
}

.container, .success-section, .marquee-content {
  max-width: 100% !important;
  overflow-x: hidden;
}


.container {
 min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
  font-size: 4rem;
  font-weight: 300;
  color: black;
  margin-top: 1px;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0.2rem;
  text-align: center;

}
.section-title span {
	color: rgb(200, 32, 45);
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid rgb(10, 4, 4);;
	font-size: 2rem;
	text-transform: none;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
	 border-radius: 35px;
}
.cta:hover {
	color: white;
	background-color: rgb(66, 65, 65);;
}
.brand h1 {
	font-size: 3rem;
	text-transform: none;
	color: white;
}
.brand h1 span {
	color: rgb(200, 32, 45);;
}

.brand .logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: -130px;
}



/* Header section */
/* HEADER */
/* Header section */
/* HEADER */
#header {
	position: fixed;
	padding-top: 0px;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: 200px;
}


#header .header {
	min-height: auto;
	padding: 5px 0; /* Daha yukarı taşımak için azaltıldı */
	background-color: rgba(31, 30, 30, 0.9); /* ← burada şeffaflık düzeldi */
	transition: 0.3s ease background-color;
}

#header .nav-bar {
	display: flex;
	align-items: center; /* Dikey ortalama */
	justify-content: space-between;
	width: 100%;
	height: 150px;
	padding: 5px 30px; /* Üst-alt boşluk azaltıldı */
}

/* LOGO ile MENÜ ARASINDAKİ MESAFE */
.brand {
	margin-right: 30px;
}

.brand .logo {
	height: 200px; 
	width: auto;
	object-fit: contain;
	display: block;
	margin-left: -130px;
}

/* MENÜ */
#header .nav-list {
	flex-grow: 1;
}

#header .logo {
  height: 140px; 
  width: auto; 
  object-fit: contain; 
  display: block; 
   margin-left: 0; 
  
 /* background-color: transparent !important;  /*← Kutuyu kaldırır */  */
 /* border-radius: 700px;  */
 /* padding: 1px;  */

 /* box-shadow:  */
 /* 0 0 20px rgba(255, 255, 255, 0.15),  */
    /* 0 0 40px rgba(255, 255, 255, 0.1),  */
    /* 0 0 60px rgba(255, 255, 255, 0.08) !important;  */
  /* height: 30px; */
  /* width: auto; */
  /* object-fit: contain; */
  /* display: block; */
  /* margin: 0 auto; */
  /* filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.7)); */
}

/* Mobil görünümde küçült */
@media only screen and (max-width: 768px) {
  #header .logo {
    height: 80px;
  }
}

#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 200vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.1rem; 
	font-weight: 500;
	letter-spacing: 0.15rem;
	text-decoration: none;
	color: white;
	text-transform: none;
	padding: 12px 16px; 
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: rgb(200, 32, 45);
}

/* HAMBURGER MENU */
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}

/* DESKTOP MENÜ İÇİN ÖZELLEŞTİRME */
@media only screen and (min-width: 1200px) {
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		height: auto;
		width: auto;
		background-color: transparent;
		gap: 20px; /* Menü arası boşluk azaltıldı */
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.6rem;
		padding: 8px 10px;
	}
	#header .nav-list ul a::after {
		display: none;
	}
}
/* End Header section */



/* End Header section */

/* Hero Section */
#hero {
	/* background-image: url(./img/argedemarkaplanlogosuz.png);
	background-size: cover;
	background-position: center -30px;
	position: relative;
	z-index: 1; */
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/* #hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(27, 2, 2, 0.089);
	opacity: 0.7;
	z-index: -1; } */

	#heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Hafif karartma efekti */
  z-index: -1;
}

.hero.container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white; /* Yazının videoda görünmesi için */
}

#hero .hero {
	max-width: 100%;         /* Ortalamayı kaldırır */
  padding-left: 80px;      /* Sola boşluk bırakır */
  padding-right: 20px;     /* Gerekirse sağa daha az boşluk */
  margin: 0;               /* Ortalamayı tamamen iptal eder */
  justify-content: flex-start;  /* İçeriği sola hizalar */
}

#hero h1 {
	display: block;
	width: fit-content;
	font-size: 3.5rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
	margin-left: -60px;
}
#hero h1:nth-child(1) {
	animation-delay: 1s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: rgb(119, 18, 18);
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/* End Hero Section */

/* Services Section */
#services .services {
  flex-direction: column;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 50px 0;

}
#services .service-top {
	max-width: 1000px;
	margin: 0 auto;
}
#services .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
#services .service-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-image: url(./img/img-1.png);
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.9;
	z-index: -1;
}
#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}
#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: none;
}
#services .service-item p {
	color: white;
	text-align: left;
}
/* End Services Section */

/* Projects section */
#projects .projects {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.project-item.tubitak-item {
  min-height: 450px;
  align-items: stretch;
}
.project-item.tubitak-item .project-img {
  height: auto;
}


 /* .project-item.ARGE-item {  */
    /* min-height: 450px;  */
   /* align-items: stretch;  */
   /* margin-bottom: 30px; /* ← BU satır boşluğu yaratır */  */
 /* }  */
/* .project-item.ARGE-item .project-img { */
  /* height: auto; */
  /* margin-bottom: 40px; */
/* } */


#projects .projects-header h1 {
	margin-bottom: 50px;
}
#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}


#projects .project-info {
  padding: 30px;
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ← LİSTE VE METİNLERİ SOLA HİZALAR */
  justify-content: flex-start;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
  color: white;
}
#projects .project-info h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center; /* ← Başlığı da sola hizala */
  width: 100%;
}
#projects .project-info h2 {
	font-size: 2.8rem !important;
	font-weight: 500;
	margin-top: 10px;
}
#projects .project-info p {
	color: white;
}
#projects .project-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#projects .project-img::after {
  content: none;
}

#projects .project-img img {
  border: 2px solid #c8202d; /* Mavi çerçeve */
  border-radius: 8px;        /* Hafif köşe yumuşatma */
  padding: 2px;              /* Görselle çerçeve arasında mesafe */
  box-sizing: border-box;    /* Padding + border'ı hesaba kat */
}
#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}
#projects .project-info li {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 6px;
  list-style-type: disc;
  list-style-position: inside;  /* ← Noktalar içeride ve hizalı */
  padding-left: 0;              /* ← Soldan boşluk bırakma */
  color: #f7f4f4;
  text-align: left;             /* ← Yazıları sola hizala */
  width: 100%;   
}

#projects .project-info ul {
  padding-left: 20px;
  margin: 0;
  list-style-position: inside; /* Nokta ile metin aynı hizaya gelir */
}

/* End Projects section */

/* About Section */
#about {
  background-color: #f9f9f9;
   width: 100vw; /* Görünüm genişliğini tamamen kapla */
  margin-left: calc(-50vw + 50%); /* Ortalanmış container dışına taşı */
  margin-right: calc(-50vw + 50%); /* Ortalanmış container dışına taşı */
}

#about .about {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
}

#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid rgb(200, 32, 45);;
	z-index: -1;
}
/* End About Section */

/* contact Section */
#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}
#contact .contact-items {
	/* max-width: 400px; */
	width: 100%;
}
#contact .contact-item {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
#contact .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}
#contact .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
#contact .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}
/*End contact Section */


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.page-wrapper{
	flex: 1;
}

/* Footer */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	width: 100vw;
	height: 300px;
    margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	margin-top: auto;
	}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer .footer-logo {
  height: 150px; !important    /* İstediğin yüksekliğe göre ayarla */
  width: auto;   !important    /* En-boy oranı korunsun */
  margin-bottom: 20px; /* Yazılarla araya boşluk */
  display: block;
  margin-top: 10px;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
}
/* End Footer */

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: rgb(200, 32, 45);
		font-weight: 500;
	}
}
/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}
	/* End Hero */

	/* Services Section */
	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
	}
	/* End Services Section */

	/* Project */
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	/* End Project */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid rgb(200, 32, 45);
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */

	/* contact  */
	#contact .contact {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	/* End contact  */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */

/* BAŞARILARIMIZ CSS */

.success-section {
  width: 100vw;
  background-color: navy;
  padding: 30px 0;
  display: flex; /* ← Ekledik */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;   /* ← Hizalamalar için */
  z-index: 1;           /* Arkada kalmayı engeller */
  overflow: visible;    /* İçeriğin dışa taşmasına izin verir */
}
.success-section .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
}
.stat {
  flex: 1 1 250px;
  max-width: 250px;
}
.stat .number {
  font-size: 4rem;
  color: #c8202d;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
.stat p {
  font-size: 1.5rem;
  color: #333;
}

/* LOADING SCREEN CSS KODU BAŞLADI */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-logo {
  width: 100%;
  max-width: 700px;     /* Daha büyük genişlik */
  max-height: 500px;    /* Daha yüksek yükseklik */
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
}

.progress-bar {
  width: 60%;
  max-width: 400px;
  height: 12px;
  background-color: #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-color: #c8202d;
  transition: width 0.2s ease-in-out;
}
/* LOADİNG SCREEN KODU BİTTİ*/





/* REFERANS BÖLÜMÜ CSS KODLARI */
/* REFERANSLAR - Marquee Efekti */
/* REFERANSLAR - Sonsuz kayan şerit */
/* REFERANSLAR - Sonsuz kayan şerit */
#references {
  background: transparent;
  padding: 60px 0;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: scroll-left 75s linear infinite;
  white-space: nowrap;
  padding-left: 200px;
  will-change: transform;
}

.marquee-content img {
  height: 120px;
  width: auto;
  margin: 0 50px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Sonsuz sağdan sola kaydırma animasyonu */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* HARİTALAR BÖLÜMÜ */

.map-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media only screen and (max-width: 768px) {
  .project-item {
    flex-direction: column;
    text-align: center;
  }

  .project-info h1 {
    font-size: 2.2rem;
  }

  .project-info ul {
    padding-left: 0;
  }

  .project-info li {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  .project-img img {
    width: 100%;
    height: auto;
  }

  .success-section {
    padding: 20px 10px;
  }

  .success-section .container {
    padding: 0 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .success-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .stat {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    padding: 10px;
  }

  .stat .number {
    font-size: 2.5rem;
  }

  .stat p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .cta {
    font-size: 1.5rem;
    padding: 0.8rem 1.8rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

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

  .col-left,
  .col-right {
    width: 100%;
  }

  .col-right p {
    font-size: 1.5rem;
  }

  #logo-track img {
    height: 80px;
    margin: 0 10px;
  }

  .section-title {
    font-size: 2.4rem;
    line-height: 2.8rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}


@media only screen and (max-width: 768px) {
.success-section {
  width: 100%;
  background-color: navy;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

  .success-section .container {
    padding: 0 10px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .success-stats {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: center !important;
    width: 100% !important;
  }

  .stat {
    width: 100% !important;
    max-width: 300px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
  }

  .stat .number {
    font-size: 2.5rem !important;
  }

  .stat p {
    font-size: 1.4rem !important;
    line-height: 1.8rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .section-title {
    font-size: 2.6rem !important;
    line-height: 3rem !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }
}

