* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    max-width: 100vw;
}

body.menu-open {
    overflow: hidden;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;

    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    width: 30px;
    height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #2d3a8c;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: white;
    z-index: 1001;
    transition: right 0.3s;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo {
    height: 40px;
}

.mobile-menu-close {
    font-size: 30px;
    color: #333;
    cursor: pointer;
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav-item {
    display: block;
    padding: 15px 0;
    color: #5a5f6d;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
}

.mobile-nav-item:hover {
    color: #2d3a8c;
}

.mobile-nav-item.mobile-cta {
    background: #ed3237;
    color: white;
    text-align: center;
    border-radius: 25px;
    margin-top: 20px;
    border: none;
}

/* Mobile Submenu Styles */
.mobile-nav-group {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-submenu {
    background: #f8f9fa;
    margin-left: 20px;
    border-left: 2px solid #ed3237;
    display: none;
}

.mobile-nav-group.active .mobile-submenu {
    display: block;
}

.mobile-submenu-item {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.mobile-submenu-item:hover {
    color: #2d3a8c;
    background: rgba(45, 58, 140, 0.1);
}


/* Header Styles */
.header {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 100%;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 18px 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    backdrop-filter: blur(30px);
}

.header.scrolled .nav-item {
    color: #333;
}

.header.scrolled .nav-item:hover {
    color: #000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-item {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-item:hover {
    color: #f0f0f0;
}


.logo-container {
    margin-right: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.cta-button {
    background: #ed3237;
    color: white;
    padding: 10px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-button:hover {
    background: #d42227;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 50, 55, 0.3);
}

/* Minimal Social Media Bar */
.social-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1002;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.social-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: #666;
    transition: all 0.3s;
}

.social-links a:hover svg {
    fill: #2d3a8c;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
    z-index: 1001;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1002;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:hover:before,
.nav-dropdown.dropdown-active .dropdown-menu,
.nav-dropdown.dropdown-active:before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.nav-dropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #5a5f6d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #2d3a8c;
    border-left-color: #ed3237;
    transform: translateX(5px);
}

/* Slider Container */
.slider-container {
    position: relative;
    width: calc(100% - 40px);
    margin: 13px 20px 0 20px;
    height: 720px;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Page containers need relative positioning for header */
.page-container {
    position: relative;
}

.page-hero {
    position: relative;
}

/* Gradient Overlay */
.slider-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(32, 39, 79, 0.8) 0%,
            rgba(32, 39, 79, 0.3) 25%,
            rgba(32, 39, 79, 0.2) 50%,
            rgba(32, 39, 79, 0.3) 75%,
            rgba(32, 39, 79, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) .slide-bg {
    background-image: url('../images/slider1.png');
}

.slide:nth-child(2) .slide-bg {
    background-image: url('../images/slider2.png');
}

.slide:nth-child(3) .slide-bg {
    background-image: url('../images/slider3.png');
}

.slide-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 600px;
    padding: 0 40px;
}

.slide-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 5px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.slide-content h2 {
    color: #FFF;
    text-align: center;
    font-family: Sora;
    font-size: 49px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 49px */
    margin-bottom: 8px;
}

.slide-content p {
    color: #FFF;
    text-align: center;
    font-family: Sora;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 120% */
    letter-spacing: 0.15px;
    margin-bottom: 35px;
    margin-top: 20px;
}

.slide-button {
    background: #3d4a9f;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
}

.slide-button:hover {
    background: #2d3a8c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 58, 140, 0.3);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 4;
}

.nav-arrow {
    width: 8px;
    height: 14px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    opacity: 1;
    transform: scale(1.2);
}

.nav-arrow img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.nav-arrow.left {
    transform: rotate(180deg);
}

.nav-arrow.left:hover {
    transform: rotate(180deg) scale(1.2);
}

.nav-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}


.progress-line {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #ed3237;
    transition: width linear;
    border-radius: 2px;
}

.progress-item.active .progress-fill {
    animation: progressAnimation linear;
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Categories Section */
.categories {
    width: calc(100% - 280px);
    margin: 50px 140px;
    padding-bottom: 50px;
}

.categories h2 {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 45px;
    font-weight: 300;
    letter-spacing: 3px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-item {
    position: relative;
    height: 240px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    margin: 5px;
}

.category-item:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.category-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.4s;
}

.category-item:nth-child(1) .category-bg {
    background-image: url('../images/category1.jpg');
}

.category-item:nth-child(2) .category-bg {
    background-image: url('../images/category2.jpg');
}

.category-item:nth-child(3) .category-bg {
    background-image: url('../images/category3.jpg');
}

.category-item:nth-child(4) .category-bg {
    background-image: url('../images/category4.jpg');
}

.category-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.4s;
}

.category-item:hover .category-bg::after {
    background: rgba(255, 255, 255, 0);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    transition: all 0.4s;
}

.category-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-item:hover .category-content {
    top: 46%;
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.category-icon img {
    width: 100%;
    height: 100%;
    transition: all 0.4s;
}

.category-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-item:hover .category-title {
    color: white;
}

.category-subtitle {
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.category-item:hover .category-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.view-more {
    margin-top: 18px;
    display: inline-block;
    padding: 8px 22px;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 20px;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0;
    text-transform: capitalize;
}

.category-item:hover .view-more {
    opacity: 1;
    background: white;
    color: #1a1a1a;
    border-color: white;
}

/* Products Section */
.products-section {
    position: relative;
    background: #302F81;
    padding: 80px 0;
    margin-top: -50px;
    border-radius: 48px 48px 0 0;
    overflow: hidden;
}

.products-bg-pattern {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(to right, rgba(48, 47, 129, 0) 0%, rgba(48, 47, 129, 0.5) 50%, rgba(48, 47, 129, 1) 100%);
}

.products-bg-pattern::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url('images/layer1.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.15;
}

.products-container {
    position: relative;
    z-index: 2;
    width: calc(100% - 280px);
    margin: 0 140px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.products-title {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    color: white;
    font-weight: 300;
    letter-spacing: 2px;
}

.products-see-all {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.products-see-all:hover {
    transform: translateX(5px);
}

.products-see-all span {
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.products-see-all:hover span {
    transform: translateX(3px);
}

.products-see-all span::after {
    content: '→';
    color: #302F81;
    font-size: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 32px;
    padding: 30px;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/layer2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.product-card>* {
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 25px;
}

.product-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.3;
}

.product-button {
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    background: transparent;
    color: #999;
    border: 2px solid #ddd;
}

.product-card:hover .product-button {
    background: #302F81;
    color: white;
    border: 2px solid #302F81;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(48, 47, 129, 0.2);
}

/* Projects Section */
.projects-section {
    background: white;
    padding: 80px 0 100px;
    position: relative;
}

.projects-container {
    width: calc(100% - 280px);
    margin: 0 140px;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.projects-title {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 2px;
}

.projects-see-all {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.projects-see-all:hover {
    transform: translateX(5px);
}

.projects-see-all span {
    background: #f5f5f5;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.projects-see-all:hover span {
    background: #302F81;
    transform: translateX(3px);
}

.projects-see-all span::after {
    content: '→';
    color: #302F81;
    font-size: 18px;
}

.projects-see-all:hover span::after {
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(48, 47, 129, 0.9) 0%, rgba(48, 47, 129, 0) 100%);
    padding: 30px;
    padding-top: 80px;
}

.project-name {
    font-family: 'Sora', sans-serif;
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-button {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 2px solid white;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.project-button:hover {
    background: white;
    color: #302F81;
}

/* About Section */
.about-section {
    position: relative;
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.about-container {
    width: calc(100% - 40px);
    margin: 0 20px;
    display: flex;

    gap: 0;
    position: relative;
    height: 666px;
}

.about-container {
    width: calc(100% - 40px);
    margin: 0 20px;
    display: flex;

    gap: 0;
    position: relative;

}

.about-left-image {
    width: 375px;
    height: 666px;
    position: relative;
    flex-shrink: 0;
}

.about-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 48px 48px 0;
}

.about-center {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.about-center-bg {
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    bottom: 0;
    opacity: 0.1;
}

.about-center-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
}

.about-title {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    color: #ed3237;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: center;
}

.about-text {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #5a5f6d;
    margin-bottom: 35px;
    text-align: left;
}

.about-button {
    display: inline-block;
    background: #ed3237;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.about-button:hover {
    background: #d42227;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 50, 55, 0.3);
}

.about-right-image {
    width: 375px;
    height: 666px;
    position: relative;
    flex-shrink: 0;
}

.about-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 48px 0 0 48px;
}

/* News Section */
.news-section {
    padding: 100px 0;
}

.news-container {
    width: calc(100% - 280px);
    margin: 0 140px;
}

.news-title {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.news-card {
    background: #F4F4F4;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #302F81;
}

.news-card:hover .news-content,
.news-card:hover .news-subtitle {
    color: white;
}

.news-card:hover .news-text {
    color: rgba(255, 255, 255, 0.9);
}

.news-card:hover .news-button {
    background: white;
    color: #302F81;
    border-color: white;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 30px;
}

.news-subtitle {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #1a1a1a;
    transition: all 0.3s;
}

.news-card:first-child .news-subtitle {
    font-size: 22px;
}

.news-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5f6d;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.news-button {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 20px;
    color: #999;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.news-button:hover {
    background: white;
    color: #302F81;
    border-color: white;
}

.news-see-all {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 50px;
    gap: 10px;
}

.news-see-all a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.news-see-all a:hover {
    transform: translateX(5px);
}

.news-see-all span {
    background: #f5f5f5;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.news-see-all a:hover span {
    background: #302F81;
    transform: translateX(3px);
}

.news-see-all span::after {
    content: '→';
    color: #302F81;
    font-size: 18px;
}

.news-see-all a:hover span::after {
    color: white;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(270deg, #20274F 0%, #302F81 100%);
    border-radius: 30px 30px 0 0;
    padding: 80px 0 30px;
    margin-top: -30px;
    color: white;
}

.footer-container {
    width: calc(100% - 280px);
    margin: 0 140px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    position: relative;
    justify-items: center;
}

.footer-column {
    position: relative;
}

.footer-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.footer-title {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-address svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-phone:hover,
.footer-email:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-phone svg,
.footer-email svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-left: 40px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.footer-developer img {
    height: 25px;
    opacity: 0.6;
    transition: all 0.3s;
}

.footer-developer:hover img {
    opacity: 1;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #ed3237;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: #d42227;
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: white;
    transform: rotate(180deg);
}

/* Teklif Formu Section */
.teklif-section {
    padding-bottom: 200px;
    background: white;
    position: relative;
}

.teklif-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 140px;
}

.teklif-wrapper {
    width: 100%;
    max-width: 1640px;
    height: 548px;
    margin: 0 auto;
    border-radius: 60px;
    background: #F4F4F4;
    position: relative;
    overflow: visible;
}

.teklif-content-area {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 46px;
    gap: 60px;
}

.teklif-left {
    width: 624px;
    flex-shrink: 0;
}

.teklif-title {
    width: 624px;
    height: 30px;
    color: #2D2D3A;
    font-family: 'Sora', sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.25px;
    margin-bottom: 15px;
}

.teklif-subtitle {
    color: #6B7280;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.15px;
    margin-bottom: 35px;
}

.teklif-grid {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 24px;
    margin-bottom: 24px;
}

.teklif-input {
    display: flex;
    width: 300px;
    height: 44px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    border: 1px solid #6B7280;
    background: white;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: #2D2D3A;
    transition: all 0.3s;
    outline: none;
}

.teklif-input::placeholder {
    color: #9CA3AF;
}

.teklif-input:focus {
    border-color: #E21F26;
    box-shadow: 0 0 0 3px rgba(226, 31, 38, 0.1);
}

.teklif-textarea {
    display: flex;
    width: 624px;
    height: 132px;
    padding: 12px;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 24px;
    border: 1px solid #6B7280;
    background: white;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: #2D2D3A;
    resize: none;
    transition: all 0.3s;
    outline: none;
    margin-bottom: 24px;
}

.teklif-textarea::placeholder {
    color: #9CA3AF;
}

.teklif-textarea:focus {
    border-color: #E21F26;
    box-shadow: 0 0 0 3px rgba(226, 31, 38, 0.1);
}

.teklif-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.teklif-checkbox-wrapper {
    width: 400px;
}

.teklif-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.teklif-checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #E21F26;
    cursor: pointer;
    flex-shrink: 0;
}

.teklif-checkbox-label {
    color: #B0B0B0;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.1px;
    cursor: pointer;
}

.teklif-required-note {
    color: #B0B0B0;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.1px;
    margin-left: 28px;
}

.teklif-submit-button {
    display: flex;
    width: 140px;
    height: 44px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border-radius: 24px;
    background: #E21F26;
    border: none;
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.teklif-submit-button:hover {
    background: #d42227;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 31, 38, 0.3);
}

/* Görsel */
.teklif-right {}

/* RESPONSIVE MEDIA QUERIES */

/* Laptop - 1400px */
@media (max-width: 1400px) {

    .categories,
    .products-container,
    .projects-container,
    .news-container,
    .footer-container {
        width: calc(100% - 120px);
        margin: 50px 60px;
    }

    .teklif-container {
        padding: 0 60px;
    }

    .teklif-right {
        width: 700px;
        right: -50px;
    }
}

/* Tablet Landscape - 1100px */
@media (max-width: 1100px) {
    .header {
        display: none !important;
    }

    .mobile-header {
        display: flex !important;
    }

    .slider-container {
        height: 500px;
        margin-top: 90px;
    }

    .page-hero {
        margin-top: 90px !important;
    }

    .slide-content h2 {
        font-size: 35px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .categories,
    .products-container,
    .projects-container,
    .news-container,
    .footer-container {
        width: calc(100% - 60px);
        margin: 30px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-column::after {
        display: none;
    }

    .about-container {
        flex-direction: column;
        height: auto;
    }

    .about-left-image,
    .about-right-image {
        width: 100%;
        height: 300px;
    }

    .about-left-image img {
        border-radius: 48px;
    }

    .about-right-image img {
        border-radius: 48px;
    }

    .about-center {
        padding: 60px 20px;
    }

    .teklif-wrapper {
        height: auto;
    }

    .teklif-content-area {
        flex-direction: column;
        padding: 50px;
    }

    .teklif-right {
        position: relative;
        width: 100%;
        height: 300px;
        right: auto;
        top: auto;
        transform: none;
    }

    .teklif-left {
        width: 100%;
    }

    .teklif-title {
        width: 100%;
        font-size: 28px;
    }

    .teklif-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .teklif-input,
    .teklif-textarea {
        width: 100%;
    }

    .teklif-bottom {
        flex-direction: column;
    }

    .teklif-submit-button {
        width: 100%;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    .slider-container {
        height: 400px;
        border-radius: 30px;
        margin-top: 90px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
        margin: 15px 0 25px;
    }

    .slide-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .slider-navigation {
        bottom: 30px;
    }

    .progress-number {
        font-size: 25px;
    }

    .progress-line {
        width: 40px;
    }

    .categories h2,
    .products-title,
    .projects-title,
    .news-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .category-item {
        height: 280px;
    }

    .product-card {
        height: 340px;
        padding: 20px;
    }

    .product-image {
        height: 160px;
    }

    .project-card {
        height: 300px;
    }

    .news-card {
        border-radius: 20px;
    }

    .news-image {
        height: 150px;
    }

    .news-content {
        padding: 20px;
    }

    .news-subtitle {
        font-size: 18px;
    }

    .footer-middle {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .footer-social {
        margin-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-developer {
        margin-left: 0;
    }

    /* Teklif Formu Tablet */
    .teklif-section {
        padding: 50px 0;
    }

    .teklif-container {
        padding: 0 20px;
    }

    .teklif-wrapper {
        border-radius: 35px;
        height: auto;
        min-height: auto;
    }

    .teklif-content-area {
        padding: 40px 30px;
        gap: 30px;
        flex-direction: column;
    }

    .teklif-left {
        width: 100%;
    }

    .teklif-title {
        font-size: 26px;
        height: auto;
        margin-bottom: 15px;
        line-height: 1.2;
        text-align: center;
    }

    .teklif-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        text-align: center;
        line-height: 1.4;
    }

    .teklif-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 22px;
    }

    .teklif-input {
        width: 100%;
        height: 46px;
        font-size: 14px;
        padding: 14px 16px;
        border-radius: 23px;
    }

    .teklif-textarea {
        width: 100%;
        height: 120px;
        font-size: 14px;
        padding: 14px 16px;
        border-radius: 23px;
    }

    .teklif-bottom {
        flex-direction: column;
        gap: 22px;
        align-items: stretch;
    }

    .teklif-checkbox-wrapper {
        width: 100%;
    }

    .teklif-checkbox-label {
        font-size: 13px;
        line-height: 1.5;
    }

    .teklif-required-note {
        font-size: 13px;
        margin-left: 28px;
        margin-top: 5px;
    }

    .teklif-submit-button {
        width: 100%;
        height: 46px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 23px;
    }

    .teklif-right {
        position: relative;
        width: 100%;
        height: 250px;
        right: auto;
        top: auto;
        transform: none;
        order: -1;
    }

    .teklif-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 20px;
    }
}

/* Mobile - 480px ve 576px arası */
@media (max-width: 576px) {
    .slider-container {
        width: calc(100% - 20px);
        margin: 90px 10px 0 10px;
        height: 350px;
        border-radius: 20px;
    }

    .category-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-item {
        height: 200px;
        border-radius: 25px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .category-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .category-subtitle {
        font-size: 13px;
    }

    .view-more {
        padding: 6px 16px;
        font-size: 11px;
    }

    .product-card {
        height: 280px;
        padding: 20px 15px;
        border-radius: 20px;
    }

    .product-image {
        height: 140px;
        margin-bottom: 20px;
    }

    .product-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .product-button {
        padding: 8px 20px;
        font-size: 12px;
    }

    .projects-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .mobile-menu {
        width: 90%;
        max-width: none;
    }

    .slider-container {
        width: calc(100% - 20px);
        margin: 90px 10px 0 10px;
        height: 350px;
        border-radius: 20px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .slide-content h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .slide-content p {
        font-size: 13px;
        margin: 10px 0 20px;
    }

    .slide-button {
        padding: 10px 25px;
        font-size: 13px;
    }

    .slider-navigation {
        bottom: 20px;
        gap: 10px;
    }

    .progress-number {
        font-size: 20px;
    }

    .progress-line {
        width: 30px;
    }

    .categories,
    .products-container,
    .projects-container,
    .news-container,
    .footer-container {
        width: calc(100% - 30px);
        margin: 20px 15px;
    }

    .categories h2,
    .products-title,
    .projects-title,
    .news-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .category-grid,
    .products-grid,
    .projects-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-item {
        height: 250px;
        border-radius: 30px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-title,
    .category-subtitle {
        font-size: 15px;
    }

    .products-section {
        padding: 60px 0;
        border-radius: 30px 30px 0 0;
    }

    .products-header,
    .projects-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .products-see-all,
    .projects-see-all,
    .news-see-all a {
        font-size: 13px;
    }

    .product-card {
        height: 320px;
        border-radius: 20px;
    }

    .product-title {
        font-size: 16px;
    }

    .project-card {
        height: 250px;
        border-radius: 20px;
    }

    .project-name {
        font-size: 18px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-left-image,
    .about-right-image {
        height: 250px;
    }

    .about-left-image img,
    .about-right-image img {
        border-radius: 30px;
    }

    .about-center {
        padding: 40px 15px;
    }

    .about-content {
        padding: 0 15px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .about-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .news-section {
        padding: 60px 0;
    }

    .news-card {
        border-radius: 20px;
    }

    .news-image {
        height: 180px;
    }

    .news-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .news-text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .news-button {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Teklif Formu Mobil */
    .teklif-section {
        padding: 40px 0;
    }

    .teklif-container {
        padding: 0 15px;
    }

    .teklif-wrapper {
        border-radius: 25px;
        height: auto;
        min-height: auto;
    }

    .teklif-content-area {
        padding: 30px 20px;
        flex-direction: column;
        gap: 25px;
    }

    .teklif-left {
        width: 100%;
    }

    .teklif-title {
        font-size: 20px;
        height: auto;
        margin-bottom: 10px;
        line-height: 1.3;
        text-align: center;
    }

    .teklif-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
        text-align: center;
        line-height: 1.5;
    }

    .teklif-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .teklif-input {
        width: 100%;
        height: 44px;
        font-size: 14px;
        padding: 12px 16px;
        border-radius: 22px;
    }

    .teklif-textarea {
        width: 100%;
        height: 100px;
        font-size: 14px;
        padding: 12px 16px;
        border-radius: 22px;
        resize: none;
    }

    .teklif-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .teklif-checkbox-wrapper {
        width: 100%;
    }

    .teklif-checkbox-container {
        gap: 12px;
        margin-bottom: 8px;
    }

    .teklif-checkbox-container input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 3px;
    }

    .teklif-checkbox-label {
        font-size: 12px;
        line-height: 1.6;
    }

    .teklif-required-note {
        font-size: 11px;
        margin-left: 28px;
        margin-top: 5px;
        line-height: 1.4;
    }

    .teklif-submit-button {
        width: 100%;
        height: 44px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 22px;
        padding: 12px 24px;
    }

    .teklif-right {
        position: relative;
        width: 100%;
        height: 180px;
        right: auto;
        top: auto;
        transform: none;
        order: -1;
        margin-bottom: 10px;
    }

    .teklif-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
    }

    .footer-section {
        padding: 60px 0 20px;
        border-radius: 20px 20px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-address {
        font-size: 13px;
    }

    .footer-phone,
    .footer-email {
        font-size: 13px;
        padding: 8px 15px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ====================================
   SCROLL REVEAL ANIMATIONS
   ==================================== */

/* Ana animasyon sınıfları */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.scroll-reveal.fade-left {
    transform: translateX(-60px) translateY(20px);
}

.scroll-reveal.fade-right {
    transform: translateX(60px) translateY(20px);
}

.scroll-reveal.fade-up {
    transform: translateY(60px);
}

.scroll-reveal.scale-in {
    transform: scale(0.8) translateY(30px);
}

/* Aktif durumda gösterme */
.scroll-reveal.active {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Staggered animasyonlar için gecikme */
.scroll-reveal.delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal.delay-4 {
    transition-delay: 0.4s;
}

.scroll-reveal.delay-5 {
    transition-delay: 0.5s;
}

.scroll-reveal.delay-6 {
    transition-delay: 0.6s;
}

/* Özel animasyonlar */
.scroll-reveal.slide-up-slow {
    transform: translateY(100px);
    transition: all 1.2s ease;
}

.scroll-reveal.bounce-in {
    transform: scale(0.3) translateY(50px);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Social Media Icons - Slider */
.social-media-icons {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-icon:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.social-icon.facebook:hover {
    background: rgba(66, 103, 178, 0.8);
    border-color: #4267B2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    border-color: #E1306C;
}

.social-icon.linkedin:hover {
    background: rgba(10, 102, 194, 0.8);
    border-color: #0A66C2;
}

/* Share Button */
.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.share-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: all 0.3s;
}

.share-button:hover {
    transform: scale(1.1);
    background: rgba(46, 125, 50, 0.8);
    border-color: #2E7D32;
}

/* Responsive adjustments for social icons */
@media (max-width: 1024px) {
    .social-media-icons {
        right: 20px;
        gap: 10px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .share-button {
        width: 36px;
        height: 36px;
    }

    .share-button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    .social-media-icons {
        right: 15px;
        gap: 8px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 14px;
        height: 14px;
    }

    .share-button {
        width: 32px;
        height: 32px;
    }

    .share-button svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .social-media-icons {
        right: 10px;
        gap: 6px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon svg {
        width: 12px;
        height: 12px;
    }

    .share-button {
        width: 28px;
        height: 28px;
    }

    .share-button svg {
        width: 12px;
        height: 12px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile responsive için WhatsApp butonu */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}