/* Basic CSS Structure - Ready for customization */

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 300;
    background-color: #f4f6f8;
    overflow-x: hidden;
}

main {
    margin: 0;
    padding: 0;
}

/* Bootstrap Override - Remove all default margins/paddings */
.row {
    margin: 0 !important;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

/* Container Override for 1440px Design */
.container {
    max-width: 1440px;
    padding-left: 120px;
    padding-right: 120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0 !important;
}

/* Header Styles */
.header {
    background: transparent;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.logo {
    height: 40px;
}

.contact-btn {
    background: #000000;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 130px 0 40px;
    position: relative;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.slider-nav {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(28, 30, 31, 0.1);
    transform: scale(1.05);
}

.slider-arrow img {
    width: 20px;
    height: 20px;
}

.hero-content {
    width: 480px;
}

.hero-title {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 40px;
    letter-spacing: 0%;
    color: #1c1e1f;
    margin-bottom: 20px;
}

.hero-description {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    margin-bottom: 30px;
}

/* Services Section */
.services-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.services-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.services-slider {
    overflow: hidden;
    width: 100%;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 38px;
    justify-content: flex-start;
}

.service-slide {
    min-width: 379px;
    max-width: 379px;
    flex-shrink: 0;
    padding-top: 72px;
}

.service-card-figma {
    width: 379px;
    height: 218px;
    background: #f8fafb;
    border: 1px solid #ffffff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.service-icon-figma {
    width: 172px;
    height: 172px;
    position: absolute;
    top: -72px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
}

.service-title-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 20px;
    letter-spacing: 0%;
    color: #2c2c2c;
    margin-top: 56px;
    margin-bottom: 16px;
}

.service-description-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    text-align: center;
}

.services-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    z-index: 10;
    position: relative;
}

.services-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-arrow:hover {
    background: rgba(28, 30, 31, 0.1);
    transform: scale(1.05);
}

.services-arrow img {
    width: 20px;
    height: 20px;
}

.services-indicators {
    display: none;
}

/* Desktop contact button normal görünürlük */
.contact-btn {
    opacity: 1;
    transform: scale(1);
}

/* About Section */
.about-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 40px;
    letter-spacing: 0%;
    color: #2c2c2c;
    margin-bottom: 16px;
}

/* Projects Section */
.projects-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.projects-subtitle {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    margin-bottom: 58px;
}

.projects-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.projects-slider {
    overflow: hidden;
    width: 100%;
}

.projects-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%; /* 3 sayfa için */
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: flex-start;
}

.project-slide {
    flex: 0 0 11.111111%; /* 9 kart için her biri %11.11 (100/9) */
    max-width: 11.111111%;
    padding: 0 15px;
    position: relative;
    overflow: visible;
}

.project-card-figma {
    width: 100%;
    border-radius: 16px;
    overflow: visible;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.project-card-figma:hover {
    transform: translateY(-8px);
}

.project-image-figma {
    position: relative;
    width: 100%;
    height: 268px;
    overflow: hidden;
    border-radius: 16px;
    z-index: 1;
}

.project-img {
    width: 100%;
    height: 268px;
    object-fit: cover;
    border-radius: 16px;
}

.project-date {
    position: absolute;
    top: 80px;
    left: -16px;
    background-color: #f8fafb;
    color: #2c2c2c;
    padding: 8px 4px;
    border-radius: 8px;
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 500;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    height: 102px;
    width: 30px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ffffff;
    transform: translateZ(0);
}

.project-content-figma {
    padding: 24px 0px;
}

.project-title-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.project-description-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #828486;
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tag {
    background: #f8fafb;
    border: 1px solid #ffffff;
    color: #828486;
    padding: 6px 12px;
    border-radius: 26px;
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0%;
}

.projects-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8b5cf6;
}

.dot:hover {
    background: #8b5cf6;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
    background: #f4f6f8;
}

.contact-title {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 40px;
    letter-spacing: 0%;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    margin-bottom: 48px;
}

.contact-form-figma {
    max-width: 790px;
    margin: 0 auto;
}

/* Contact form specific overrides */
.contact-form-figma .row {
    display: flex !important;
    gap: 40px !important;
    margin-bottom: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.contact-form-figma .row > div {
    flex: 1 !important;
    margin-bottom: 0px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.contact-form-figma .mb-3 {
    margin-bottom: 0px !important;
}

.contact-form-figma .mb-4 {
    margin-bottom: 60px !important;
}

.form-control-figma {
    width: 100%;
    height: 48px;
    background: #f8fafb;
    border: 1px solid #ffffff;
    border-radius: 26px;
    padding: 0 16px;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #828486;
    transition: all 0.3s ease;
}

.form-control-figma:focus {
    outline: none;
    border-color: #01a2ec;
    box-shadow: none;
}

.form-control-figma::placeholder {
    color: #828486;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.textarea-figma {
    height: 144px;
    resize: none;
    padding: 16px;
}

.contact-btn-figma {
    width: 180px;
    height: 48px;
    background: #1c1e1f;
    border: none;
    border-radius: 26px;
    color: #ffffff;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn-figma:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

/* Footer */
.footer-figma {
    font-family: "Gilroy", sans-serif;
    margin: 0;
    padding: 0;
    display: block;
}

/* İlk Kısım - Ana Footer */
.footer-main {
    background: #1c1e1f;
    padding: 40px 0;
}

.footer-title-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0%;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-description-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    margin-bottom: 20px;
}

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

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

.footer-links-figma a {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0%;
    color: #828486;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-figma a:hover {
    color: #ffffff;
}

.footer-contact-figma p {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    margin-bottom: 8px;
}

.footer-contact-figma a {
    color: #828486;
    text-decoration: none;
}

.footer-contact-figma a:hover {
    color: #ffffff;
}

.footer-logo-figma {
    height: 40px;
    margin-bottom: 20px;
}

.footer-social-figma {
    display: flex;
    gap: 16px;
}

.social-link-figma {
    color: #828486;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-link-figma:hover {
    color: #ffffff;
}

/* İkinci Kısım - Alt Footer */
.footer-bottom {
    background: #232526;
    padding: 24px 0;
    margin: 0;
}

.footer-copyright-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0%;
    color: #828486;
    margin: 0;
}

.footer-legal-figma {
    display: flex;
    gap: 24px;
}

.footer-legal-figma a {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0%;
    color: #828486;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-figma a:hover {
    color: #ffffff;
}

/* Responsive Design */

/* Services navigation artık ortada olduğu için margin-right ayarları kaldırıldı */

/* Tablet and medium screen styles moved to tablet.css */

/* Mobile styles moved to mobile.css */

.footer-title {
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.navbar-nav .nav-link {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    color: #1c1e1f;
    line-height: 16px;
    margin: 0 20px;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.btn {
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: #000000;
    border-color: #000000;
    color: white;
}

.btn-primary:hover {
    background: #333333;
    border-color: #333333;
    color: white;
}

.text-primary {
    color: #01a2ec !important;
}

.hero-cta-link {
    display: inline-flex;
    align-items: center;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 16px;
    letter-spacing: 0%;
    color: #1c1e1f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-link:hover {
    text-decoration: none;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.hero-cta-link:hover .arrow-icon {
    transform: translateX(5px);
}

.about-title {
    font-family: "Gilroy", sans-serif;
    font-size: 127px;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 0%;
    color: #1c1e1f;
    background: transparent;
    margin-bottom: 16px;
}

.about-description {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    margin-bottom: 20px;
}

.about-main-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

/* Hero Visual Styles */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.dashboard-preview {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.dashboard-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Background Elements */

.global-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: -5;
    overflow: visible;
}

.gradient-ellipse {
    position: absolute;
    animation: float-ellipse 8s ease-in-out infinite;
}

.ellipse-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hero Section Ellipses */
.gradient-ellipse-purple {
    width: 727px;
    height: 727px;
    top: 80px;
    left: calc(50% - 828px); /* Center'dan sol tarafa sabit mesafe */
    animation-delay: 0s;
}

.gradient-ellipse-blue {
    width: 452px;
    height: 452px;
    top: 0;
    right: calc(50% - 720px); /* Center + container offset - 50px */
    left: auto;
    animation-delay: 4s;
}

/* About Section Ellipses */
.gradient-ellipse-purple-about {
    width: 727px;
    height: 727px;
    position: absolute;
    top: 1157px;
    right: calc(50% - 720px); /* Center + container offset - 50px */
    left: auto;
    animation-delay: 2s;
}

.gradient-ellipse-blue-about {
    width: 452px;
    height: 452px;
    position: absolute;
    top: 1302px;
    left: calc(50% - 720px); /* Center'dan sol tarafa sabit mesafe */
    animation-delay: 3s;
}

/* Animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-ellipse {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) translateX(5px) rotate(1deg);
    }
    50% {
        transform: translateY(-15px) translateX(0px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) translateX(-5px) rotate(-1deg);
    }
}

.social-link {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff;
}

/* Old responsive styles moved to tablet.css and mobile.css */
