#particles-js-left, #particles-js-right {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100vh; 
    pointer-events: none;
}

        #particles-js-left {
            left: 0;
        }

        #particles-js-right {
            right: 0;
        }
body {
    background: radial-gradient(circle, #1a1a1a, #000);
	font-family: open sans, sans-serif;
	color: #444;
    position: relative; /* Needed for absolute positioning of pseudo-elements */
    overflow-x: hidden; /* Prevent horizontal scroll caused by extended glow */
}


        /* Yıldız efektleri */
        body::before {
            content: "";
            position: absolute; /* Changed to absolute for better layering */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/stardust.png') repeat; /* Yıldız efekti */
            opacity: 0.15; /* Slightly adjusted opacity */
            z-index: -1; /* Ensure it's behind content */
            pointer-events: none; /* Prevent interaction */
        }

a {
	color: #3498db;
	text-decoration: none
}

a:hover {
	color: #5faee3;
	text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: raleway, sans-serif
}

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #3498db;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all .4s
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0
}

.back-to-top:hover {
	background: #57aae1;
	color: #fff
}

.back-to-top.active {
	visibility: visible;
	opacity: 1
}

@media screen and (max-width:768px) {
	[data-aos-delay] {
		transition-delay: 0 !important
	}
}


        #header {
            height: 100px;
            background-color: rgba(3, 3, 3, 0.95); /* Slightly transparent background */
            color: #fff;
            padding: 10px 0;
            /* border-bottom: 1px solid #ffffff; --- BU SATIRI KALDIRIN VEYA YORUMA ALIN --- */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7); /* Enhanced shadow */
            position: fixed; /* Keep fixed */
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999; /* Keep high z-index */
            /* position: relative needed for absolute positioning inside */
        }

        /* --- YENİ EKLENEN KISIM BAŞLANGICI --- */
        .header-glow-bar {
            position: absolute;
            bottom: 0; /* Header'ın en altına yerleştir */
            left: 0;
            width: 100%;
            height: 1px; /* Sadece pseudo-elementi tutmak için */
            pointer-events: none; /* Tıklama olaylarını engelleme */
            z-index: 1; /* Diğer header içeriğinin altında kalabilir */
        }

        .header-glow-bar::after {
            content: "";
            position: absolute;
            bottom: -4px; /* Işıltının başlangıç noktası (header'ın hemen altı) */
            left: 50%; /* Yatayda ortala */
            transform: translateX(-50%); /* Tam ortalamak için */
            width: 102%; /* Header genişliğinden biraz taşsın */
            height: 8px; /* Başlangıç ışıltı yüksekliği */
            /* Mor renk (örnekten alındı: rgb(206, 45, 191)) */
            background: rgb(206, 45, 191);
            /* Blur efekti ile ışıltı */
            filter: blur(8px);
            /* Başlangıç opaklığı */
            opacity: 0.45;
            /* Hover geçiş efekti */
            transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
            pointer-events: none; /* Tıklama olaylarını engelleme */
            border-radius: 50%; /* Daha yumuşak kenarlar için */
        }

        /* Header üzerine gelince ışıltıyı artır */
        #header:hover .header-glow-bar::after {
            height: 12px; /* Hover'da ışıltı yüksekliği */
            opacity: 0.75; /* Hover'da opaklık */
            filter: blur(12px); /* Hover'da blur artışı */
        }
        /* --- YENİ EKLENEN KISIM SONU --- */


#header.header-scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, .25); /* Scrolled shadow slightly different */
	padding: 12px 0;
    background-color: rgba(3, 3, 3, 1); /* Scrolled header fully opaque */
}

#header .logo h1 {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1px
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #eee; /* Slightly lighter color for logo text */
	text-decoration: none
}

#header .logo img {
	max-width: 300px; /* Adjusted logo size */
	max-height: 140px; /* Adjusted logo size */
    margin-top: -30px; /* Adjust vertical position if needed */
    margin-bottom: -30px; /* Adjust vertical position if needed */
}

.navbar {
	padding: 0
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center
}

.navbar li {
	position: relative
}

.navbar a, .navbar a:focus { /* Added :focus state */
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 15px;
	font-weight: 400; /* Slightly bolder */
	color: #e0e0e0; /* Lighter text for better contrast on dark bg */
	white-space: nowrap;
	transition: .3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Subtle text shadow */
}


.navbar a i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px
}

/* Active/hover link - using the purple color */
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: rgb(206, 45, 191); /* Purple color on hover/active */
    text-shadow: 0 0 5px rgba(206, 45, 191, 0.7); /* Glow effect on text */
}


.navbar .getstarted, .navbar .getstarted:focus { /* Added :focus */
	background: rgb(206, 45, 191); /* Purple background */
    border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 8px 25px;
	margin-left: 30px;
	border-radius: 50px;
	color: #fff;
    box-shadow: 0 2px 5px rgba(206, 45, 191, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.navbar .getstarted:hover {
	color: #fff;
	background: rgb(226, 65, 211); /* Lighter purple on hover */
    box-shadow: 0 4px 10px rgba(206, 45, 191, 0.6);
    transform: translateY(-1px); /* Slight lift effect */
}


.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 30px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #1a1a1a; /* Darker dropdown background */
	box-shadow: 0 0 30px rgba(0, 0, 0, .5); /* Stronger shadow */
	transition: .3s;
	border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .dropdown ul li {
	min-width: 200px
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
    color: #ccc; /* Lighter text in dropdown */
    font-weight: 400; /* Reset font weight */
    text-shadow: none; /* Reset text shadow */
}

.navbar .dropdown ul a i {
	font-size: 12px
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: rgb(206, 45, 191); /* Purple on hover */
    background-color: rgba(255, 255, 255, 0.05); /* Slight background change */
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible
}

@media(max-width:1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%
	}
}

.mobile-nav-toggle {
	color: #fff; /* White toggle icon */
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: .5s
}

.mobile-nav-toggle.bi-x {
	color: #fff
}

@media(max-width:991px) {
	.mobile-nav-toggle {
		display: block
	}

	.navbar ul {
		display: none
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(9, 9, 9, .95); /* Darker mobile overlay */
	transition: .3s;
	z-index: 999
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 8px;
	background-color: #1f1f1f; /* Dark background for mobile menu */
	overflow-y: auto;
	transition: .3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-mobile a, .navbar-mobile a:focus { /* Added focus */
	padding: 10px 20px;
	font-size: 15px;
	color: #ccc; /* Lighter text */
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: rgb(206, 45, 191); /* Purple on hover/active */
    background-color: rgba(255, 255, 255, 0.05);
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus { /* Added focus */
	margin: 15px;
    background: rgb(206, 45, 191); /* Match desktop style */
    color: #fff;
    border: none;
    box-shadow: 0 2px 5px rgba(206, 45, 191, 0.4);
}
.navbar-mobile .getstarted:hover {
    background: rgb(226, 65, 211);
    box-shadow: 0 4px 10px rgba(206, 45, 191, 0.6);
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #2a2a2a; /* Slightly lighter dropdown in mobile */
	box-shadow: inset 0 0 10px rgba(0, 0, 0, .3); /* Inner shadow */
    border-radius: 4px;
}

.navbar-mobile .dropdown ul li {
	min-width: 200px
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
    color: #bbb; /* Adjust color */
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: rgb(206, 45, 191); /* Purple on hover */
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block
}

#hero {
    min-height: 100vh; /* Ensures the section is at least the height of the viewport */
    padding-top: 150px; /* Increased top padding to push content below header */
    padding-bottom: 100px; /* Adds space at the bottom */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center content */
    position: relative; /* Needed for z-indexing if particles are used */
    z-index: 1; /* Ensure hero content is above body background/particles */
}


#hero h1 {
	margin: 0 0 20px; /* Increased bottom margin */
	font-size: 52px; /* Slightly larger */
	font-weight: 700;
	line-height: 60px; /* Adjusted line height */
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	background-image: linear-gradient(to right, #e8a2ff, #ff4b2b); /* Brighter gradient */
    text-shadow: 0 2px 15px rgba(206, 45, 191, 0.3); /* Added subtle glow */
}

#hero h2 {
	color: #484848;
	margin-bottom: 50px;
	font-size: 24px;
    line-height: 1.6;
	color: transparent; /* Metin rengini şeffaf yapıyoruz */
	-webkit-background-clip: text; /* Arka planı metne kırpıyoruz (webkit tarayıcılar için) */
	background-clip: text; /* Arka planı metne kırpıyoruz (standart) */
	background-image: linear-gradient(to bottom, #C8A2D6, #ff1100); /* Açık tonlar */
}

#hero .btn-get-started {
	font-family: raleway, sans-serif;
	font-weight: 600; /* Bolder */
	font-size: 17px; /* Slightly larger */
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 35px; /* Increased padding */
	border-radius: 50px;
	transition: .5s;
	color: rgb(206, 45, 191); /* Purple text */
	border: 2px solid rgb(206, 45, 191); /* Purple border */
    background: rgba(206, 45, 191, 0.1); /* Very subtle purple background */
    text-transform: uppercase;
}

#hero .btn-get-started:hover {
	background: rgb(206, 45, 191); /* Purple background on hover */
	color: #fff; /* White text on hover */
    box-shadow: 0 5px 15px rgba(206, 45, 191, 0.5); /* Glow effect */
    transform: translateY(-2px);
}

#hero .animated {
	animation: up-down 2.5s ease-in-out infinite alternate-reverse both; /* Slightly slower animation */
}

@media(min-width:1024px) {
	#hero {
		background-attachment: fixed /* If you had a background image */
	}
}

@media(max-width:991px) {
	#hero {
		/* height: auto; */ /* Let content define height */
        min-height: calc(100vh - 100px); /* Adjust min-height considering header */
        padding-top: 120px; /* Adjust padding */
        text-align: center; /* Center text on smaller screens */
	}

	#hero .animated {
		-webkit-animation: none;
		animation: none
	}

	#hero .hero-img {
		text-align: center;
        margin-top: 40px; /* Add space above image */
	}

	#hero .hero-img img {
		width: 60%; /* Adjust image size */
	}
    #hero h1 {
        font-size: 40px;
        line-height: 48px;
    }
    #hero h2 {
        font-size: 20px;
    }
}

@media(max-width:768px) {
	#hero {
		margin-top: 0; /* Remove extra margin */
        padding-top: 100px; /* Further adjust padding */
	}

	#hero h1 {
		font-size: 32px; /* Smaller heading */
		line-height: 40px;
	}

	#hero h2 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 30px
	}

	#hero .hero-img img {
		width: 75%; /* Adjust image size */
	}
}

@media(max-width:575px) {
	#hero .hero-img img {
		width: 85%;
	}
     #hero h1 {
		font-size: 28px;
		line-height: 36px;
	}
    #hero h2 {
		font-size: 16px;
        line-height: 26px;
	}
    #hero .btn-get-started {
        padding: 10px 30px;
        font-size: 16px;
    }
}

@-webkit-keyframes up-down {
	0% {
		transform: translateY(8px) /* Slightly less movement */
	}

	100% {
		transform: translateY(-8px)
	}
}

@keyframes up-down {
	0% {
		transform: translateY(8px)
	}

	100% {
		transform: translateY(-8px)
	}
}

/* Section General Styles */
section {
	padding: 80px 0; /* Increased default padding */
	overflow: hidden;
    position: relative; /* For potential pseudo-elements */
}

.section-bg {
	background-color: rgba(255, 255, 255, 0.03); /* Very subtle background for sections */
}

.img2-fluid {
    position: relative;
    top: 30px;
    margin-top: 20px;
    display: block;
    max-width: 100%; /* Ensure responsiveness */
    height: auto; /* Maintain aspect ratio */
}

.section-title {
	text-align: center;
	padding-bottom: 7px; /* Increased padding */
    margin-top: 0; /* Reset margin top */
    margin-bottom: 7px; /* Add margin below title */
}

.section-title h2 {
	font-size: 36px; /* Larger section titles */
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	color: #eee; /* Lighter color for titles */
	padding-bottom: 15px; /* Space for the lines */
    margin-bottom: 20px; /* Space below heading */
}

/* Underline/Divider effect for section titles */
.section-title h2::before,
.section-title h2::after {
	content: '';
	width: 60px; /* Longer lines */
	height: 3px; /* Thicker lines */
	background: rgb(206, 45, 191); /* Purple color */
	display: block; /* Changed to block */
    margin: 0 auto; /* Center the lines */
    border-radius: 2px;
}

.section-title h2::before {
	margin-bottom: 10px; /* Space between line and text */
    opacity: 0.6;
}
.section-title h2::after {
    width: 40px; /* Shorter second line */
	margin-top: 10px; /* Space below text */
    opacity: 0.4;
}


/* Remove the old inline-block style margins */
/*
.section-title h2::before {
	margin: 0 15px 10px 0
}

.section-title h2::after {
	margin: 0 0 10px 15px
}
*/

.section-title p {
	margin: 15px 0 0;
    color: #aaa; /* Lighter paragraph text */
    font-size: 16px;
    line-height: 1.7;
}


/* Client Section Styles (If used) */
.clients {
	background: rgba(0, 0, 0, 0.1); /* Darker transparent background */
	padding: 15px 0; /* Adjusted padding */
	text-align: center
}

.clients .col-lg-2 {
	display: flex;
	align-items: center;
	justify-content: center
}

.clients img {
	width: 50%;
	filter: grayscale(80%) opacity(0.6); /* More subtle effect */
	transition: all .4s ease-in-out;
	display: inline-block;
	padding: 15px 0; /* Adjusted padding */
}

.clients img:hover {
	filter: grayscale(0%) opacity(1);
	transform: scale(1.15); /* Slightly more scale */
}

@media(max-width:768px) {
	.clients img {
		width: 45%
	}
}

@media(max-width:575px) {
	.clients img {
		width: 55% /* Larger on very small screens relative to column */
	}
}

/* About Section Styles (If used) */
.about .content h3 {
	font-weight: 700; /* Bolder */
	font-size: 28px; /* Larger */
    color: #eee; /* Lighter color */
    margin-bottom: 15px;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding-bottom: 10px; /* Space between list items */
	padding-left: 30px;
	position: relative;
    color: #bbb; /* Lighter list item text */
}

.about .content ul li+li {
	margin-top: 10px;
}

.about .content ul i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 22px; /* Larger icon */
	color: rgb(206, 45, 191); /* Purple icon */
	line-height: 1;
}

.about .content p { /* General paragraph style in about */
    color: #aaa;
    line-height: 1.7;
}

.about .content p:last-child {
	margin-bottom: 0
}

.about .content .btn-learn-more {
	font-family: raleway, sans-serif;
	font-weight: 600;
	font-size: 15px; /* Slightly larger */
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px; /* Adjusted padding */
	border-radius: 50px;
	transition: .3s;
	line-height: 1;
	color: rgb(206, 45, 191); /* Purple text */
	-webkit-animation-delay: .8s;
	animation-delay: .8s;
	margin-top: 15px; /* More space above */
	border: 2px solid rgb(206, 45, 191); /* Purple border */
    background: transparent;
}

.about .content .btn-learn-more:hover {
	background: rgb(206, 45, 191); /* Purple background */
	color: #fff; /* White text */
	text-decoration: none;
    box-shadow: 0 3px 10px rgba(206, 45, 191, 0.4); /* Glow on hover */
}


/* Counts Section Styles */
.counts {
	padding-top: 40px; /* Add some padding above counts */
    padding-bottom: 40px;
}

.counts .content {
	padding: 0;
}

.counts .content h3 {
	font-weight: 700;
	font-size: 36px; /* Larger heading */
	color: #eee; /* Lighter color */
    margin-bottom: 10px;
}

.counts .content p {
	margin-bottom: 30px; /* Space below paragraph */
    color: #aaa;
    font-size: 16px;
}

.counts .content .count-box {
	padding: 25px 0; /* Increased padding */
	width: 100%;
    text-align: center; /* Center align content in the box */
    margin-bottom: 20px;
}

.counts .content .count-box i {
	display: block; /* Icon on its own line */
	font-size: 42px; /* Larger icon */
	color: rgb(206, 45, 191); /* Purple icon */
	/* float: left; --- Remove float --- */
	line-height: 1;
    margin: 0 auto 15px auto; /* Center icon and add margin below */
}

.counts .content .count-box span {
	font-size: 40px; /* Larger number */
	line-height: 1;
	display: block;
	font-weight: 700;
	color: #fff; /* White color for count */
	margin-left: 0; /* Remove margin */
    margin-bottom: 10px;
}

.counts .content .count-box p {
	padding: 0; /* Remove padding */
	margin: 0 auto; /* Center paragraph */
	font-family: raleway, sans-serif;
	font-size: 15px; /* Slightly larger */
	color: #bbb; /* Lighter paragraph text */
}

/* Remove the link style as it wasn't used in the HTML */
/*
.counts .content .count-box a {
	font-weight: 600;
	display: block;
	margin-top: 20px;
	color: #484848;
	font-size: 15px;
	font-family: poppins, sans-serif;
	transition: ease-in-out .3s
}

.counts .content .count-box a:hover {
	color: #6f6f6f
}
*/

.counts .image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.counts .image img {
	max-width: 90%; /* Adjust image size */
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3)); /* Add a subtle shadow */
}

@media(max-width:1024px) {
	.counts .image {
		text-align: center;
        margin-bottom: 30px; /* Add space below image on medium screens */
	}
	.counts .image img {
		max-width: 70%
	}
}

@media(max-width:667px) {
	.counts .image img {
		max-width: 85%
	}
}


/* Services Section Styles */
.services .icon-box {
	padding: 40px 30px; /* Increased padding */
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05); /* Darker, more transparent background */
	box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.15); /* Slightly stronger shadow */
	transition: all .4s ease-in-out; /* Slower transition */
	border-radius: 10px; /* More rounded corners */
	z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    height: 100%; /* Make boxes equal height in a row */
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack content vertically */
    text-align: center; /* Center text */
}

.services .icon-box::before {
    /* Removing the expanding background effect for a cleaner look */
	/* content: '';
	position: absolute;
	background: #e1f0fa;
	right: -60px;
	top: -40px;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	transition: all .3s;
	z-index: -1; */
    display: none; /* Hide the pseudo-element */
}

/* Add a subtle top border highlight on hover instead */
.services .icon-box:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.08);
    border-top: 3px solid rgb(206, 45, 191); /* Purple top border on hover */
}


.services .icon {
	margin: 0 auto 25px auto; /* Center icon */
	padding-top: 10px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	width: 70px; /* Larger icon container */
	height: 70px;
	background: rgba(206, 45, 191, 0.15); /* Purple background, semi-transparent */
	transition: all .3s ease-in-out;
    border: 1px solid rgba(206, 45, 191, 0.3);
}

.services .icon i {
	font-size: 36px; /* Adjusted icon size */
	line-height: 1;
	color: rgb(206, 45, 191); /* Purple icon color */
    padding-top: 10px; /* Center icon vertically */
}

.services .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px; /* Larger title */
    flex-grow: 0; /* Prevent title from growing */
}

.services .title a {
	color: #eee; /* Lighter title color */
    transition: color 0.3s ease;
}
.services .icon-box:hover .title a {
	color: rgb(206, 45, 191); /* Purple title on hover */
}

.services .description {
	font-size: 15px;
	line-height: 26px; /* Adjusted line height */
	margin-bottom: 0;
    color: #aaa; /* Lighter description text */
    flex-grow: 1; /* Allow description to take remaining space */
    transition: color 0.3s ease;
}


/* Remove hover color changes tied to the old ::before effect */
/*
.services .icon-box:hover .title a,
.services .icon-box:hover .description {
	color: #fff
}
*/
.services .icon-box:hover .icon {
	background: rgb(206, 45, 191); /* Solid purple background on hover */
    border-color: rgb(206, 45, 191);
}

.services .icon-box:hover .icon i {
	color: #fff; /* White icon on hover */
}

/* More Services Section (If used) */
.more-services {
	padding-top: 40px; /* More space */
}

.more-services .card {
	border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
	padding: 0; /* Remove default padding */
	position: relative;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
    border-radius: 8px; /* Consistent border radius */
    overflow: hidden; /* Ensure content stays within bounds */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.more-services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.more-services .card-img-top { /* Style for the image part */
    height: 200px; /* Fixed height for the image area */
    object-fit: cover; /* Ensure image covers the area */
}

.more-services .card-body {
	z-index: 10;
	background: rgba(30, 30, 40, 0.9); /* Dark semi-transparent background */
	padding: 20px 25px; /* Adjusted padding */
	box-shadow: none; /* Remove inner shadow */
	transition: background-color .3s ease-in-out;
	border-radius: 0 0 8px 8px; /* Radius only at the bottom */
    color: #ccc; /* Default text color */
}

.more-services .card-title {
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
    font-size: 18px;
}

.more-services .card-title a {
	color: #eee; /* Lighter title color */
    transition: color 0.3s ease;
}
.more-services .card-title a:hover {
	color: rgb(206, 45, 191); /* Purple on hover */
}

.more-services .card-text {
	color: #aaa; /* Lighter card text */
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
}

.more-services .read-more {
    text-align: center;
}

.more-services .read-more a {
	color: rgb(206, 45, 191); /* Purple link color */
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	transition: .4s;
    padding: 5px 10px;
    border: 1px solid rgba(206, 45, 191, 0.5);
    border-radius: 4px;
    display: inline-block;
}

.more-services .read-more a:hover {
	text-decoration: none;
    background: rgba(206, 45, 191, 0.2);
    border-color: rgb(206, 45, 191);
}

/* Remove old card hover effects */
/*
.more-services .card:hover .card-body {
	background: #3498db
}

.more-services .card:hover .read-more a,
.more-services .card:hover .card-title,
.more-services .card:hover .card-title a,
.more-services .card:hover .card-text {
	color: #fff
}
*/


/* Features Section Styles (If used) */
.features .icon-box {
	display: flex;
	align-items: center;
	padding: 25px; /* Increased padding */
	background: rgba(255, 255, 255, 0.04); /* Darker background */
	transition: ease-in-out .3s;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px; /* Space between boxes */
}

.features .icon-box i {
	font-size: 36px; /* Larger icon */
	padding-right: 15px; /* More space next to icon */
	line-height: 1;
    color: rgb(206, 45, 191); /* Purple icon */
}

.features .icon-box h3 {
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-size: 18px; /* Larger title */
}

.features .icon-box h3 a {
	color: #ddd; /* Lighter text color */
	transition: ease-in-out .3s
}

.features .icon-box:hover {
	background: rgba(255, 255, 255, 0.08); /* Slightly lighter on hover */
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}
.features .icon-box:hover h3 a {
	color: rgb(206, 45, 191); /* Purple on hover */
}


/* Testimonials Section Styles */
.testimonials {
    background: rgba(0,0,0,0.1); /* Dark background for contrast */
    padding: 80px 0;
}

.testimonials .testimonial-wrap {
	padding-left: 50px;
}

.testimonials .testimonial-item {
	box-sizing: content-box;
	padding: 40px; /* Increased padding */
	margin: 40px 15px; /* Increased margin */
	min-height: 200px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2); /* Stronger shadow */
	position: relative;
	background: #2a2a2a; /* Dark background for items */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials .testimonial-item .testimonial-img {
	width: 100px; /* Larger image */
	border-radius: 50%; /* Circular image */
	border: 4px solid rgba(255, 255, 255, 0.15); /* Border matching background */
	position: absolute;
	left: -50px; /* Adjusted position */
    top: 30px; /* Adjust vertical position */
}

.testimonials .testimonial-item h3 {
	font-size: 20px; /* Larger name */
	font-weight: bold;
	margin: 10px 0 5px 0; /* Adjusted margin */
	color: #eee; /* Lighter name color */
}

.testimonials .testimonial-item h4 {
	font-size: 15px; /* Slightly larger title */
	color: #aaa; /* Lighter title color */
	margin: 0 0 15px 0; /* Added bottom margin */
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: rgba(206, 45, 191, 0.3); /* Purple quote icons, semi-transparent */
	font-size: 30px; /* Larger icons */
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto;
    color: #ccc; /* Lighter testimonial text */
    line-height: 1.7;
}

.testimonials .swiper-pagination {
	margin-top: 30px; /* More space */
	position: relative
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.3); /* Dimmer inactive bullets */
	opacity: 1;
	border: 1px solid rgba(206, 45, 191, 0.5); /* Purple border */
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: rgb(206, 45, 191); /* Solid purple for active */
    border-color: rgb(206, 45, 191);
}

@media(max-width:767px) {
	.testimonials .testimonial-wrap {
		padding-left: 0
	}

	.testimonials .testimonial-item {
		padding: 30px;
		margin: 15px;
        text-align: center; /* Center content */
	}

	.testimonials .testimonial-item .testimonial-img {
		position: static; /* Bring image into flow */
		left: auto;
        margin: 0 auto 20px auto; /* Center image */
        width: 80px; /* Adjust size */
	}
     .testimonials .testimonial-item h3 {
        margin-top: 0;
     }
}

/* ... (Diğer CSS kuralları burada devam eder) ... */

/* Footer Styles */
#footer {
	background: #111; /* Darker footer */
	box-shadow: 0 -5px 15px 0 rgba(0, 0, 0, 0.15); /* Shadow at the top */
	padding: 30px 0;
	color: #aaa; /* Lighter text color */
	font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle top border */
}

#footer .credits {
	font-size: 13px;
	padding-top: 8px; /* More space */
	color: #888; /* Slightly dimmer credits */
}
#footer .credits a {
    color: #bbb; /* Lighter link color in credits */
    transition: color 0.3s ease;
}
#footer .credits a:hover {
    color: rgb(206, 45, 191); /* Purple on hover */
}


#footer .footer-links a {
	color: #bbb; /* Lighter link color */
	padding-left: 15px;
    transition: color 0.3s ease;
}

#footer .footer-links a:first-child {
	padding-left: 0
}

#footer .footer-links a:hover {
	color: rgb(206, 45, 191); /* Purple on hover */
}