/*--------------------- Google fonts ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* --------------------- CSS Global variables ------------*/
:root
{
	/*------------ Colors -------------*/
	--primary-color: #CC0000;     /* Kırmızı */
	--secondary-color: #000000;   /* Siyah */
	--third-color: #000000;       /* Siyah */
	--fourth-color: #ffffff;      /* Beyaz */
	--blue-color: #CC0000;    /*---- Button Blue -----*/
	--yellow-color: #CC0000;  /*---- Button Yello ----*/


	/*------------ Font Size --------------*/
	--heading-font-size: 1.5rem;
	--paragraph-font-size: 1rem;

	/* Modern Header ve Navigasyon Stilleri */
	--header-height: 80px;
	--nav-bg: rgba(255, 255, 255, 0.98);
	--nav-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	--primary-color-dark: #990000; /* Koyu Kırmızı */
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	/* Modern CSS Variables */
	--primary-dark: #990000;
	--accent-color: #FFD700;
	--text-color: #333333;
	--light-gray: #f5f5f5;
	--white: #ffffff;
	--shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
	--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
	--shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

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

html
{
	font-size: 16px;
}

body
{
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	overflow-x: hidden;
}

.container
{
	padding: 2rem;
}

.heading
{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 1rem 0;
	margin-bottom: 1.5rem;
	color: var(--third-color);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	position: relative;
	transition: all 0.3s ease;
}

.heading:hover {
	transform: translateY(-2px);
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
}

.sub-heading
{
	color: var(--primary-color);
	font-size: 2.2rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 4px;
	position: relative;
	display: inline-block;
	padding-bottom: 20px;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px rgba(204, 0, 0, 0.2);
	transform-style: preserve-3d;
	transition: all 0.4s ease;
}

.sub-heading:hover {
	transform: translateY(-5px);
	text-shadow: 4px 4px 8px rgba(204, 0, 0, 0.3);
}

.sub-heading::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	border-radius: 4px;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.5s ease;
}

.sub-heading:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

.sub-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--primary-color);
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
	animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
	0% {
		box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
	}
	50% {
		box-shadow: 0 2px 20px rgba(204, 0, 0, 0.6);
	}
	100% {
		box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
	}
}

img
{
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6
{
	font-family: 'Poppins', sans-serif;
}

p
{
	font-family: 'Inter', sans-serif;
}

.white
{
	color: #ffffff;
}

.para-line
{
	font-size: 1rem;
	line-height: 1.5;
}

.btn
{
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.btn a
{
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
}


/*-------------------------- Menu style -------------------------*/
.menu-container
{
  width: 1152px;
  max-width: 90%;
  margin: 0 auto;
}

.nav-wrapper
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrapper ul.nav-list
{
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-wrapper ul.nav-list li 
{
  margin-left: 30px;
  padding: 20px 0;
  position: relative;
}

.nav-wrapper ul.nav-list li a
{
  color: var(--third-color);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all .5s ease-in-out;
}

.nav-wrapper ul.nav-list li a:hover, .nav-wrapper ul.nav-list li.active a
{
  color: var(--blue-color);
}

.nav-wrapper ul.dropdown-list
{
  list-style-type: none;
  display: block;
  background: whitesmoke;
  padding: 6px 16px;
  position: absolute;
  width: max-content;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.nav-wrapper ul.dropdown-list li
{
  margin-left: 0;
  padding: 8px 0;
  position: relative;
}

.nav-wrapper ul.dropdown-list li a
{
  color: var(--third-color);
  display: block;
  padding: 8px 16px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-wrapper ul.dropdown-list li a:hover
{
  background: rgba(0, 0, 0, 0.05);
  color: var(--blue-color);
}

.nav-wrapper ul.nav-list li:hover .dropdown-list
{
  opacity: 1;
  pointer-events: auto;
  animation: moveUp .5s ease-in-out forwards;
}

/* Dropdown menü ile ana menü arasındaki boşluğu kapatmak için */
.nav-wrapper ul.nav-list li.dropdown::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

/* Mobil menü için düzenlemeler */
@media (max-width: 768px) {
  .nav-wrapper ul.dropdown-list {
    position: static;
    background: transparent;
    box-shadow: none;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    display: none;
    padding: 0;
    margin-top: 8px;
  }

  .nav-wrapper ul.nav-list li:hover .dropdown-list {
    display: block;
    animation: none;
  }

  .nav-wrapper ul.dropdown-list li {
    padding: 4px 0;
  }

  .nav-wrapper ul.dropdown-list li a {
    padding: 8px 16px;
    color: #666;
  }
}

@keyframes moveUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-wrapper .nav-list li .btn a
{
	color: var(--fourth-color);
}

.nav-wrapper .nav-list li .btn:hover a
{
	color: var(--fourth-color) !important;
}

.hamberger
{
  display: none;
}

.mobile .hamberger
{
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  cursor: pointer;
}

.mobile .hamberger span
{
  background: var(--third-color);
  width: 28px;
  height: 2px;
  margin-bottom: 8px;
}

.mobile ul.nav-list
{
  background: -webkit-linear-gradient(45deg, #f5f6fa, #dcdde1);
  background: linear-gradient(45deg, #f5f6fa, #dcdde1);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: All .3s ease-in-out;
}

.hamberger, .brand
{
  z-index: 9999;
}

.mobile ul.nav-list.open
{
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
  overflow-y: auto;
}


.mobile .hamberger span
{
  transform-origin: left;
  transition: all .3s ease-in-out;
}

.mobile ul.nav-list li a
{
  font-size: 20px;
}

.mobile ul.dropdown-list
{
  position: relative;
  background: transparent;
  text-align: center;
  height: 0;
  overflow-y: hidden;
  transition: opacity 1s ease-in-out;
  padding-top: 0;
}

.mobile .nav-wrapper ul li:hover .dropdown-list
{
  height: max-content;
  padding-top: 6px;
}

.mobile ul.nav-list li
{
  margin-left: 0;
  text-align: center;
}

.mobile .nav-wrapper ul.dropdown-list li a
{
  color: #7f8fa6;
}

.mobile .nav-wrapper ul.dropdown-list li a:hover
{
	color: var(--third-color);
}
/*-------------------------- Menu style -------------------------*/


/*----------- Scroll to top --------------*/
#topBtn
{
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--fourth-color);
  border: none;
  cursor: pointer;
  display: none;
}

#topBtn ion-icon
{
	color: #fff;
}
/*----------- Scroll to top --------------*/

/*-------- Blue button ---------*/
.btn-blue
{
	background-color: var(--primary-color);
	transition: all .3s ease-in-out;
}

.btn-blue:hover
{
	background-color: var(--primary-color-dark);
}

.btn-blue a
{
	color: var(--fourth-color);
}

.btn-blue:hover a
{
	color: var(--fourth-color);
}

.btn.btn-blue {
    background-color: var(--primary-color);
    color: var(--fourth-color);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn.btn-blue:hover {
    background-color: var(--primary-color-dark);
}

.btn.btn-blue a {
    color: var(--fourth-color);
}

.btn.btn-blue:hover a {
    color: var(--fourth-color);
}

/*---------- Yellow btn ----------*/
.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow > a
{
	color: #000;
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow a
{
	color: var(--third-color);
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

/*------------ Full width button ------------*/
.btn-full-w
{
	padding: 1.2rem 2rem;
	display: block;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}



/*----------------- Hero section styling ----------------*/
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(42, 42, 42, 0.85) 100%);
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(42, 42, 42, 0.75) 100%);
    z-index: 1;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge ion-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.gradient-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.highlight-text {
    color: var(--white);
    position: relative;
    display: inline-block;
    animation: glowText 2s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
        font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards 0.5s;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: translateZ(0);
}

.image-wrapper:hover img {
    transform: scale(1.05) translateZ(20px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
        flex-direction: column;
        align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.hero-scroll span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-scroll ion-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
}
/*----------------- Hero section styling ----------------*/


/*----------------- Why Us section styling ---------------*/
.why-us
{
	background-image: linear-gradient(
	  155deg,
	  hsl(215deg 100% 98%) 0%,
	  hsl(215deg 100% 98%) 30%,
	  hsl(215deg 100% 98%) 38%,
	  hsl(215deg 100% 98%) 43%,
	  hsl(215deg 100% 98%) 47%,
	  hsl(215deg 100% 98%) 48%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 51%,
	  hsl(215deg 100% 100%) 53%,
	  hsl(215deg 100% 100%) 55%,
	  hsl(215deg 100% 100%) 60%,
	  hsl(215deg 100% 100%) 68%,
	  hsl(0deg 0% 100%) 96%
	);
}

.why-us-col ion-icon
{
	font-size: 2rem;
	color: var(--fourth-color);
	background: var(--yellow-color);
	padding: 1rem;
	border: none;
	border-radius: 50px;
}

.why-us-highlight-heading
{
	font-size: 1.4rem;
	font-weight: 600;
}

.lead-form
{
	border: none;
	border-radius: 12px;
	margin: 2.5rem 0;
	padding: 3rem 1.6rem;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.input-field
{
	display: flex;
	flex-direction: column;
	margin: 1rem 0;
}

.input-field label
{
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0.3rem 0;
	text-transform: uppercase;
}

.input-field input
{
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	padding: 1rem;
	background: #f3f8ff;
}
/*----------------- Why Us section styling ---------------*/

.testimonial-carousel {
    display: flex;
    overflow: hidden; /* Yorumlar dışarıya taşmasın */
    position: relative;
    width: 100%;
}

.testimonial-items {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Kaydırma animasyonu */
}

.testimonial-item {
    flex: 0 0 100%; /* Her bir yorum ekranı kaplayacak şekilde */
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    min-width: 100%; /* Her yorum tam genişlikte */
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px auto;
}

.stars ion-icon {
    color: gold;
}

.white {
    color: white;
}

.testimonial-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.para-line {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.head-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Servis başlıkları için modern stil */
.service .service-heading {
    font-weight: 700;
    font-size: 1.6rem;
    margin: 1.2rem 0;
    color: var(--third-color);
    transition: all 0.4s ease;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.service .service-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.service:hover .service-heading::after {
    width: 80px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.3);
}

.service:hover .service-heading {
    color: var(--primary-color);
    transform: translateY(-5px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/*----------------- Services section styling ---------------*/
.service-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .service-img {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.our-services .services
{
	margin: 2rem 0;
}

.services .service
{
	border: none;
	border-radius: 15px;
	margin: 1.5rem 0;
	padding: 2rem;
	background: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	transform: translateY(0);
	position: relative;
	overflow: hidden;
}

.services .service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 0;
}

.services .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.15);
}

.services .service:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service ion-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service:hover ion-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-color);
}

/*----------------- Services section styling ---------------*/



/*----------------- Overline section styling ---------------*/
.overline
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(124, 10, 02, 0.8)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.insurance-policies
{
	border-radius: 6px;
}

.overlines .row .col
{
	margin: 2.6rem 0;
}

.overlines .row .col ion-icon
{
	font-size: 2.6rem;
}

.overline-heading
{
	color: var(--yellow-color);
	font-size: 1.3rem;
	font-weight: 600;
}
/*----------------- Overline section styling ---------------*/


/*----------------- About us section styling ---------------*/
.about-highlights
{
	margin: 2rem 0;
}

.about-highlight-line
{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1rem 0;
}

.about-highlight-line ion-icon
{
	color: var(--yellow-color);
	font-size: 1.6rem;
}

.highlight-line-heading
{
	font-size: 1rem;
	font-weight: 600;
}

.about-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: eaglePower 8s ease-in-out infinite;
    background: transparent !important;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes eaglePower {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1) contrast(1.1);
    }
    25% {
        transform: translateY(-20px) rotate(3deg) scale(1.03);
        filter: brightness(1.1) contrast(1.2);
    }
    50% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1) contrast(1.1);
    }
    75% {
        transform: translateY(-15px) rotate(-3deg) scale(1.03);
        filter: brightness(1.1) contrast(1.2);
    }
}

.about-img::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #CC0000, #ff6b6b, #CC0000, #ff6b6b);
    background-size: 300% 300%;
    z-index: -1;
    border-radius: 33px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientFlow 4s linear infinite;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    mix-blend-mode: multiply;
    isolation: isolate;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1) translateZ(0);
    filter: brightness(1) contrast(1.1) saturate(1.1);
    animation: eagleGlow 6s ease-in-out infinite;
    background: transparent !important;
    mix-blend-mode: multiply;
    isolation: isolate;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes eagleGlow {
    0%, 100% {
        filter: brightness(1) contrast(1.1) saturate(1.1);
    }
    50% {
        filter: brightness(1.2) contrast(1.3) saturate(1.3);
    }
}

.about-img:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(204, 0, 0, 0.25);
    background: transparent !important;
}

.about-img:hover img {
    transform: scale(1.08) translateZ(30px);
    filter: brightness(1.3) contrast(1.4) saturate(1.4);
    background: transparent !important;
}

.about-img:hover::before {
    opacity: 0.8;
}

.about-img:hover::after {
    opacity: 1;
}

/* Kartal Kanat Efekti */
.about-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: wingPower 4s infinite;
    z-index: 3;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes wingPower {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Kartal Göz Parlaması */
.about-img::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: eyePower 3s ease-in-out infinite;
    z-index: 4;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes eyePower {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Kartal Kenar Süsleri */
.about-img-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Gizli SEO İçeriği */
[style*="display: none"],
[style*="absolute"] {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.about-img-decoration::before,
.about-img-decoration::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #CC0000;
    opacity: 0;
    transition: all 0.5s ease;
}

.about-img-decoration::before {
    top: 25px;
    left: 25px;
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.about-img-decoration::after {
    bottom: 25px;
    right: 25px;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
}

.about-img:hover .about-img-decoration::before,
.about-img:hover .about-img-decoration::after {
    opacity: 1;
    transform: rotate(45deg) scale(1.3);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .about-img {
        margin: 0 1rem;
    }
    
    .about-img-decoration::before,
    .about-img-decoration::after {
        width: 30px;
        height: 30px;
    }
    
    .about-img-decoration::before {
        top: 20px;
        left: 20px;
    }
    
    .about-img-decoration::after {
        bottom: 20px;
        right: 20px;
    }
}

.partners {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(204, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    animation: gradientMove 15s ease infinite;
}

.partners .heading {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: var(--third-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.partners .heading::before,
.partners .heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.partners .heading::before {
    top: 0;
}

.partners .heading::after {
    bottom: 0;
}

.partners .heading:hover::before,
.partners .heading:hover::after {
    width: 200px;
    height: 5px;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.6);
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, var(--primary-color));
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@media (max-width: 768px) {
    .partners .heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .partners .heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 0, 0, 0.1);
}

.partner-img {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
    transform: scale(1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 2;
    will-change: transform;
    border: 1px solid rgba(204, 0, 0, 0.1);
    max-width: 140px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.partner-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.partner-img::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.partner-img:hover {
    transform: translateY(-10px) scale(1.05);
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.2);
    border-color: rgba(204, 0, 0, 0.3);
}

.partner-img:hover::before {
    opacity: 1;
}

.partner-img:hover::after {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
    }
}

/* Modern Başlık Efektleri */
.partners .heading {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--third-color);
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    padding: 1.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, var(--third-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.partners .heading::before,
.partners .heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, var(--primary-color));
    background-size: 200% 100%;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
    transition: all 0.5s ease;
    animation: gradientMove 3s linear infinite;
}

.partners .heading::before {
    top: 0;
}

.partners .heading::after {
    bottom: 0;
}

.partners .heading:hover::before,
.partners .heading:hover::after {
    width: 250px;
    height: 5px;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.6);
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners .heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .partners .heading {
        font-size: 2.5rem;
    }

    .partner-img {
        padding: 1rem;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners .heading {
        font-size: 2rem;
    }
    
    .partners {
        padding: 4rem 0;
    }

    .partner-img {
        max-width: 100px;
        padding: 0.8rem;
    }
}

/*----------------- Testimonial section styling --------------*/
.testimonial {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/testimonial-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.testimonial .container {
    position: relative;
    z-index: 2;
}

.testimonial-header {
	text-align: center;
    margin-bottom: 60px;
}

.testimonial-header .sub-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-header .heading {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonial-desc {
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.testimonial-items {
	display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
	justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote-icon ion-icon {
    font-size: 24px;
    color: var(--white);
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text .para-line {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-profile {
    display: flex;
	align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-img-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-overlay ion-icon {
    color: var(--white);
    font-size: 24px;
}

.profile-img-wrapper:hover .profile-overlay {
    opacity: 1;
}

.profile-info {
    flex: 1;
}

.client-name {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
	font-weight: 600;
}

.client-location {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

.rating ion-icon {
    color: #FFD700;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn ion-icon, .next-btn ion-icon {
    font-size: 20px;
    color: var(--primary-color);
}

.prev-btn:hover ion-icon, .next-btn:hover ion-icon {
    color: var(--white);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .testimonial {
        padding: 60px 0;
    }

    .testimonial-header .heading {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .testimonial-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .testimonial-content {
        padding: 25px;
        margin: 0 1rem;
    }

    .testimonial-text .para-line {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-profile {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-img-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .profile-info {
        text-align: center;
    }

    .client-name {
        font-size: 1.1rem;
    }

    .client-location {
        font-size: 0.9rem;
    }

    .rating {
        justify-content: center;
    }

    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        top: 50%;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .carousel-indicators {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial {
        padding: 40px 0;
    }

    .testimonial-header .heading {
        font-size: 2rem;
    }

    .testimonial-header .sub-heading {
        font-size: 1rem;
    }

    .testimonial-content {
        padding: 20px;
    }

    .quote-icon {
        width: 30px;
        height: 30px;
        top: -15px;
        left: 15px;
    }

    .quote-icon ion-icon {
        font-size: 18px;
    }

    .testimonial-text .para-line {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .profile-img-wrapper {
        width: 50px;
        height: 50px;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-location {
        font-size: 0.8rem;
    }

    .rating ion-icon {
        font-size: 16px;
    }

    .prev-btn, .next-btn {
        width: 30px;
        height: 30px;
    }

    .prev-btn ion-icon, .next-btn ion-icon {
        font-size: 16px;
    }
}
/*----------------- Testimonial section styling --------------*/


/*----------------- Agent card styling -----------------------*/
.agent-card
{
	text-align: center;
}

.agent-img
{
	border-radius: 50%;
}

.agent-name
{
	font-size: 2rem;
	font-weight: 600;
}

.agent-number, .agent-email
{
	margin: 1rem 0;
	font-size: 0.9rem;
}
/*----------------- Agent card styling -----------------------*/


/*----------------- Footer styling ------------------*/
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/footer-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

.social-links {
	display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
	justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--white);
    opacity: 0.3;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--white);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-contact ion-icon {
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 3px;
}

.footer-contact span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--white);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-logo {
        width: 160px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-logo {
        width: 140px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 20px;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 10px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}
/*----------------- Footer styling ------------------*/






/*--------------------------------------------------------------*/
/*-------------------- Desktop Screen Styling ------------------*/
/*--------------------------------------------------------------*/
@media screen and (min-width: 789px)
{
	.container, .hero-container
	{
		max-width: 1180px;
		margin: 0 auto;
	}

	.container
	{
		padding: 4rem 0;
	}

	.heading
	{
		font-size: 3.2rem;
	}

	.para-line
	{
		line-height: 1.8;
	}

	.sub-heading
	{
		font-size: 2.5rem;
		padding-bottom: 20px;
		margin-bottom: 30px;
	}

	.sub-heading::after {
		height: 5px;
	}

	.row
	{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 2rem;
	}

	.row .col
	{
		width: 100%;
	}

	.inner-row
	{
		display: flex;
		gap: 2rem;
	}


	/*-------------- Hero section styling ------------------*/
	.hero-container .row > .hero-content
	{
		width: 140%;
	}

	.hero-heading
	{
		font-size: 4rem;
	}

	.hero
	{
		background: linear-gradient(rgba(204, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), url("../img/hero-bg.jpg");
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}
	/*-------------- Hero section styling ------------------*/


	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 5rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 150%;
	}

	.why-us-content .inner-row
	{
		margin-top: 2rem;
	}

	.lead-form
	{
		background: var(--fourth-color);
		padding: 3rem !important;
	}

	.input-field
	{
		margin: 1.5rem 0;
	}
	/*-------------- Why us styling ---------------------*/


	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 66%;
		margin: 0 auto;
	}

	.services, .partners-grid
	{
		display: grid;
		grid-template-rows: repeat(2, 1fr);
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 2rem;
	}
	/*-------------- Services section styling --------------*/



	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 4rem;
	}

	.partners
	{
		margin-top: 4rem;
	}
	/*-------------- About section styling ------------------*/


	/*-------------- Testimonial section styling ---------------*/
	.testimonial .container .para-line
	{
		max-width: 840px;
		margin: 0 auto;
		font-size: 1.1rem;
	}

	.testimonial
	{
		padding: 4rem 0;
	}
	/*-------------- Testimonial section styling ---------------*/
}

/* Modern Header ve Navigasyon Stilleri */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

.navbar {
    height: var(--header-height);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    flex-shrink: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--third-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-link:hover i {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color);
}

/* Dropdown Menü */
.dropdown-toggle {
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: var(--third-color);
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i:last-child {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Dropdown menü için hover alanını genişlet */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    pointer-events: none;
}

/* Mobil menü için düzenlemeler */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        pointer-events: auto;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.nav-wrapper .nav-list li .btn a
{
	color: var(--fourth-color);
}

.nav-wrapper .nav-list li .btn:hover a
{
	color: var(--fourth-color) !important;
}

.btn-blue
{
	background-color: var(--primary-color);
	transition: all .3s ease-in-out;
}

.btn-blue:hover
{
	background-color: var(--primary-color-dark);
}

.btn-blue a
{
	color: var(--fourth-color);
}

.btn-blue:hover a
{
	color: var(--fourth-color);
}

.btn.btn-blue {
    background-color: var(--primary-color);
    color: var(--fourth-color);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn.btn-blue:hover {
    background-color: var(--primary-color-dark);
}

.btn.btn-blue a {
    color: var(--fourth-color);
}

.btn.btn-blue:hover a {
    color: var(--fourth-color);
}

/*---------- Yellow btn ----------*/
.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow > a
{
	color: #000;
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow a
{
	color: var(--third-color);
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

/*------------ Full width button ------------*/
.btn-full-w
{
	padding: 1.2rem 2rem;
	display: block;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}



/*----------------- Hero section styling ----------------*/
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(42, 42, 42, 0.85) 100%);
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(42, 42, 42, 0.75) 100%);
    z-index: 1;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge ion-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.gradient-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.highlight-text {
    color: var(--white);
    position: relative;
    display: inline-block;
    animation: glowText 2s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
        font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards 0.5s;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: translateZ(0);
}

.image-wrapper:hover img {
    transform: scale(1.05) translateZ(20px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
        flex-direction: column;
        align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.hero-scroll span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-scroll ion-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    gap: 1.5rem;
}

    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
}
/*----------------- Hero section styling ----------------*/


/*----------------- Why Us section styling ---------------*/
.why-us
{
	background-image: linear-gradient(
	  155deg,
	  hsl(215deg 100% 98%) 0%,
	  hsl(215deg 100% 98%) 30%,
	  hsl(215deg 100% 98%) 38%,
	  hsl(215deg 100% 98%) 43%,
	  hsl(215deg 100% 98%) 47%,
	  hsl(215deg 100% 98%) 48%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 51%,
	  hsl(215deg 100% 100%) 53%,
	  hsl(215deg 100% 100%) 55%,
	  hsl(215deg 100% 100%) 60%,
	  hsl(215deg 100% 100%) 68%,
	  hsl(0deg 0% 100%) 96%
	);
}

.why-us-col ion-icon
{
	font-size: 2rem;
	color: var(--fourth-color);
	background: var(--yellow-color);
	padding: 1rem;
	border: none;
	border-radius: 50px;
}

.why-us-highlight-heading
{
	font-size: 1.4rem;
	font-weight: 600;
}

.lead-form
{
	border: none;
	border-radius: 12px;
	margin: 2.5rem 0;
	padding: 3rem 1.6rem;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.input-field
{
    display: flex;
	flex-direction: column;
	margin: 1rem 0;
}

.input-field label
{
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0.3rem 0;
	text-transform: uppercase;
}

.input-field input
{
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	padding: 1rem;
	background: #f3f8ff;
}
/*----------------- Why Us section styling ---------------*/

.testimonial-carousel {
    display: flex;
    overflow: hidden; /* Yorumlar dışarıya taşmasın */
    position: relative;
    width: 100%;
}

.testimonial-items {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Kaydırma animasyonu */
}

.testimonial-item {
    flex: 0 0 100%; /* Her bir yorum ekranı kaplayacak şekilde */
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    min-width: 100%; /* Her yorum tam genişlikte */
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px auto;
}

.stars ion-icon {
    color: gold;
}

.white {
    color: white;
}

.testimonial-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.para-line {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.head-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Servis başlıkları için modern stil */
.service .service-heading {
    font-weight: 700;
    font-size: 1.6rem;
    margin: 1.2rem 0;
    color: var(--third-color);
    transition: all 0.4s ease;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.service .service-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.service:hover .service-heading::after {
    width: 80px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.3);
}

.service:hover .service-heading {
    color: var(--primary-color);
    transform: translateY(-5px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/*----------------- Services section styling ---------------*/
.service-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .service-img {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.our-services .services
{
	margin: 2rem 0;
}

.services .service
{
	border: none;
	border-radius: 15px;
	margin: 1.5rem 0;
	padding: 2rem;
	background: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	transform: translateY(0);
	position: relative;
	overflow: hidden;
}

.services .service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 0;
}

.services .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.15);
}

.services .service:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service ion-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service:hover ion-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-color);
}

/*----------------- Services section styling ---------------*/



/*----------------- Overline section styling ---------------*/
.overline
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(124, 10, 02, 0.8)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.insurance-policies
{
	border-radius: 6px;
}

.overlines .row .col
{
	margin: 2.6rem 0;
}

.overlines .row .col ion-icon
{
	font-size: 2.6rem;
}

.overline-heading
{
	color: var(--yellow-color);
	font-size: 1.3rem;
	font-weight: 600;
}
/*----------------- Overline section styling ---------------*/


/*----------------- About us section styling ---------------*/
.about-highlights
{
	margin: 2rem 0;
}

.about-highlight-line
{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1rem 0;
}

.about-highlight-line ion-icon
{
	color: var(--yellow-color);
	font-size: 1.6rem;
}

.highlight-line-heading
{
	font-size: 1rem;
	font-weight: 600;
}

.about-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: eaglePower 8s ease-in-out infinite;
    background: transparent !important;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes eaglePower {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1) contrast(1.1);
    }
    25% {
        transform: translateY(-20px) rotate(3deg) scale(1.03);
        filter: brightness(1.1) contrast(1.2);
    }
    50% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1) contrast(1.1);
    }
    75% {
        transform: translateY(-15px) rotate(-3deg) scale(1.03);
        filter: brightness(1.1) contrast(1.2);
    }
}

.about-img::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #CC0000, #ff6b6b, #CC0000, #ff6b6b);
    background-size: 300% 300%;
    z-index: -1;
    border-radius: 33px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientFlow 4s linear infinite;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    mix-blend-mode: multiply;
    isolation: isolate;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1) translateZ(0);
    filter: brightness(1) contrast(1.1) saturate(1.1);
    animation: eagleGlow 6s ease-in-out infinite;
    background: transparent !important;
    mix-blend-mode: multiply;
    isolation: isolate;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes eagleGlow {
    0%, 100% {
        filter: brightness(1) contrast(1.1) saturate(1.1);
    }
    50% {
        filter: brightness(1.2) contrast(1.3) saturate(1.3);
    }
}

.about-img:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(204, 0, 0, 0.25);
    background: transparent !important;
}

.about-img:hover img {
    transform: scale(1.08) translateZ(30px);
    filter: brightness(1.3) contrast(1.4) saturate(1.4);
    background: transparent !important;
}

.about-img:hover::before {
    opacity: 0.8;
}

.about-img:hover::after {
    opacity: 1;
}

/* Kartal Kanat Efekti */
.about-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: wingPower 4s infinite;
    z-index: 3;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes wingPower {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Kartal Göz Parlaması */
.about-img::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: eyePower 3s ease-in-out infinite;
    z-index: 4;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes eyePower {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Kartal Kenar Süsleri */
.about-img-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Gizli SEO İçeriği */
[style*="display: none"],
[style*="absolute"] {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.about-img-decoration::before,
.about-img-decoration::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #CC0000;
    opacity: 0;
    transition: all 0.5s ease;
}

.about-img-decoration::before {
    top: 25px;
    left: 25px;
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.about-img-decoration::after {
    bottom: 25px;
    right: 25px;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
}

.about-img:hover .about-img-decoration::before,
.about-img:hover .about-img-decoration::after {
    opacity: 1;
    transform: rotate(45deg) scale(1.3);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .about-img {
        margin: 0 1rem;
    }
    
    .about-img-decoration::before,
    .about-img-decoration::after {
        width: 30px;
        height: 30px;
    }
    
    .about-img-decoration::before {
        top: 20px;
        left: 20px;
    }
    
    .about-img-decoration::after {
        bottom: 20px;
        right: 20px;
    }
}

.partners {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(204, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    animation: gradientMove 15s ease infinite;
}

.partners .heading {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: var(--third-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.partners .heading::before,
.partners .heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.partners .heading::before {
    top: 0;
}

.partners .heading::after {
    bottom: 0;
}

.partners .heading:hover::before,
.partners .heading:hover::after {
    width: 200px;
    height: 5px;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.6);
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, var(--primary-color));
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@media (max-width: 768px) {
    .partners .heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .partners .heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 0, 0, 0.1);
}

.partner-img {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
    transform: scale(1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 2;
    will-change: transform;
    border: 1px solid rgba(204, 0, 0, 0.1);
    max-width: 140px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.partner-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.partner-img::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.partner-img:hover {
    transform: translateY(-10px) scale(1.05);
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.2);
    border-color: rgba(204, 0, 0, 0.3);
}

.partner-img:hover::before {
    opacity: 1;
}

.partner-img:hover::after {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
    }
}

/* Modern Başlık Efektleri */
.partners .heading {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--third-color);
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    padding: 1.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, var(--third-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.partners .heading::before,
.partners .heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, var(--primary-color));
    background-size: 200% 100%;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
    transition: all 0.5s ease;
    animation: gradientMove 3s linear infinite;
}

.partners .heading::before {
    top: 0;
}

.partners .heading::after {
    bottom: 0;
}

.partners .heading:hover::before,
.partners .heading:hover::after {
    width: 250px;
    height: 5px;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.6);
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners .heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
        padding: 1.5rem;
    }

    .partners .heading {
        font-size: 2.5rem;
    }

    .partner-img {
    padding: 1rem;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners .heading {
        font-size: 2rem;
    }
    
    .partners {
        padding: 4rem 0;
    }

    .partner-img {
        max-width: 100px;
        padding: 0.8rem;
    }
}

/*----------------- Testimonial section styling --------------*/
.testimonial {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/testimonial-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.testimonial .container {
    position: relative;
    z-index: 2;
}

.testimonial-header {
	text-align: center;
    margin-bottom: 60px;
}

.testimonial-header .sub-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-header .heading {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonial-desc {
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.testimonial-items {
	display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
	justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote-icon ion-icon {
    font-size: 24px;
    color: var(--white);
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text .para-line {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-profile {
    display: flex;
	align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-img-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-overlay ion-icon {
    color: var(--white);
    font-size: 24px;
}

.profile-img-wrapper:hover .profile-overlay {
    opacity: 1;
}

.profile-info {
    flex: 1;
}

.client-name {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
	font-weight: 600;
}

.client-location {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

.rating ion-icon {
    color: #FFD700;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn ion-icon, .next-btn ion-icon {
    font-size: 20px;
    color: var(--primary-color);
}

.prev-btn:hover ion-icon, .next-btn:hover ion-icon {
    color: var(--white);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .testimonial {
        padding: 60px 0;
    }

    .testimonial-header .heading {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .testimonial-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .testimonial-content {
        padding: 25px;
        margin: 0 1rem;
    }

    .testimonial-text .para-line {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-profile {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-img-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .profile-info {
        text-align: center;
    }

    .client-name {
        font-size: 1.1rem;
    }

    .client-location {
        font-size: 0.9rem;
    }

    .rating {
        justify-content: center;
    }

    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        top: 50%;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .carousel-indicators {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial {
        padding: 40px 0;
    }

    .testimonial-header .heading {
        font-size: 2rem;
    }

    .testimonial-header .sub-heading {
        font-size: 1rem;
    }

    .testimonial-content {
        padding: 20px;
    }

    .quote-icon {
        width: 30px;
        height: 30px;
        top: -15px;
        left: 15px;
    }

    .quote-icon ion-icon {
        font-size: 18px;
    }

    .testimonial-text .para-line {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .profile-img-wrapper {
        width: 50px;
        height: 50px;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-location {
        font-size: 0.8rem;
    }

    .rating ion-icon {
        font-size: 16px;
    }

    .prev-btn, .next-btn {
        width: 30px;
        height: 30px;
    }

    .prev-btn ion-icon, .next-btn ion-icon {
        font-size: 16px;
    }
}
/*----------------- Testimonial section styling --------------*/


/*----------------- Agent card styling -----------------------*/
.agent-card
{
	text-align: center;
}

.agent-img
{
	border-radius: 50%;
}

.agent-name
{
	font-size: 2rem;
	font-weight: 600;
}

.agent-number, .agent-email
{
	margin: 1rem 0;
	font-size: 0.9rem;
}
/*----------------- Agent card styling -----------------------*/


/*----------------- Footer styling ------------------*/
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/footer-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

.social-links {
	display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
	justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--white);
    opacity: 0.3;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--white);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-contact ion-icon {
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 3px;
}

.footer-contact span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--white);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-logo {
        width: 160px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-logo {
        width: 140px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 20px;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 10px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}
/*----------------- Footer styling ------------------*/






/*--------------------------------------------------------------*/
/*-------------------- Desktop Screen Styling ------------------*/
/*--------------------------------------------------------------*/
@media screen and (min-width: 789px)
{
	.container, .hero-container
	{
		max-width: 1180px;
		margin: 0 auto;
	}

	.container
	{
		padding: 4rem 0;
	}

	.heading
	{
		font-size: 3.2rem;
	}

	.para-line
	{
		line-height: 1.8;
	}

	.sub-heading
	{
		font-size: 2.5rem;
		padding-bottom: 20px;
		margin-bottom: 30px;
	}

	.sub-heading::after {
		height: 5px;
	}

	.row
	{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 2rem;
	}

	.row .col
	{
		width: 100%;
	}

	.inner-row
	{
		display: flex;
		gap: 2rem;
	}


	/*-------------- Hero section styling ------------------*/
	.hero-container .row > .hero-content
	{
		width: 140%;
	}

	.hero-heading
	{
		font-size: 4rem;
	}

	.hero
	{
		background: linear-gradient(rgba(204, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), url("../img/hero-bg.jpg");
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}
	/*-------------- Hero section styling ------------------*/


	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 5rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 150%;
	}

	.why-us-content .inner-row
	{
		margin-top: 2rem;
	}

	.lead-form
	{
		background: var(--fourth-color);
		padding: 3rem !important;
	}

	.input-field
	{
		margin: 1.5rem 0;
	}
	/*-------------- Why us styling ---------------------*/


	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 66%;
		margin: 0 auto;
	}

	.services, .partners-grid
	{
		display: grid;
		grid-template-rows: repeat(2, 1fr);
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 2rem;
	}
	/*-------------- Services section styling --------------*/



	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 4rem;
	}

	.partners
	{
		margin-top: 4rem;
	}
	/*-------------- About section styling ------------------*/


	/*-------------- Testimonial section styling ---------------*/
	.testimonial .container .para-line
	{
		max-width: 840px;
		margin: 0 auto;
		font-size: 1.1rem;
	}

	.testimonial
	{
		padding: 4rem 0;
	}
	/*-------------- Testimonial section styling ---------------*/
}

/* Modern Header ve Navigasyon Stilleri */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

.navbar {
    height: var(--header-height);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    flex-shrink: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--third-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-link:hover i {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color);
}

/* Dropdown Menü */
.dropdown-toggle {
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: var(--third-color);
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i:last-child {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Dropdown menü için hover alanını genişlet */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    pointer-events: none;
}

/* Mobil menü için düzenlemeler */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        pointer-events: auto;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.nav-wrapper .nav-list li .btn a
{
	color: var(--fourth-color);
}

.nav-wrapper .nav-list li .btn:hover a
{
	color: var(--fourth-color) !important;
}

@keyframes moveUp
{
  0%
  {
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
  }
  100%
  {
    opacity: 1;
    transform: translateX(-50%) translateY(20px);
  }
}

.hamberger
{
  display: none;
}

.mobile .hamberger
{
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  cursor: pointer;
}

.mobile .hamberger span
{
  background: var(--third-color);
  width: 28px;
  height: 2px;
  margin-bottom: 8px;
}

.mobile ul.nav-list
{
  background: -webkit-linear-gradient(45deg, #f5f6fa, #dcdde1);
  background: linear-gradient(45deg, #f5f6fa, #dcdde1);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: All .3s ease-in-out;
}

.hamberger, .brand
{
  z-index: 9999;
}

.mobile ul.nav-list.open
{
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
  overflow-y: auto;
}


.mobile .hamberger span
{
  transform-origin: left;
  transition: all .3s ease-in-out;
}

.mobile ul.nav-list li a
{
  font-size: 20px;
}

.mobile ul.dropdown-list
{
  position: relative;
  background: transparent;
  text-align: center;
  height: 0;
  overflow-y: hidden;
  transition: opacity 1s ease-in-out;
  padding-top: 0;
}

.mobile .nav-wrapper ul li:hover .dropdown-list
{
  height: max-content;
  padding-top: 6px;
}

.mobile ul.nav-list li
{
  margin-left: 0;
  text-align: center;
}

.mobile .nav-wrapper ul.dropdown-list li a
{
  color: #7f8fa6;
}

.mobile .nav-wrapper ul.dropdown-list li a:hover
{
	color: var(--third-color);
}
/*-------------------------- Menu style -------------------------*/


/*----------- Scroll to top --------------*/
#topBtn
{
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--fourth-color);
  border: none;
  cursor: pointer;
  display: none;
}

#topBtn ion-icon
{
	color: #fff;
}
/*----------- Scroll to top --------------*/

/*-------- Blue button ---------*/
.btn-blue
{
	background-color: var(--primary-color);
	transition: all .3s ease-in-out;
}

.btn-blue:hover
{
	background-color: var(--primary-color-dark);
}

.btn-blue a
{
	color: var(--fourth-color);
}

.btn-blue:hover a
{
	color: var(--fourth-color);
}

.btn.btn-blue {
    background-color: var(--primary-color);
    color: var(--fourth-color);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn.btn-blue:hover {
    background-color: var(--primary-color-dark);
}

.btn.btn-blue a {
    color: var(--fourth-color);
}

.btn.btn-blue:hover a {
    color: var(--fourth-color);
}

/*---------- Yellow btn ----------*/
.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow > a
{
	color: #000;
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow a
{
	color: var(--third-color);
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

/*------------ Full width button ------------*/
.btn-full-w
{
	padding: 1.2rem 2rem;
	display: block;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}



/*----------------- Hero section styling ----------------*/
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(42, 42, 42, 0.85) 100%);
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(42, 42, 42, 0.75) 100%);
    z-index: 1;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge ion-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.gradient-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.highlight-text {
    color: var(--white);
    position: relative;
    display: inline-block;
    animation: glowText 2s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
        font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards 0.5s;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: translateZ(0);
}

.image-wrapper:hover img {
    transform: scale(1.05) translateZ(20px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
        flex-direction: column;
        align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.hero-scroll span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-scroll ion-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
}
/*----------------- Hero section styling ----------------*/


/*----------------- Why Us section styling ---------------*/
.why-us
{
	background-image: linear-gradient(
	  155deg,
	  hsl(215deg 100% 98%) 0%,
	  hsl(215deg 100% 98%) 30%,
	  hsl(215deg 100% 98%) 38%,
	  hsl(215deg 100% 98%) 43%,
	  hsl(215deg 100% 98%) 47%,
	  hsl(215deg 100% 98%) 48%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 51%,
	  hsl(215deg 100% 100%) 53%,
	  hsl(215deg 100% 100%) 55%,
	  hsl(215deg 100% 100%) 60%,
	  hsl(215deg 100% 100%) 68%,
	  hsl(0deg 0% 100%) 96%
	);
}

.why-us-col ion-icon
{
	font-size: 2rem;
	color: var(--fourth-color);
	background: var(--yellow-color);
	padding: 1rem;
	border: none;
	border-radius: 50px;
}

.why-us-highlight-heading
{
	font-size: 1.4rem;
	font-weight: 600;
}

.lead-form
{
	border: none;
	border-radius: 12px;
	margin: 2.5rem 0;
	padding: 3rem 1.6rem;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.input-field
{
	display: flex;
	flex-direction: column;
	margin: 1rem 0;
}

.input-field label
{
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0.3rem 0;
	text-transform: uppercase;
}

.input-field input
{
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	padding: 1rem;
	background: #f3f8ff;
}
/*----------------- Why Us section styling ---------------*/

.testimonial-carousel {
    display: flex;
    overflow: hidden; /* Yorumlar dışarıya taşmasın */
    position: relative;
    width: 100%;
}

.testimonial-items {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Kaydırma animasyonu */
}

.testimonial-item {
    flex: 0 0 100%; /* Her bir yorum ekranı kaplayacak şekilde */
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    min-width: 100%; /* Her yorum tam genişlikte */
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px auto;
}

.stars ion-icon {
    color: gold;
}

.white {
    color: white;
}

.testimonial-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.para-line {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.head-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Servis başlıkları için modern stil */
.service .service-heading {
    font-weight: 700;
    font-size: 1.6rem;
    margin: 1.2rem 0;
    color: var(--third-color);
    transition: all 0.4s ease;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.service .service-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.service:hover .service-heading::after {
    width: 80px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.3);
}

.service:hover .service-heading {
    color: var(--primary-color);
    transform: translateY(-5px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/*----------------- Services section styling ---------------*/
.service-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .service-img {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.our-services .services
{
	margin: 2rem 0;
}

.services .service
{
	border: none;
	border-radius: 15px;
	margin: 1.5rem 0;
	padding: 2rem;
	background: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	transform: translateY(0);
	position: relative;
	overflow: hidden;
}

.services .service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 0;
}

.services .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.15);
}

.services .service:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service ion-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service:hover ion-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-color);
}

/*----------------- Services section styling ---------------*/



/*----------------- Overline section styling ---------------*/
.overline
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(124, 10, 02, 0.8)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
    text-align: center;
}

.insurance-policies
{
	border-radius: 6px;
}

.overlines .row .col
{
	margin: 2.6rem 0;
}

.overlines .row .col ion-icon
{
	font-size: 2.6rem;
}

.overline-heading
{
	color: var(--yellow-color);
	font-size: 1.3rem;
	font-weight: 600;
}
/*----------------- Overline section styling ---------------*/


/*----------------- About us section styling ---------------*/
.about-highlights
{
	margin: 2rem 0;
}

.about-highlight-line
{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1rem 0;
}

.about-highlight-line ion-icon
{
	color: var(--yellow-color);
	font-size: 1.6rem;
}

.highlight-line-heading
{
    font-size: 1rem;
    font-weight: 600;
}

.about-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: eaglePower 8s ease-in-out infinite;
    background: transparent !important;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes eaglePower {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1) contrast(1.1);
    }
    25% {
        transform: translateY(-20px) rotate(3deg) scale(1.03);
        filter: brightness(1.1) contrast(1.2);
    }
    50% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1) contrast(1.1);
    }
    75% {
        transform: translateY(-15px) rotate(-3deg) scale(1.03);
        filter: brightness(1.1) contrast(1.2);
    }
}

.about-img::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #CC0000, #ff6b6b, #CC0000, #ff6b6b);
    background-size: 300% 300%;
    z-index: -1;
    border-radius: 33px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientFlow 4s linear infinite;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    mix-blend-mode: multiply;
    isolation: isolate;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1) translateZ(0);
    filter: brightness(1) contrast(1.1) saturate(1.1);
    animation: eagleGlow 6s ease-in-out infinite;
    background: transparent !important;
    mix-blend-mode: multiply;
    isolation: isolate;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes eagleGlow {
    0%, 100% {
        filter: brightness(1) contrast(1.1) saturate(1.1);
    }
    50% {
        filter: brightness(1.2) contrast(1.3) saturate(1.3);
    }
}

.about-img:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(204, 0, 0, 0.25);
    background: transparent !important;
}

.about-img:hover img {
    transform: scale(1.08) translateZ(30px);
    filter: brightness(1.3) contrast(1.4) saturate(1.4);
    background: transparent !important;
}

.about-img:hover::before {
    opacity: 0.8;
}

.about-img:hover::after {
    opacity: 1;
}

/* Kartal Kanat Efekti */
.about-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: wingPower 4s infinite;
    z-index: 3;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes wingPower {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Kartal Göz Parlaması */
.about-img::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: eyePower 3s ease-in-out infinite;
    z-index: 4;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes eyePower {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Kartal Kenar Süsleri */
.about-img-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Gizli SEO İçeriği */
[style*="display: none"],
[style*="absolute"] {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.about-img-decoration::before,
/*--------------------- Google fonts ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* --------------------- CSS Global variables ------------*/
:root
{
	/*------------ Colors -------------*/
	--primary-color: #CC0000;     /* Kırmızı */
	--secondary-color: #000000;   /* Siyah */
	--third-color: #000000;       /* Siyah */
	--fourth-color: #ffffff;      /* Beyaz */
	--blue-color: #CC0000;    /*---- Button Blue -----*/
	--yellow-color: #CC0000;  /*---- Button Yello ----*/


	/*------------ Font Size --------------*/
	--heading-font-size: 1.5rem;
	--paragraph-font-size: 1rem;

	/* Modern Header ve Navigasyon Stilleri */
	--header-height: 80px;
	--nav-bg: rgba(255, 255, 255, 0.98);
	--nav-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	--primary-color-dark: #990000; /* Koyu Kırmızı */
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	/* Modern CSS Variables */
	--primary-dark: #990000;
	--accent-color: #FFD700;
	--text-color: #333333;
	--light-gray: #f5f5f5;
	--white: #ffffff;
	--shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
	--shadow-md: 0 4px 6px rgba(0,0,0,0.1);
	--shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

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

html
{
	font-size: 16px;
}

body
{
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	overflow-x: hidden;
}

.container
{
	padding: 2rem;
}

.heading
{
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 1rem 0;
	margin-bottom: 1.5rem;
	color: var(--third-color);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	position: relative;
	transition: all 0.3s ease;
}

.heading:hover {
	transform: translateY(-2px);
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
}

.sub-heading
{
	color: var(--primary-color);
	font-size: 2.2rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 4px;
	position: relative;
	display: inline-block;
	padding-bottom: 20px;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px rgba(204, 0, 0, 0.2);
	transform-style: preserve-3d;
	transition: all 0.4s ease;
}

.sub-heading:hover {
	transform: translateY(-5px);
	text-shadow: 4px 4px 8px rgba(204, 0, 0, 0.3);
}

.sub-heading::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	border-radius: 4px;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.5s ease;
}

.sub-heading:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

.sub-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--primary-color);
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
	animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
	0% {
		box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
	}
	50% {
		box-shadow: 0 2px 20px rgba(204, 0, 0, 0.6);
	}
	100% {
		box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
	}
}

img
{
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6
{
	font-family: 'Poppins', sans-serif;
}

p
{
	font-family: 'Inter', sans-serif;
}

.white
{
	color: #ffffff;
}

.para-line
{
	font-size: 1rem;
	line-height: 1.5;
}

.btn
{
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.btn a
{
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
}


/*-------------------------- Menu style -------------------------*/
.menu-container
{
  width: 1152px;
  max-width: 90%;
  margin: 0 auto;
}

.nav-wrapper
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrapper ul.nav-list
{
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-wrapper ul.nav-list li 
{
  margin-left: 30px;
  padding: 20px 0;
  position: relative;
}

.nav-wrapper ul.nav-list li a
{
  color: var(--third-color);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all .5s ease-in-out;
}

.nav-wrapper ul.nav-list li a:hover, .nav-wrapper ul.nav-list li.active a
{
  color: var(--blue-color);
}

.nav-wrapper ul.dropdown-list
{
  list-style-type: none;
  display: block;
  background: whitesmoke;
  padding: 6px 16px;
  position: absolute;
  width: max-content;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.nav-wrapper ul.dropdown-list li
{
  margin-left: 0;
  padding: 8px 0;
  position: relative;
}

.nav-wrapper ul.dropdown-list li a
{
  color: var(--third-color);
  display: block;
  padding: 8px 16px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-wrapper ul.dropdown-list li a:hover
{
  background: rgba(0, 0, 0, 0.05);
  color: var(--blue-color);
}

.nav-wrapper ul.nav-list li:hover .dropdown-list
{
  opacity: 1;
  pointer-events: auto;
  animation: moveUp .5s ease-in-out forwards;
}

/* Dropdown menü ile ana menü arasındaki boşluğu kapatmak için */
.nav-wrapper ul.nav-list li.dropdown::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

/* Mobil menü için düzenlemeler */
@media (max-width: 768px) {
  .nav-wrapper ul.dropdown-list {
    position: static;
    background: transparent;
    box-shadow: none;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    display: none;
    padding: 0;
    margin-top: 8px;
  }

  .nav-wrapper ul.nav-list li:hover .dropdown-list {
    display: block;
    animation: none;
  }

  .nav-wrapper ul.dropdown-list li {
    padding: 4px 0;
  }

  .nav-wrapper ul.dropdown-list li a {
    padding: 8px 16px;
    color: #666;
  }
}

@keyframes moveUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-wrapper .nav-list li .btn a
{
	color: var(--fourth-color);
}

.nav-wrapper .nav-list li .btn:hover a
{
	color: var(--fourth-color) !important;
}

.hamberger
{
  display: none;
}

.mobile .hamberger
{
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  cursor: pointer;
}

.mobile .hamberger span
{
  background: var(--third-color);
  width: 28px;
  height: 2px;
  margin-bottom: 8px;
}

.mobile ul.nav-list
{
  background: -webkit-linear-gradient(45deg, #f5f6fa, #dcdde1);
  background: linear-gradient(45deg, #f5f6fa, #dcdde1);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: All .3s ease-in-out;
}

.hamberger, .brand
{
  z-index: 9999;
}

.mobile ul.nav-list.open
{
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
  overflow-y: auto;
}


.mobile .hamberger span
{
  transform-origin: left;
  transition: all .3s ease-in-out;
}

.mobile ul.nav-list li a
{
  font-size: 20px;
}

.mobile ul.dropdown-list
{
  position: relative;
  background: transparent;
  text-align: center;
  height: 0;
  overflow-y: hidden;
  transition: opacity 1s ease-in-out;
  padding-top: 0;
}

.mobile .nav-wrapper ul li:hover .dropdown-list
{
  height: max-content;
  padding-top: 6px;
}

.mobile ul.nav-list li
{
  margin-left: 0;
  text-align: center;
}

.mobile .nav-wrapper ul.dropdown-list li a
{
  color: #7f8fa6;
}

.mobile .nav-wrapper ul.dropdown-list li a:hover
{
	color: var(--third-color);
}
/*-------------------------- Menu style -------------------------*/


/*----------- Scroll to top --------------*/
#topBtn
{
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--fourth-color);
  border: none;
  cursor: pointer;
  display: none;
}

#topBtn ion-icon
{
	color: #fff;
}
/*----------- Scroll to top --------------*/

/*-------- Blue button ---------*/
.btn-blue
{
	background-color: var(--primary-color);
	transition: all .3s ease-in-out;
}

.btn-blue:hover
{
	background-color: var(--primary-color-dark);
}

.btn-blue a
{
	color: var(--fourth-color);
}

.btn-blue:hover a
{
	color: var(--fourth-color);
}

.btn.btn-blue {
    background-color: var(--primary-color);
    color: var(--fourth-color);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn.btn-blue:hover {
    background-color: var(--primary-color-dark);
}

.btn.btn-blue a {
    color: var(--fourth-color);
}

.btn.btn-blue:hover a {
    color: var(--fourth-color);
}

/*---------- Yellow btn ----------*/
.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow > a
{
	color: #000;
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow a
{
	color: var(--third-color);
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

/*------------ Full width button ------------*/
.btn-full-w
{
	padding: 1.2rem 2rem;
	display: block;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}



/*----------------- Hero section styling ----------------*/
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(42, 42, 42, 0.85) 100%);
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(42, 42, 42, 0.75) 100%);
    z-index: 1;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge ion-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.gradient-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.highlight-text {
    color: var(--white);
    position: relative;
    display: inline-block;
    animation: glowText 2s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
        font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards 0.5s;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: translateZ(0);
}

.image-wrapper:hover img {
    transform: scale(1.05) translateZ(20px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
        flex-direction: column;
        align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.hero-scroll span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-scroll ion-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
}
/*----------------- Hero section styling ----------------*/


/*----------------- Why Us section styling ---------------*/
.why-us
{
	background-image: linear-gradient(
	  155deg,
	  hsl(215deg 100% 98%) 0%,
	  hsl(215deg 100% 98%) 30%,
	  hsl(215deg 100% 98%) 38%,
	  hsl(215deg 100% 98%) 43%,
	  hsl(215deg 100% 98%) 47%,
	  hsl(215deg 100% 98%) 48%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 51%,
	  hsl(215deg 100% 100%) 53%,
	  hsl(215deg 100% 100%) 55%,
	  hsl(215deg 100% 100%) 60%,
	  hsl(215deg 100% 100%) 68%,
	  hsl(0deg 0% 100%) 96%
	);
}

.why-us-col ion-icon
{
	font-size: 2rem;
	color: var(--fourth-color);
	background: var(--yellow-color);
	padding: 1rem;
	border: none;
	border-radius: 50px;
}

.why-us-highlight-heading
{
	font-size: 1.4rem;
	font-weight: 600;
}

.lead-form
{
	border: none;
	border-radius: 12px;
	margin: 2.5rem 0;
	padding: 3rem 1.6rem;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.input-field
{
	display: flex;
	flex-direction: column;
	margin: 1rem 0;
}

.input-field label
{
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0.3rem 0;
	text-transform: uppercase;
}

.input-field input
{
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	padding: 1rem;
	background: #f3f8ff;
}
/*----------------- Why Us section styling ---------------*/

.testimonial-carousel {
    display: flex;
    overflow: hidden; /* Yorumlar dışarıya taşmasın */
    position: relative;
    width: 100%;
}

.testimonial-items {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Kaydırma animasyonu */
}

.testimonial-item {
    flex: 0 0 100%; /* Her bir yorum ekranı kaplayacak şekilde */
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    min-width: 100%; /* Her yorum tam genişlikte */
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px auto;
}

.stars ion-icon {
    color: gold;
}

.white {
    color: white;
}

.testimonial-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.para-line {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.head-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Servis başlıkları için modern stil */
.service .service-heading {
    font-weight: 700;
    font-size: 1.6rem;
    margin: 1.2rem 0;
    color: var(--third-color);
    transition: all 0.4s ease;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.service .service-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.service:hover .service-heading::after {
    width: 80px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.3);
}

.service:hover .service-heading {
    color: var(--primary-color);
    transform: translateY(-5px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/*----------------- Services section styling ---------------*/
.service-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .service-img {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.our-services .services
{
	margin: 2rem 0;
}

.services .service
{
	border: none;
	border-radius: 15px;
	margin: 1.5rem 0;
	padding: 2rem;
	background: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	transform: translateY(0);
	position: relative;
	overflow: hidden;
}

.services .service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 0;
}

.services .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.15);
}

.services .service:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service ion-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service:hover ion-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-color);
}

/*----------------- Services section styling ---------------*/



/*----------------- Overline section styling ---------------*/
.overline
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(124, 10, 02, 0.8)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.insurance-policies
{
	border-radius: 6px;
}

.overlines .row .col
{
	margin: 2.6rem 0;
}

.overlines .row .col ion-icon
{
	font-size: 2.6rem;
}

.overline-heading
{
	color: var(--yellow-color);
	font-size: 1.3rem;
	font-weight: 600;
}
/*----------------- Overline section styling ---------------*/


/*----------------- About us section styling ---------------*/
.about-highlights
{
	margin: 2rem 0;
}

.about-highlight-line
{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1rem 0;
}

.about-highlight-line ion-icon
{
	color: var(--yellow-color);
	font-size: 1.6rem;
}

.highlight-line-heading
{
	font-size: 1rem;
	font-weight: 600;
}

.about-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: eaglePower 8s ease-in-out infinite;
    background: transparent !important;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes eaglePower {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1) contrast(1.1);
    }
    25% {
        transform: translateY(-20px) rotate(3deg) scale(1.03);
        filter: brightness(1.1) contrast(1.2);
    }
    50% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1) contrast(1.1);
    }
    75% {
        transform: translateY(-15px) rotate(-3deg) scale(1.03);
        filter: brightness(1.1) contrast(1.2);
    }
}

.about-img::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #CC0000, #ff6b6b, #CC0000, #ff6b6b);
    background-size: 300% 300%;
    z-index: -1;
    border-radius: 33px;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientFlow 4s linear infinite;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    mix-blend-mode: multiply;
    isolation: isolate;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1) translateZ(0);
    filter: brightness(1) contrast(1.1) saturate(1.1);
    animation: eagleGlow 6s ease-in-out infinite;
    background: transparent !important;
    mix-blend-mode: multiply;
    isolation: isolate;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes eagleGlow {
    0%, 100% {
        filter: brightness(1) contrast(1.1) saturate(1.1);
    }
    50% {
        filter: brightness(1.2) contrast(1.3) saturate(1.3);
    }
}

.about-img:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(204, 0, 0, 0.25);
    background: transparent !important;
}

.about-img:hover img {
    transform: scale(1.08) translateZ(30px);
    filter: brightness(1.3) contrast(1.4) saturate(1.4);
    background: transparent !important;
}

.about-img:hover::before {
    opacity: 0.8;
}

.about-img:hover::after {
    opacity: 1;
}

/* Kartal Kanat Efekti */
.about-img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: wingPower 4s infinite;
    z-index: 3;
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes wingPower {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Kartal Göz Parlaması */
.about-img::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: eyePower 3s ease-in-out infinite;
    z-index: 4;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    mix-blend-mode: multiply;
    isolation: isolate;
}

@keyframes eyePower {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Kartal Kenar Süsleri */
.about-img-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Gizli SEO İçeriği */
[style*="display: none"],
[style*="absolute"] {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.about-img-decoration::before,
.about-img-decoration::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #CC0000;
    opacity: 0;
    transition: all 0.5s ease;
}

.about-img-decoration::before {
    top: 25px;
    left: 25px;
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.about-img-decoration::after {
    bottom: 25px;
    right: 25px;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
}

.about-img:hover .about-img-decoration::before,
.about-img:hover .about-img-decoration::after {
    opacity: 1;
    transform: rotate(45deg) scale(1.3);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .about-img {
        margin: 0 1rem;
    }
    
    .about-img-decoration::before,
    .about-img-decoration::after {
        width: 30px;
        height: 30px;
    }
    
    .about-img-decoration::before {
        top: 20px;
        left: 20px;
    }
    
    .about-img-decoration::after {
        bottom: 20px;
        right: 20px;
    }
}

.partners {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(204, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    animation: gradientMove 15s ease infinite;
}

.partners .heading {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: var(--third-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.partners .heading::before,
.partners .heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.partners .heading::before {
    top: 0;
}

.partners .heading::after {
    bottom: 0;
}

.partners .heading:hover::before,
.partners .heading:hover::after {
    width: 200px;
    height: 5px;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.6);
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, var(--primary-color));
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@media (max-width: 768px) {
    .partners .heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .partners .heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 0, 0, 0.1);
}

.partner-img {
    width: 100%;
    height: auto;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
    transform: scale(1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 2;
    will-change: transform;
    border: 1px solid rgba(204, 0, 0, 0.1);
    max-width: 140px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.partner-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.partner-img::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.partner-img:hover {
    transform: translateY(-10px) scale(1.05);
    filter: grayscale(0%) brightness(1.2);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.2);
    border-color: rgba(204, 0, 0, 0.3);
}

.partner-img:hover::before {
    opacity: 1;
}

.partner-img:hover::after {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
    }
}

/* Modern Başlık Efektleri */
.partners .heading {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--third-color);
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    padding: 1.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, var(--third-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.partners .heading::before,
.partners .heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b, var(--primary-color));
    background-size: 200% 100%;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
    transition: all 0.5s ease;
    animation: gradientMove 3s linear infinite;
}

.partners .heading::before {
    top: 0;
}

.partners .heading::after {
    bottom: 0;
}

.partners .heading:hover::before,
.partners .heading:hover::after {
    width: 250px;
    height: 5px;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.6);
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners .heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .partners .heading {
        font-size: 2.5rem;
    }

    .partner-img {
        padding: 1rem;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners .heading {
        font-size: 2rem;
    }
    
    .partners {
        padding: 4rem 0;
    }

    .partner-img {
        max-width: 100px;
        padding: 0.8rem;
    }
}

/*----------------- Testimonial section styling --------------*/
.testimonial {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/testimonial-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.testimonial .container {
    position: relative;
    z-index: 2;
}

.testimonial-header {
	text-align: center;
    margin-bottom: 60px;
}

.testimonial-header .sub-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-header .heading {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonial-desc {
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.testimonial-items {
	display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
	justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quote-icon ion-icon {
    font-size: 24px;
    color: var(--white);
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text .para-line {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-profile {
    display: flex;
	align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-img-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-overlay ion-icon {
    color: var(--white);
    font-size: 24px;
}

.profile-img-wrapper:hover .profile-overlay {
    opacity: 1;
}

.profile-info {
    flex: 1;
}

.client-name {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
	font-weight: 600;
}

.client-location {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

.rating ion-icon {
    color: #FFD700;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn ion-icon, .next-btn ion-icon {
    font-size: 20px;
    color: var(--primary-color);
}

.prev-btn:hover ion-icon, .next-btn:hover ion-icon {
    color: var(--white);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .testimonial {
        padding: 60px 0;
    }

    .testimonial-header .heading {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .testimonial-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .testimonial-content {
        padding: 25px;
        margin: 0 1rem;
    }

    .testimonial-text .para-line {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-profile {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-img-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .profile-info {
        text-align: center;
    }

    .client-name {
        font-size: 1.1rem;
    }

    .client-location {
        font-size: 0.9rem;
    }

    .rating {
        justify-content: center;
    }

    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        top: 50%;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .carousel-indicators {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial {
        padding: 40px 0;
    }

    .testimonial-header .heading {
        font-size: 2rem;
    }

    .testimonial-header .sub-heading {
        font-size: 1rem;
    }

    .testimonial-content {
        padding: 20px;
    }

    .quote-icon {
        width: 30px;
        height: 30px;
        top: -15px;
        left: 15px;
    }

    .quote-icon ion-icon {
        font-size: 18px;
    }

    .testimonial-text .para-line {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .profile-img-wrapper {
        width: 50px;
        height: 50px;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-location {
        font-size: 0.8rem;
    }

    .rating ion-icon {
        font-size: 16px;
    }

    .prev-btn, .next-btn {
        width: 30px;
        height: 30px;
    }

    .prev-btn ion-icon, .next-btn ion-icon {
        font-size: 16px;
    }
}
/*----------------- Testimonial section styling --------------*/


/*----------------- Agent card styling -----------------------*/
.agent-card
{
	text-align: center;
}

.agent-img
{
	border-radius: 50%;
}

.agent-name
{
	font-size: 2rem;
	font-weight: 600;
}

.agent-number, .agent-email
{
	margin: 1rem 0;
	font-size: 0.9rem;
}
/*----------------- Agent card styling -----------------------*/


/*----------------- Footer styling ------------------*/
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/footer-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

.social-links {
	display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
	justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--white);
    opacity: 0.3;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--white);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-contact ion-icon {
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 3px;
}

.footer-contact span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--white);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-logo {
        width: 160px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-logo {
        width: 140px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 20px;
    }

    .footer-logo {
        width: 120px;
        margin-bottom: 10px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}
/*----------------- Footer styling ------------------*/






/*--------------------------------------------------------------*/
/*-------------------- Desktop Screen Styling ------------------*/
/*--------------------------------------------------------------*/
@media screen and (min-width: 789px)
{
	.container, .hero-container
	{
		max-width: 1180px;
		margin: 0 auto;
	}

	.container
	{
		padding: 4rem 0;
	}

	.heading
	{
		font-size: 3.2rem;
	}

	.para-line
	{
		line-height: 1.8;
	}

	.sub-heading
	{
		font-size: 2.5rem;
		padding-bottom: 20px;
		margin-bottom: 30px;
	}

	.sub-heading::after {
		height: 5px;
	}

	.row
	{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 2rem;
	}

	.row .col
	{
		width: 100%;
	}

	.inner-row
	{
		display: flex;
		gap: 2rem;
	}


	/*-------------- Hero section styling ------------------*/
	.hero-container .row > .hero-content
	{
		width: 140%;
	}

	.hero-heading
	{
		font-size: 4rem;
	}

	.hero
	{
		background: linear-gradient(rgba(204, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), url("../img/hero-bg.jpg");
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}
	/*-------------- Hero section styling ------------------*/


	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 5rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 150%;
	}

	.why-us-content .inner-row
	{
		margin-top: 2rem;
	}

	.lead-form
	{
		background: var(--fourth-color);
		padding: 3rem !important;
	}

	.input-field
	{
		margin: 1.5rem 0;
	}
	/*-------------- Why us styling ---------------------*/


	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 66%;
		margin: 0 auto;
	}

	.services, .partners-grid
	{
		display: grid;
		grid-template-rows: repeat(2, 1fr);
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 2rem;
	}
	/*-------------- Services section styling --------------*/



	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 4rem;
	}

	.partners
	{
		margin-top: 4rem;
	}
	/*-------------- About section styling ------------------*/


	/*-------------- Testimonial section styling ---------------*/
	.testimonial .container .para-line
	{
		max-width: 840px;
		margin: 0 auto;
		font-size: 1.1rem;
	}

	.testimonial
	{
		padding: 4rem 0;
	}
	/*-------------- Testimonial section styling ---------------*/
}

/* Modern Header ve Navigasyon Stilleri */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

.navbar {
    height: var(--header-height);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    flex-shrink: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--third-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-link:hover i {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color);
}

/* Dropdown Menü */
.dropdown-toggle {
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: var(--third-color);
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i:last-child {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.dropdown-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover i {
    color: white;
}

.dropdown-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-content h3 {
    color: white;
}

.dropdown-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-content p {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 1024px) {
    .dropdown-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dropdown-item {
        padding: 15px;
    }

    .dropdown-item i {
        font-size: 1.5rem;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

/* İletişim Butonu */
.nav-contact {
    margin-left: 2rem;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--fourth-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: var(--primary-color-dark);
}

.contact-button i {
    font-size: 1.1rem;
}

/* Mobil Menü */
@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 600px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        width: 30px;
        height: 30px;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
        position: relative;
        z-index: 100;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: var(--third-color);
        transition: var(--transition);
    }

    .hamburger::before {
        transform: translateY(-8px);
    }

    .hamburger::after {
        transform: translateY(6px);
    }

    .nav-toggle.active .hamburger {
        transform: rotate(45deg);
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(90deg) translateX(-8px);
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(90deg) translateX(8px);
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 1rem 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }

    .nav-contact {
        margin: 2rem 0 0 0;
        width: 100%;
    }

    .contact-button {
        justify-content: center;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Styles */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.brand img {
    width: 200px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .brand img {
        width: 180px;
        max-height: 70px;
    }
}

.brand img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list li.active a {
    color: var(--primary-color);
}

.nav-list li.active a::after {
    width: 100%;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.nav-list li:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-list li {
    padding: 0.5rem 1.5rem;
}

.dropdown-list a {
    color: #666;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0;
}

.btn.btn-blue {
    background: var(--primary-color);
    color: var(--fourth-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.btn-blue:hover {
    background: var(--primary-color-dark);
}

.btn.btn-blue a {
    color: var(--fourth-color);
    transition: all 0.3s ease;
}

.btn.btn-blue:hover a {
    color: var(--fourth-color);
}

/* Hamburger Menu */
.hamberger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamberger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamberger {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-list a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .dropdown-list {
        position: static;
        box-shadow: none;
        padding: 1rem 0;
        display: none;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .dropdown-list.active {
        display: block;
    }
    
    .dropdown-list li {
        margin: 0.5rem 0;
    }
    
    .dropdown-list a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        display: block;
    }
    
    .btn.btn-blue {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        display: block;
    }

    .btn.btn-blue a {
        display: block;
        padding: 0.8rem;
    }
}

/* Scroll Effect */
nav.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Modern About Section Stilleri */
.about {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(204, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    animation: gradientMove 15s ease infinite;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    position: relative;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(204, 0, 0, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.about .sub-heading {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(204, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

.about .sub-heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.about .sub-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
    animation: glow 2s ease-in-out infinite;
}

.about .sub-heading:hover {
    transform: translateY(-5px);
    text-shadow: 4px 4px 8px rgba(204, 0, 0, 0.3);
}

.about .sub-heading:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .about .sub-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .about .sub-heading {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
}

.about .para-line {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
    border: 1px solid rgba(204, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(204, 0, 0, 0.05), rgba(255, 107, 107, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(204, 0, 0, 0.1);
    border-color: rgba(204, 0, 0, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
        transform: translateX(-30px);
    opacity: 0;
    animation: slideInRight 0.8s ease forwards 0.8s;
    border: 1px solid rgba(204, 0, 0, 0.1);
}

.feature-card:nth-child(2) { animation-delay: 1s; }
.feature-card:nth-child(3) { animation-delay: 1.2s; }

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(204, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-icon ion-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--third-color);
    margin-bottom: 0.3rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(204, 0, 0, 0.1);
    border-color: rgba(204, 0, 0, 0.2);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    transform: rotate(10deg);
}

.feature-card:hover .feature-icon ion-icon {
    color: white;
}

.about-image {
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(204, 0, 0, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease;
    transform: scale(1) translateZ(0);
    filter: brightness(1);
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.image-wrapper:hover img {
    transform: scale(1.05) translateZ(20px);
    filter: brightness(1.1);
}

.image-wrapper:hover::before,
.image-wrapper:hover::after {
    opacity: 1;
}

/* Görsel Kenar Efektleri */
.image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    z-index: -1;
    border-radius: 22px;
        opacity: 0;
    transition: opacity 0.4s ease;
}

.image-wrapper:hover::before {
    opacity: 0.5;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
    }
}

/* Görsel İçi Parıltı Efekti */
.image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 4;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Görsel Üzeri Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(204, 0, 0, 0.1),
        rgba(255, 107, 107, 0.1)
    );
        opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    }

.image-wrapper:hover .image-overlay {
        opacity: 1;
}

/* Görsel Kenar Süsleri */
.image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 6;
}

.image-decoration::before,
.image-decoration::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
}

.image-decoration::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.image-decoration::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.image-wrapper:hover .image-decoration::before,
.image-wrapper:hover .image-decoration::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .image-wrapper {
        margin: 0 1rem;
    }
    
    .image-decoration::before,
    .image-decoration::after {
        width: 20px;
        height: 20px;
    }
    
    .image-decoration::before {
        top: 15px;
        left: 15px;
    }
    
    .image-decoration::after {
        bottom: 15px;
        right: 15px;
}
}

/*----------------- Map section styling --------------*/
.map {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/map-bg.jpg') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.map .container {
    position: relative;
    z-index: 2;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header .sub-heading {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(204, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

.map-header .sub-heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.map-header .sub-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.4);
    animation: glow 2s ease-in-out infinite;
}

.map-header .sub-heading:hover {
    transform: translateY(-5px);
    text-shadow: 4px 4px 8px rgba(204, 0, 0, 0.3);
}

.map-header .sub-heading:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .map-header .sub-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .map-header .sub-heading {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
}

.map-header .heading {
    color: var(--text-color);
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-desc {
    color: var(--text-color);
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-color-rgb), 0.05), rgba(var(--secondary-color-rgb), 0.05));
    z-index: 2;
    pointer-events: none;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

.map-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.info-card ion-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .map {
        padding: 60px 0;
    }

    .map-header .heading {
        font-size: 2.5rem;
    }
    
    .map-container iframe {
        height: 400px;
    }

    .map-info {
        flex-direction: column;
        align-items: center;
    }
    
    .info-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .map-header .heading {
        font-size: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card ion-icon {
        font-size: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.8rem;
}
}

/* Responsive Tasarım */
@media screen and (max-width: 1200px) {
    .menu-container {
        width: 95%;
    }
    
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about .row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .menu-container {
        width: 100%;
    }
    
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hamberger {
        display: block !important;
        z-index: 1001;
        padding: 10px;
        cursor: pointer;
        position: relative;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        margin-left: auto;
    }
    
    .hamberger span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--third-color);
        margin: 5px 0;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
        transform-origin: center;
    }

    .hamberger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--primary-color);
    }

    .hamberger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamberger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--primary-color);
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        display: flex;
    }
    
    .nav-list.active {
        left: 0;
        display: flex;
    }
    
    .nav-list li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
    }

    .nav-list.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .nav-list li:nth-child(2) { transition-delay: 0.2s; }
    .nav-list li:nth-child(3) { transition-delay: 0.3s; }
    .nav-list li:nth-child(4) { transition-delay: 0.4s; }
    .nav-list li:nth-child(5) { transition-delay: 0.5s; }
    .nav-list li:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-list a {
        font-size: 1.2rem;
        display: block;
        padding: 1rem 0;
        color: var(--third-color);
        font-weight: 500;
        position: relative;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-list a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .nav-list a:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .nav-list a:hover::before {
        width: 50px;
        box-shadow: 0 0 10px rgba(204, 0, 0, 0.3);
    }
    
    .dropdown-list {
        position: static;
        box-shadow: none;
        padding: 0.5rem 0;
        display: none;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 12px;
        margin: 0.5rem 0;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transform-origin: top;
        opacity: 0;
        transform: scaleY(0);
    }
    
    .dropdown-list.active {
        display: block;
        opacity: 1;
        transform: scaleY(1);
    }

    .brand {
        z-index: 1001;
        position: relative;
    }

    .brand img {
        height: 40px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    /* Buton Stilleri */
    .btn.btn-blue {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        display: block;
        background: linear-gradient(45deg, var(--primary-color), var(--primary-color-dark));
        border-radius: 25px;
        padding: 1rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
    }

    .btn.btn-blue::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .btn.btn-blue:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
    }

    .btn.btn-blue:hover::before {
        left: 100%;
    }

    .btn.btn-blue a {
        display: block;
        padding: 0.8rem;
        color: white;
        font-weight: 500;
        position: relative;
        z-index: 1;
        text-transform: none;
        letter-spacing: 0;
    }

    .btn.btn-blue a:hover {
        color: white;
        transform: none;
    }

    .btn.btn-blue a::before {
        display: none;
    }
}

@keyframes menuSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (max-width: 768px) {
    .testimonial {
        padding: 30px 0;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .testimonial-header {
        margin-bottom: 20px;
        text-align: center;
    }

    .testimonial-header .heading {
        font-size: 1.8rem;
        margin-bottom: 8px;
        text-align: center;
    }

    .testimonial-header .sub-heading {
        font-size: 0.9rem;
        margin-bottom: 8px;
        text-align: center;
    }

    .testimonial-desc {
        font-size: 0.85rem;
        padding: 0 15px;
        margin-bottom: 15px;
        text-align: center;
    }

    .testimonial-carousel {
        padding: 0 15px;
        margin: 0 auto;
        max-width: 90%;
    }

    .testimonial-content {
        padding: 15px;
        margin: 0 auto;
        border-radius: 12px;
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-text {
        text-align: center;
    }

    .testimonial-text .para-line {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
        text-align: center;
    }

    .testimonial-profile {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        margin-top: 15px;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .profile-img-wrapper {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }

    .profile-info {
        text-align: center;
        width: 100%;
    }

    .client-name {
        font-size: 0.9rem;
        text-align: center;
    }

    .client-location {
        font-size: 0.75rem;
        text-align: center;
    }

    .rating {
        justify-content: center;
        margin-top: 8px;
        width: 100%;
    }

    .rating ion-icon {
        font-size: 14px;
    }

    .quote-icon {
        width: 25px;
        height: 25px;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
    }

    .quote-icon ion-icon {
        font-size: 14px;
    }

    .prev-btn, .next-btn {
        width: 25px;
        height: 25px;
    }

    .prev-btn ion-icon, .next-btn ion-icon {
        font-size: 14px;
    }

    .carousel-indicators {
        margin-top: 12px;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .testimonial {
        padding: 25px 0;
    }

    .testimonial-header .heading {
        font-size: 1.6rem;
    }

    .testimonial-header .sub-heading {
        font-size: 0.85rem;
    }

    .testimonial-desc {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .testimonial-carousel {
        padding: 0 10px;
        max-width: 95%;
    }

    .testimonial-content {
        padding: 12px;
    }

    .testimonial-text .para-line {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .testimonial-profile {
        gap: 0.5rem;
    }

    .profile-img-wrapper {
        width: 40px;
        height: 40px;
    }

    .client-name {
        font-size: 0.85rem;
    }

    .client-location {
        font-size: 0.7rem;
    }

    .rating ion-icon {
        font-size: 12px;
    }

    .quote-icon {
        width: 20px;
        height: 20px;
        top: -10px;
    }

    .quote-icon ion-icon {
        font-size: 12px;
    }

    .prev-btn, .next-btn {
        width: 20px;
        height: 20px;
    }

    .prev-btn ion-icon, .next-btn ion-icon {
        font-size: 12px;
    }

    .carousel-indicators {
        margin-top: 10px;
        gap: 6px;
    }

    .indicator {
        width: 5px;
        height: 5px;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 100px 0 60px;
    background: var(--white);
}

.privacy-policy .heading {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.last-updated {
    text-align: right;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.policy-section p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding-left: 20px;
}

.policy-section ul li {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}

.policy-section ul li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: -20px;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 80px 0 40px;
    }

    .policy-content {
        padding: 0 15px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy {
        padding: 60px 0 30px;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }
}

.copyright a {
    color: inherit;
    text-decoration: none;
    transition: none;
}

.copyright a:hover {
    color: inherit;
    text-decoration: none;
}

/* Çerez Popup Stilleri */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 25px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    border-top: 4px solid #ff0000;
    backdrop-filter: blur(10px);
}

.cookie-popup.active {
    transform: translateY(0);
    display: block;
    animation: slideUp 0.6s ease-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.cookie-btn.reject {
    background: linear-gradient(135deg, #333, #000);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn.reject:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-btn.settings {
    background: transparent;
    color: #ff0000;
    text-decoration: none;
    border: 2px solid #ff0000;
    min-width: auto;
    padding: 12px 20px;
}

.cookie-btn.settings:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px;
    }

    .cookie-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .cookie-popup {
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        max-width: 100%;
    }
}

.breadcrumbs {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    padding: 80px 0;
    overflow: hidden;
    background-image: url('../images/breadcrumb-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.breadcrumbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.breadcrumbs::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 2;
}

.breadcrumb-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
    text-align: center;
}

.breadcrumbs .hero-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.breadcrumbs .hero-heading::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff3333);
    animation: lineWidth 1s ease-out forwards;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.breadcrumbs .hero-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #fff;
    animation: lineWidth 1s ease-out forwards;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .breadcrumbs .hero-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        padding: 40px 0;
    }

    .breadcrumbs .hero-heading {
        font-size: 2rem;
    }

    .breadcrumbs .hero-heading::before,
    .breadcrumbs .hero-heading::after {
        height: 3px;
    }
}

.nav-wrapper ul.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none; /* Dropdown menüye tıklamayı engellemek için */
}

.nav-wrapper ul.nav-list li {
    position: relative; /* Dropdown menünün konumlandırılması için */
}

.nav-wrapper ul.nav-list li:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Hover durumunda tıklamayı etkinleştir */
}

/* Dropdown menü ile ana menü arasındaki boşluğu kapatmak için */
.nav-wrapper ul.nav-list li:hover::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    pointer-events: none;
}

.nav-wrapper ul.dropdown-list li {
    padding: 0;
    margin: 0;
}

.nav-wrapper ul.dropdown-list li a {
    display: block;
    padding: 10px 25px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-wrapper ul.dropdown-list li a:hover {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.02);
}

.nav-wrapper ul.dropdown-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: all 0.3s ease;
}

.nav-wrapper ul.dropdown-list li a:hover::before {
    height: 100%;
}

@media (max-width: 992px) {
    .nav-wrapper ul.dropdown-list {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        pointer-events: auto;
    }

    .nav-wrapper ul.nav-list li.active .dropdown-list {
        display: block;
    }

    .nav-wrapper ul.dropdown-list li a {
        padding: 8px 20px;
        font-size: 14px;
    }
}

    .nav-wrapper ul.nav-list li.active .dropdown-list {
        display: block;
    }

    .nav-wrapper ul.dropdown-list li a {
        padding: 8px 20px;
        font-size: 14px;
    }
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 250px 0 150px 0; /* Üst padding'i artırdım */
    text-align: center;
    position: relative;
}

.hero-heading {
    font-size: 3.5rem;
    margin-bottom: 30px;
    padding-top: 80px; /* Üst padding'i artırdım */
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    padding-top: 80px; /* Üst padding'i artırdım */
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    padding-top: 20px; /* Üst padding'i artırdım */
    position: relative;
    z-index: 2;
}

/* Breadcrumbs için de aynı düzenlemeyi yapıyorum */
.breadcrumbs .hero-heading {
    padding-top: 100px; /* Üst padding'i artırdım */
    margin-bottom: 30px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .hero-section {
        padding: 200px 0 100px 0; /* Mobil için padding değerlerini ayarladım */
    }
    
    .hero-heading {
        padding-top: 60px;
        font-size: 2.5rem;
    }
    
    .gradient-text {
        padding-top: 60px;
    }
    
    .hero-description {
        padding-top: 15px;
    }
    
    .breadcrumbs .hero-heading {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 180px 0 80px 0;
    }
    
    .hero-heading {
        padding-top: 50px;
        font-size: 2rem;
    }
    
    .gradient-text {
        padding-top: 50px;
    }
    
    .hero-description {
        padding-top: 10px;
    }
    
    .breadcrumbs .hero-heading {
        padding-top: 70px;
    }
}