@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat.ttf') format('truetype');
}

/* azonix font */
@font-face {
    font-family: 'Azonix';
    src: url('../font/Azonix.otf') format('opentype');
}

/* Default CSS */
:root {
    --primary-color: #072552; 
    --primary-color-low: rgba(2, 51, 124, 0.5);
    --primary-color-dark: #001a4d;

    --secondary-color: #adb5bd; 
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;

    --tertiary-color: #e9ecef;
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #e7e7e7;
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e4e7eb;

    --text-dark: #343a40;
    --text-dark-low: #495057b9;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa;
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #02337c; 
    --button-color-low: rgba(2, 51, 124, 0.5);
    --button-color-dark: #001a4d;

    --card-bg: #fcfcfc;
    --card-bg-low: #f3f2f2;
    --smoothline-color: var(--bg-color);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

/* reset all the default styles */

html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }


body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

.f-Azonix {
    font-family: 'Azonix', sans-serif;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}





body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    width: max-content;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 10%;
    transition: all 0.3s ease;
}

.navbar .left {
    margin-right: 10px;
}

.navbar .right {
    margin-left: 10px;
}

.navbar .center .logo {
    width: 100%;
    height: auto;
}

.navbar .center .logo svg {
    width: 100%;
    height: auto;
}

.navbar .center .logo svg path {
    fill: white;
}

.navbar .nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.navbar .nav a {
    margin: 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.navbar .nav a:hover::after {
    width: 100%;
}

/* Scrolled state styles */
body[data-is-scrolled="true"] .navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    margin-top: 1rem;
}

body[data-is-scrolled="true"] .navbar .center {
    width: 12%;
}

body[data-is-scrolled="true"] .navbar .logo svg path {
    fill: var(--primary-color);
}

body[data-is-scrolled="true"] .navbar .nav a {
    color: var(--primary-color);
    position: relative;
    font-weight: 500;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 1250px) {
    .navbar .center {
        width: 15%;
    }

    .navbar .nav a {
        font-size: 1rem;
    }

    body[data-is-scrolled="true"] .navbar .center {
        width: 11%;
    }

    body[data-is-scrolled="true"] .navbar .nav a {
        font-size: 1rem;
    }

    body[data-is-scrolled="true"] .navbar {
        padding: 0.5rem 0.8rem;
    }

    body[data-is-scrolled="true"] .navbar .nav a {
        font-size: 1rem;
    }
}


.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 300px;
    height: 100vh;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    transition: 0.5s ease;
    z-index: 999;
}

.mobile-menu .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

.mobile-menu .close i {
    font-size: 2rem;
    font-weight: 600;
}

.mobile-menu.active {
    right: 0;
}



body[data-is-scrolled="true"] .mobile-menu a {
    color: #fff!important;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 20px 0;
    transition: 0.3s ease;
}

.mobile-menu a:hover {
    transform: translateX(10px);
    color: var(--secondary-color);
}

.navbar.active {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    border-radius: unset!important;
    padding: 0.5rem 3%;
    box-shadow: none;
    margin-top: unset;
    width: 94%;
    transition: all 0.3s ease;
}

.navbar.active .center svg path {
    fill: var(--primary-color);
}

@media (max-width: 1100px) {
    .navbar .center {
        width: 20%;
    }

    .navbar .nav a {
        font-size: 1rem;
    }

    body[data-is-scrolled="true"] .navbar .center {
        width: 15%;
    }

    body[data-is-scrolled="true"] .navbar .nav a {
        font-size: 1rem;
    }

    body[data-is-scrolled="true"] .navbar {
        padding: 0.5rem 0.8rem;
    }

    body[data-is-scrolled="true"] .navbar .nav a {
        font-size: 1rem;
    }

    .navbar .left,
    .navbar .right {
        display: none;
    }

    .navbar {
        justify-content: space-between;
    }

    .burger {
        display: block;
        cursor: pointer;
    }


    .burger div {
        width: 50px;
        height: 2.5px;
        background: white;
        margin: 13px;
        transition: all 0.3s ease;
    }

    .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    body[data-is-scrolled="true"] .burger div {
        background: var(--primary-color);
    }

    body[data-is-scrolled="true"] .mobile-menu a {
        color: var(--primary-color);
    }

    body[data-is-scrolled="true"] .mobile-menu a:hover {
        color: white;
    }

    body[data-is-scrolled="true"] .navbar {
        background: rgba(255, 255, 255, 1);
        backdrop-filter: none;
        border-radius: unset!important;
        padding: 0.5rem 3%;
        box-shadow: none;
        margin-top: unset;
        width: 94%;
    }

}

@media (max-width: 768px) {
    .navbar {
        width: 94%;
        padding: 1rem 0;
    }

    .navbar .center {
        width: 25%;
    }

    .burger div {
        width: 35px;
        margin: 8px;
    }

    .mobile-menu {
        width: 100%;
    }

    body[data-is-scrolled="true"] .navbar {
        width: 94%;
        padding: 0.5rem 3%;
    }

    body[data-is-scrolled="true"] .navbar .center {
        width: 25%;
    }

    

    .burger div {
        width: 50px;
        margin: 11px;
    }
}

@media (max-width: 480px) {
    .navbar .center {
        width: 35%;
    }


    body[data-is-scrolled="true"] .navbar .center {
        width: 35%;
    }

    .mobile-menu a {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    .mobile-menu .close {
        top: 15px;
        right: 15px;
    }

    .mobile-menu .close i {
        font-size: 1.5rem;
    }

    .burger div {
        width: 45px;
        margin: 11px;
    }
}

@media (max-width: 360px) {
    .navbar .center {
        width: 40%;
    }

    body[data-is-scrolled="true"] .navbar .center {
        width: 45%;
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

.loader .loader-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.loader .loader-inner .boxes {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    z-index: 1;
}

.loader .loader-inner .boxes div {
    width: 10%;
    height: 100%;
    background: var(--bg-color);
    animation: loader 1.5s infinite;
}

.loader .loader-inner .centered {
    z-index: 2;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .loader-inner .centered svg {
    width: 100%;
    height: auto;
}

.loader .loader-inner .centered svg #Group_2 path,
.loader .loader-inner .centered svg #Group path
{
    opacity: 0;
}

.loader #Vector_4,
.loader #Vector_3,
.loader #Vector_2,
.loader #Vector {
    opacity: 0;
}


/* loader responsive */

@media (max-width: 768px) {
    .loader .loader-inner .centered {
        width: 50%;
    }
}


@media (max-width: 480px) {
    .loader .loader-inner .centered {
        width: 70%;
    }

    .loader .loader-inner .boxes div:nth-child(even) {
        display: none;
    }
}










section {
    display: flex;
    position: relative;
    height: 100vh;
}


.landing-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 98.5%;
    margin: 0 auto;
    height: 97vh;
    margin-top: 1.5vh;
    border-radius: 20px;
}

.landing-sec .inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.landing-sec .inner .parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.landing-sec .inner .parallax .parallax-inner {
    width: 100%;
    height: 100vh;
    position: relative;
}

.parallax .parallax-inner  img,
.parallax .parallax-inner  svg {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
}

.landing-sec .inner .parallax .parallax-inner img:first-child{
    height: 120%;
    position: relative;
}

/* cloud fotoğrafları için soldan sağa sonsuz animasyon */

@keyframes cloud {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes cloud2 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}


.parallax img.layer2 {
    animation: cloud 100s linear infinite;
    animation-delay: 0.2s;
}
.parallax img.layer2-1 {
    animation: cloud2 50s linear infinite;
}

.parallax img.layer4 {
    animation: cloud 100s linear infinite;
}

.parallax img.layer4-4 {
    animation: cloud2 50s linear infinite;
}

.parallax img.layer5 {
    animation: cloud 100s linear infinite;
}

.parallax img.layer6 {
    animation: cloud2 50s linear infinite;
}

.parallax img.cloud {
    width: 150%;
    left: -18%;
    bottom: -80%;
}


/* Building */
.parallax .parallax-inner .layer3 {
    width: 150%;
    left: -18%;
    bottom: -80%;
    opacity: 0;
}

.parallax .parallax-inner .layer3Framed {
    width: 150%;
    left: -18%;
    bottom: -80%;
}

.parallax .parallax-inner .layer3Framed g rect {
    height: 0%;
}

.parallax .parallax-inner .layer7 {
    width: 150%;
    left: -18%;
}

.parallax .text-layer {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: start;
}

.parallax .text-layer.pt1 {
    top: 25%;
    left: 56%;
    font-size: 10rem;
    color: var(--bg-color);
    z-index: 0;
    letter-spacing: 1rem;
    line-height: 0.75;
}

.parallax .text-layer.pt2 {
    top: 45%;
    left: 65%;
    font-size: 1.45rem;
    color: var(--bg-color);
    z-index: 0;
    width: 40%;
}

/* Landing Responsive */

@media (max-width: 1400px) {
    .parallax .text-layer.pt1 {
        font-size: 8rem;
    }
    
    .parallax .text-layer.pt2 {
        font-size: 1.2rem;
        width: 50%;
    }
}

@media (max-width: 1200px) {
    .parallax .text-layer.pt1 {
        font-size: 6rem;
        top: 30%;
    }
    
    .parallax .text-layer.pt2 {
        font-size: 1.1rem;
        width: 60%;
        top: 50%;
    }
}

@media (max-width: 992px) {
    .parallax .text-layer.pt1 {
        font-size: 5rem;
        left: 50%;
        text-align: center;
    }
    
    .parallax .text-layer.pt2 {
        font-size: 1rem;
        width: 80%;
        text-align: center;
        left: 50%;
    }
}

@media (max-width: 768px) {
    .parallax .text-layer.pt1 {
        font-size: 4rem;
        letter-spacing: 0.5rem;
        width: 50%;
        top: 30%;
        left: 54.5%;
        transform: translate(-50%, -50%);
    }
    
    .parallax .text-layer.pt2 {
        font-size: 1.1rem;
        width: 90%;
        top: 38%;
        left: 54.5%;
    }



    .landing-sec .inner .parallax {
        width: 100%;
    }

    .landing-sec {
        height: 95vh;
    }
    
    .landing-sec .parallax {
        height: 95vh;
    }
    .landing-sec .inner .parallax .parallax-inner {
        width: 200vw;
        bottom: 4vh;
        left: -60%;
    }
    
}

@media (max-width: 576px) {
    .parallax .text-layer.pt1 {
        font-size: 3.4rem;
        letter-spacing: 0.25rem;
    }
    
    .parallax .text-layer.pt2 {
        font-size: 0.90rem;
        width: 95%;
    }

}

@media (max-width: 480px) {
    .parallax .text-layer.pt1 {
        font-size: 3rem;
        letter-spacing: 0.2rem;
    }
    
    .parallax .text-layer.pt2 {
        font-size: 1.2rem;
        width: 40%;
        top: 40%;
    }
}

@media (max-width: 360px) {
    .parallax .text-layer.pt1 {
        font-size: 2.2rem;
        letter-spacing: 0.15rem;
    }
    
    .parallax .text-layer.pt2 {
        font-size: 0.70rem;
    }
}


.about-sec {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: auto;
}

.about-sec .about-container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0;
}

.about-sec .about-container .about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-sec .about-container .about-content .about-text {
    flex: 1;
    padding-right: 2rem;
}

.about-sec .about-container .about-content .about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-low));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-sec .about-container .about-content .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.about-sec .about-container .about-content .about-text .stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.about-sec .about-container .about-content .about-text .stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-sec .about-container .about-content .about-text .stats .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-sec .about-container .about-content .about-text .stats .stat-item .stat-text {
    font-size: 1rem;
    color: var(--text-dark-low);
}

.about-sec .about-container .about-content .about-images {
    flex: 1;
    display: flex;
    gap: 2rem;
    position: relative;
}

.about-sec .about-container .about-content .about-images .image-container {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
}

.about-sec .about-container .about-content .about-images .image-container.offset {
    margin-top: 4rem;
}

.about-sec .about-container .about-content .about-images .image-container .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-sec .about-container .about-content .about-images .image-container .image-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.about-sec .about-container .about-content .about-images .image-container:hover .about-img {
    transform: scale(1.05);
}

.about-sec .about-container .about-content .about-images .image-container:hover .image-border {
    opacity: 1;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

/* Responsive Tasarım */
@media (max-width: 1400px) {
    .about-sec .about-container {
        width: 90%;
    }

    .about-sec .about-container .about-content .about-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 1200px) {
    .about-sec .about-container .about-content {
        flex-direction: column;
        gap: 3rem;
    }

    .about-sec .about-container .about-content .about-text {
        padding-right: 0;
        text-align: center;
    }

    .about-sec .about-container .about-content .about-text .stats {
        justify-content: center;
    }

    
}

@media (max-width: 768px) {
    .about-sec .about-container {
        width: 95%;
        padding: 2rem 0;
    }

    .about-sec .about-container .about-content .about-text h2 {
        font-size: 2.5rem;
    }

    .about-sec .about-container .about-content .about-text p {
        font-size: 1rem;
    }

    .about-sec .about-container .about-content .about-images {
        flex-direction: column;
        align-items: center;
    }

    .about-sec .about-container .about-content .about-images .image-container {
        width: 100%;
        max-width: 300px;
        height: 350px;
    }

    .about-sec .about-container .about-content .about-images .image-container.offset {
        margin-top: 2rem;
    }

}

@media (max-width: 480px) {
    .about-sec .about-container .about-content .about-text h2 {
        font-size: 2rem;
    }

    .about-sec .about-container .about-content .about-text .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-sec .about-container .about-content .about-images .image-container {
        height: 300px;
    }

}

/* Why Us Section */
.why-us-sec {
    background: var(--bg-color);
    padding: 6rem 0;
    position: relative;
    height: 72vh;
}

.why-us-sec .container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.why-us-sec .section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-low));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.ventFan {
    position: absolute;
    bottom: -80%;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
}

.ventFan svg {
    width: 100%;
    height: auto;
    z-index: 10;
}

.ventFan svg .fan {
    transform-origin: center;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,1);
    position: relative;
    z-index: 10;
    
    animation: spin 1.5s linear infinite;
    opacity: 0.95;
}

.ventFan svg .fanWinds {
    transform-origin: center;
    z-index: 1;

    animation: spin 0.5s linear infinite;
    opacity: 0.6;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}





.why-us-sec .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    z-index: 10;
    position: relative;
}


.why-us-sec .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.why-us-sec .feature-card:hover {
    transform: translateY(-10px);
}

.why-us-sec .feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-us-sec .feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-us-sec .feature-card p {
    color: var(--text-dark-low);
    line-height: 1.6;
}

/* Services Section */
.services-sec {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    height: auto;

}

.services-sec .container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-sec .section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-low));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-sec .services-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
}

.services-sec .service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    width: 30%;
}

.services-sec .service-card .service-image {
    height: 200px;
    overflow: hidden;
}

.services-sec .service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-sec .service-card:hover .service-image img {
    transform: scale(1.1);
}

.services-sec .service-card .service-content {
    padding: 2rem;
}

.services-sec .service-card .service-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-sec .service-card .service-content p {
    color: var(--text-dark-low);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.services-sec .service-card .service-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-sec .service-card .service-btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

.services-sec .service-card .service-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

services-sec .service-card .service-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .why-us-sec .container,
    .services-sec .container {
        width: 90%;
    }
    .why-us-sec {
        height: auto;
    
    }
}

/* Services Section Responsive Styles */
@media (max-width: 1400px) {
    .services-sec .container {
        width: 90%;
    }

    .services-sec .services-grid {
        gap: 2rem;
    }

    .services-sec .service-card {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .services-sec .service-card {
        width: 47%;
    }

    .services-sec .section-title {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }

    .services-sec .service-card .service-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .services-sec {
        padding: 4rem 0;
    }

    .services-sec .container {
        width: 95%;
    }

    .services-sec .services-grid {
        gap: 1.5rem;
    }

    .services-sec .service-card {
        width: 100%;
    }

    .services-sec .service-card .service-image {
        height: 180px;
    }

    .services-sec .service-card .service-content {
        padding: 1.5rem;
    }

    .services-sec .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-sec {
        padding: 3rem 0;
    }

    .services-sec .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .services-sec .service-card .service-image {
        height: 160px;
    }

    .services-sec .service-card .service-content {
        padding: 1.2rem;
    }

    .services-sec .service-card .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .services-sec .service-card .service-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .services-sec .service-card .service-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .why-us-sec,
    .services-sec {
        padding: 4rem 0;
    }

    .why-us-sec .section-title,
    .services-sec .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .why-us-sec .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .services-sec .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .why-us-sec .container,
    .services-sec .container {
        width: 95%;
    }

    .why-us-sec .section-title,
    .services-sec .section-title {
        font-size: 2rem;
    }

    .why-us-sec .feature-card {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0c3b7c 100%);
    color: var(--text-light);
    overflow: hidden;
}

/* Air Flow Animation */
.footer .air-flow {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 160px;
}

.footer .air-flow .flow-line {
    position: absolute;
    width: 200%;
    height: 40px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: flowAnimation 8s linear infinite;
}

.footer .air-flow .flow-line:nth-child(1) { 
    top: 0; 
    animation-delay: 0s; 
}

.footer .air-flow .flow-line:nth-child(2) { 
    top: 50%; 
    animation-delay: -4s; 
}

.footer .air-flow .flow-line:nth-child(3) { 
    top: 100%; 
    animation-delay: -2s; 
}

/* Footer Content Structure */
.footer .footer-content {
    position: relative;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 6rem 0 2rem;
}

.footer .footer-content .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Brand Column */
.footer .footer-content .footer-top .brand-col .footer-logo {
    margin-bottom: 2rem;
}

.footer .footer-content .footer-top .brand-col .footer-logo svg {
    width: 200px;
    height: auto;
}

.footer .footer-content .footer-top .brand-col .footer-logo svg path {
    fill: white;
}

.footer .footer-content .footer-top .brand-col .brand-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer .footer-content .footer-top .brand-col .brand-info p {
    color: var(--text-light)!important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer .footer-content .footer-top .brand-col .brand-info .cta-buttons {
    display: flex;
    gap: 1rem;
}

.footer .footer-content .footer-top .brand-col .brand-info .cta-buttons .btn-primary {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: calc(100% - 4rem);
}

.footer .footer-content .footer-top .brand-col .brand-info .cta-buttons .btn-secondary {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text-light);
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: calc(100% - 4rem);
}

.footer .footer-content .footer-top .brand-col .brand-info .cta-buttons .btn-primary:hover {
    background: var(--text-light-dark);
    transform: translateY(-2px);
}

.footer .footer-content .footer-top .brand-col .brand-info .cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Links Column */
.footer .footer-content .footer-top .links-col .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer .footer-content .footer-top .links-col .footer-nav h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer .footer-content .footer-top .links-col .footer-nav ul li {
    margin-bottom: 10px;
}

.footer .footer-content .footer-top .links-col .footer-nav a {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer .footer-content .footer-top .links-col .footer-nav .nav-group h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer .footer-content .footer-top .links-col .footer-nav .nav-group ul li {
    margin-bottom: 1rem;
}

.footer .footer-content .footer-top .links-col .footer-nav .nav-group ul li a {
    color: var(--text-light-low);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.footer .footer-content .footer-top .links-col .footer-nav .nav-group ul li a i {
    font-size: 1.2rem;
    color: var(--text-light-low);
    transition: all 0.3s ease;
}

.footer .footer-content .footer-top .links-col .footer-nav .nav-group ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer .footer-content .footer-top .links-col .footer-nav .nav-group ul li a:hover i {
    color: white;
}

/* Contact Column */
.footer .footer-content .footer-top .contact-col {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
}

.footer .footer-content .footer-top .contact-col h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer .footer-content .footer-top .contact-col .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer .footer-content .footer-top .contact-col .contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer .footer-content .footer-top .contact-col .contact-card i {
    font-size: 1.5rem;
    color: white;
}

.footer .footer-content .footer-top .contact-col .contact-card h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer .footer-content .footer-top .contact-col .contact-card p {
    color: var(--text-light)!important;
    font-size: 1rem;
    line-height: 1.5;
}

.footer .footer-content .footer-top .contact-col .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .footer-content .footer-top .contact-col .social-links .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer .footer-content .footer-top .contact-col .social-links .social-link i {
    font-size: 1.2rem;
    color: white;
}

.footer .footer-content .footer-top .contact-col .social-links .social-link:hover {
    background: white;
    transform: translateY(-3px);
}

.footer .footer-content .footer-top .contact-col .social-links .social-link:hover i {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer .footer-content .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer .footer-content .footer-bottom .footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-content .footer-bottom .footer-meta .stats {
    display: flex;
    gap: 2rem;
}

.footer .footer-content .footer-bottom .footer-meta .stats .stat-item {
    text-align: center;
}

.footer .footer-content .footer-bottom .footer-meta .stats .stat-item span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer .footer-content .footer-bottom .footer-meta .stats .stat-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer .footer-content .footer-bottom .footer-meta nav {
    display: flex;
    gap: 2rem;
}

.footer .footer-content .footer-bottom .footer-meta nav a {
    color: var(--text-light-low);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer .footer-content .footer-bottom .footer-meta nav a:hover {
    color: white;
}

.footer .footer-content .footer-bottom .footer-meta p {
    color: var(--text-light-low);
    font-size: 0.9rem;
}

/* ...existing code... */

.footer .footer-content .footer-bottom .footer-meta .copyright-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .footer-content .footer-bottom .footer-meta .copyright-row p {
    color: var(--text-light-low);
}

.footer .footer-content .footer-bottom .footer-meta .copyright-row .developer-link {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.footer .footer-content .footer-bottom .footer-meta .copyright-row .developer-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.footer .footer-content .footer-bottom .footer-meta .copyright-row .developer-link span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.footer .footer-content .footer-bottom .footer-meta .copyright-row .developer-link i {
    font-size: 0.85rem;
    color: #4CAF50;
}

@media (max-width: 768px) {
    .footer .footer-content .footer-bottom .footer-meta .copyright-row {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .footer .footer-content {
        width: 95%;
    }

    .footer .footer-content .footer-top {
        gap: 3rem;
    }

    .footer .footer-content .footer-top .brand-col .footer-logo svg {
        width: 180px;
    }

    .footer .footer-content .footer-top .brand-col .brand-info h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 1200px) {
    .footer .footer-content .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer .footer-content .footer-top .contact-col {
        grid-column: span 2;
        padding: 2.5rem;
    }

    .footer .footer-content .footer-bottom .footer-meta {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .footer {
        padding-top: 2rem;
    }

    .footer .footer-content {
        padding: 4rem 0 2rem;
    }

    .footer .footer-content .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer .footer-content .footer-top .brand-col {
        text-align: center;
    }

    .footer .footer-content .footer-top .brand-col .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer .footer-content .footer-top .brand-col .brand-info .cta-buttons {
        justify-content: center;
    }

    .footer .footer-content .footer-top .links-col .footer-nav {
        
        gap: 2rem;
    }

    .footer .footer-content .footer-top .links-col .footer-nav .nav-group ul li a {
        justify-content: center;
    }

    .footer .footer-content .footer-top .contact-col {
        grid-column: span 1;
    }

    .footer .footer-content .footer-top .contact-col .contact-info {
        align-items: center;
    }

    .footer .footer-content .footer-top .contact-col .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 50%;
    }

    .footer .footer-content .footer-top .contact-col .social-links {
        justify-content: center;
    }

    .footer .footer-content .footer-top .links-col .footer-nav .nav-group {
        margin-left: 100px;
    }

    .footer-nav ul {
        align-items: start;
        justify-content: start;
        width: 50%;
    }

    .footer-nav ul li {
        width: max-content;
    }
}

@media (max-width: 768px) {

    .footer .footer-content .footer-top .contact-col .contact-card {
        width: 100%;
    }

    .footer .footer-content .footer-top .links-col .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer .footer-content .footer-top .links-col .footer-nav .nav-group {
        margin-left: 32%;
    }


    .footer .footer-content {
        width: 90%;
        padding: 3rem 0 2rem;
    }

    .footer .footer-content .footer-top {
        gap: 2.5rem;
    }

    .footer .footer-content .footer-bottom {
        text-align: center;
    }

    .footer .footer-content .footer-bottom .footer-meta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer .footer-content .footer-bottom .footer-meta .stats {
        justify-content: center;
    }

    .footer .footer-content .footer-bottom .footer-meta nav {
        order: 3;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .footer .footer-content .footer-top .links-col .footer-nav .nav-group {
        margin-left: 18%;
    }


    .footer .footer-content {
        width: 95%;
        padding: 2.5rem 0 1.5rem;
    }

    .footer .footer-content .footer-top {
        gap: 2rem;
    }

    .footer .footer-content .footer-top .brand-col .brand-info h3 {
        font-size: 1.4rem;
    }

    .footer .footer-content .footer-top .brand-col .brand-info p {
        font-size: 1rem;
    }

    .footer .footer-content .footer-top .brand-col .brand-info .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer .footer-content .footer-top .brand-col .brand-info .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .footer .footer-content .footer-top .links-col .footer-nav h4,
    .footer .footer-content .footer-top .contact-col h4 {
        font-size: 1.3rem;
    }

    .footer .footer-content .footer-bottom .footer-meta .stats {
        gap: 1.5rem;
    }

    .footer .footer-content .footer-bottom .footer-meta nav {
        gap: 1rem;
    }

    .footer .footer-content .footer-bottom .footer-meta nav a {
        font-size: 0.85rem;
    }
}


/* References Section */
.references-sec {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    min-height: 100vh;
}

.references-sec .container {
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.references-sec .section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.references-sec .section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-low));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.references-sec .section-header p {
    font-size: 1.2rem;
    color: var(--text-dark-low);
    max-width: 600px;
    margin: 0 auto;
}

.references-sec .references-wrapper {
    position: relative;
}

.references-sec .references-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.references-sec .reference-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    grid-column: span 3;
    aspect-ratio: 4/3;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.references-sec .reference-item.large {
    grid-column: span 6;
}

.references-sec .reference-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.references-sec .reference-item .reference-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--primary-color-rgb), 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.references-sec .reference-item .reference-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.references-sec .reference-item:hover {
    transform: translateY(-10px);
}

.references-sec .reference-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.references-sec .reference-item:hover .reference-overlay {
    opacity: 1;
    transform: translateY(0);
}

.references-sec .reference-item:hover .reference-overlay span {
    transform: translateY(0);
}

.references-sec .reference-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.references-sec .reference-waves svg {
    width: 100%;
    height: auto;
}

.references-sec .reference-waves .wave1 {
    fill: rgba(var(--primary-color-rgb), 0.05);
    animation: wave 8s linear infinite;
}

.references-sec .reference-waves .wave2 {
    fill: rgba(var(--primary-color-rgb), 0.03);
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0%);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0%);
    }
}

@media (max-width: 1400px) {
    .references-sec .reference-item {
        grid-column: span 4;
    }
    
    .references-sec .reference-item.large {
        grid-column: span 8;
    }
}

@media (max-width: 992px) {
    .references-sec .reference-item {
        grid-column: span 6;
    }
    
    .references-sec .reference-item.large {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .references-sec {
        padding: 4rem 0;
    }

    .references-sec .section-header h2 {
        font-size: 2.5rem;
    }

    .references-sec .reference-item {
        grid-column: span 12;
    }
}

/* References Section */
.references-sec {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: auto;
}

.references-sec .container {
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
}

.references-sec .section-title {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.references-sec .section-title span {
    font-size: 1.2rem;
    color: var(--text-dark-low);
    font-weight: 500;
}

.references-sec .section-title {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-low));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.references-sec .references-inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.references-sec .references-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.references-sec .references-marquee::before,
.references-sec .references-marquee::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 100%;
    top: 0;
    background: linear-gradient(90deg, #f8f9fa 10%, rgba(248, 249, 250, 0) 80%);
    z-index: 1;
}

.references-sec .references-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #f8f9fa 10%, rgba(248, 249, 250, 0) 80%);
}

.references-sec .marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
}


.references-sec .marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.references-sec .reference-logo {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.references-sec .reference-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.references-sec .reference-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.references-sec .references-quote {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.references-sec .references-quote p {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.references-sec  .references-quote p::before,
.references-sec  .references-quote p::after {
    content: "";
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.2;
}

.references-sec  .references-quote p::before {
    left: -2rem;
    top: -1rem;
}

.references-sec  .references-quote p::after {
    right: -2rem;
    bottom: -2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .references-sec {
        padding: 4rem 0;
    }

    .references-sec .section-title {
        font-size: 2rem;
    }

    .references-sec .reference-logo {
        width: 140px;
        height: 80px;
    }

    .references-sec .references-quote p {
        font-size: 1.2rem;
    }

    .references-sec .marquee-content {
        gap: 2rem;
    }
}

.blog-sec {
    padding: 8rem 0;
    background: var(--bg-color);
    min-height: auto;
    height: auto;
}

.blog-sec .container {
    width: 85%;
    max-width: 1600px;
    margin: 0 auto;
}

.blog-sec .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.blog-sec .section-header span {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-sec .section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-low));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-sec .section-header p {
    font-size: 1.2rem;
    color: var(--text-dark-low);
    max-width: 600px;
    margin: 0 auto;
}

.blog-sec .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-sec .blog-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    display: flex;  /* Yeni */
    flex-direction: column;  /* Yeni */
}

.blog-sec .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-sec .blog-card .blog-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-sec .blog-card.featured .blog-image {
    height: 400px;
}

.blog-sec .blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-sec .blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-sec .blog-card .blog-image .category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.blog-sec .blog-card .blog-content {
    padding: 2rem;
    display: flex;  
    flex-direction: column; 
    flex-grow: 1; 
}

.blog-sec .blog-card .blog-meta {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.blog-sec .blog-card .blog-meta .category {
    background: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(7, 37, 82, 0.15);
}

.blog-sec .blog-card .blog-meta .category i {
    color: #fff;
    font-size: 0.8rem;
}

.blog-sec .blog-card .content-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-sec .blog-card .content-meta span {
    color: var(--text-dark-low);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-sec .blog-card .content-meta span i {
    font-size: 0.9rem;
}

.blog-sec .blog-card .blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;  /* Yeni - footer'ı alta sabitler */
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.blog-sec .blog-card .blog-footer .author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.blog-sec .blog-card .blog-footer .author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-sec .blog-card .blog-footer .author span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-sec .blog-card .blog-footer .read-more {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-sec .blog-card .blog-footer .read-more i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.blog-sec .blog-card .blog-footer .read-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px) scale(1.05);
}

.blog-sec .blog-card .blog-footer .read-more:hover i {
    transform: translateX(2px);
}

.blog-sec .blog-card .blog-meta span,
.blog-sec .blog-card .blog-meta .date {
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.blog-sec .blog-card .blog-footer .read-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.blog-sec .blog-card .blog-footer .read-more:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

.blog-sec .blog-card .blog-footer .read-more:hover i {
    transform: translateX(2px);
}

.blog-sec .blog-card .blog-meta span {
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.blog-sec .blog-card .blog-meta .category {
    color: var(--text-light);
    font-weight: 600;
}

.blog-sec .blog-card .blog-meta .date {
    color: var(--text-dark-low);
}

.blog-sec .blog-card .blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.blog-sec .blog-card.featured h3 {
    font-size: 2rem;
}

.blog-sec .blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-sec .blog-card p {
    color: var(--text-dark-low);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-sec .blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.blog-sec .blog-card .read-more:hover {
    gap: 1rem;
}

.blog-sec .blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-sec .blog-footer {
    text-align: center;
}

.blog-sec .blog-footer .all-posts-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-sec .blog-footer .all-posts-btn:hover {
    background: var(--primary-color-dark);
    gap: 1.5rem;
    transform: translateY(-2px);
}

.blog-sec .blog-card .blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1.5rem;
}

.blog-sec .blog-card .blog-footer .author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.blog-sec .blog-card .blog-footer .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-sec .blog-card .blog-footer .author span {
    color: var(--text-dark);
    font-weight: 500;
}

.blog-sec .blog-card .blog-footer .read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-sec .blog-card .blog-footer .read-more:hover {
    gap: 1rem;
}

.blog-sec .blog-action {
    text-align: center;
}

.blog-sec .btn-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-sec .btn-blog-all:hover {
    background: var(--primary-color-dark);
    gap: 1.5rem;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .blog-sec .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-sec .blog-card.featured .blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-sec {
        padding: 4rem 0;
    }
    
    .blog-sec .section-header h2 {
        font-size: 2.5rem;
    }
    
    .blog-sec .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sec .blog-card .blog-image {
        height: 220px;
    }
    
    .blog-sec .blog-card.featured .blog-image {
        height: 250px;
    }
    
    .blog-sec .blog-card.featured h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1400px) {
    .blog-sec .container {
        width: 90%;
    }

    .blog-sec .blog-grid {
        gap: 2.5rem;
    }

    .blog-sec .section-header h2 {
        font-size: 2.8rem;
    }

    .blog-sec .blog-card .blog-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 1200px) {
    .blog-sec {
        padding: 6rem 0;
    }

    .blog-sec .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .blog-sec .blog-card .blog-image {
        height: 240px;
    }

    .blog-sec .blog-card .blog-content {
        padding: 1.8rem;
    }

    .blog-sec .blog-card p {
        font-size: 0.95rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media (max-width: 992px) {
    .blog-sec {
        padding: 5rem 0;
    }

    .blog-sec .section-header {
        margin-bottom: 3rem;
    }

    .blog-sec .section-header h2 {
        font-size: 2.5rem;
    }

    .blog-sec .section-header p {
        font-size: 1.1rem;
        width: 80%;
    }

    .blog-sec .blog-card .blog-image {
        height: 220px;
    }

    .blog-sec .blog-card .content-meta {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .blog-sec {
        padding: 4rem 0;
    }

    .blog-sec .container {
        width: 95%;
    }

    .blog-sec .section-header {
        margin-bottom: 2.5rem;
    }

    .blog-sec .section-header h2 {
        font-size: 2.2rem;
    }

    .blog-sec .section-header p {
        font-size: 1rem;
        width: 90%;
    }

    .blog-sec .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-sec .blog-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-sec .blog-card .blog-image {
        height: 200px;
    }

    .blog-sec .blog-card .blog-content {
        padding: 1.5rem;
    }

    .blog-sec .blog-card .blog-content h3 {
        font-size: 1.3rem;
    }

    .blog-sec .btn-blog-all {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .blog-sec {
        padding: 3rem 0;
    }

    .blog-sec .section-header h2 {
        font-size: 1.8rem;
    }

    .blog-sec .section-header p {
        font-size: 0.9rem;
        width: 100%;
    }

    .blog-sec .blog-card .blog-image {
        height: 180px;
    }

    .blog-sec .blog-card .blog-content {
        padding: 1.2rem;
    }

    .blog-sec .blog-card .blog-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .blog-sec .blog-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .blog-sec .blog-card .blog-footer {
        padding-top: 1.2rem;
    }

    .blog-sec .blog-card .blog-footer .author img {
        width: 32px;
        height: 32px;
    }

    .blog-sec .blog-card .blog-footer .author span {
        font-size: 0.85rem;
    }

    .blog-sec .blog-card .blog-footer .read-more {
        width: 36px;
        height: 36px;
    }

    .blog-sec .btn-blog-all {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}



