/* Montserrat fontunu ekleme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}


/*==================================================
          Header Area CSS
        ===================================================*/
.pagerm-header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 24px 80px;
    width: 100%;
    transition: all 0.3s ease;
    background: transparent;

}

.pagerm-header-area.scrolled {
    background: white;
    z-index: 9999;
}

.pagerm-container {
    width: 100%;
    max-width: 1300px;
    margin: 0px auto;
    padding: 0 15px;
}

.pagerm-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pagerm-logo-col {
    flex: 0 0 119px;
}

.pagerm-menu-col {
    flex: 1;
    min-width: 0;
    padding: 0 15px;
}

.pagerm-contact-col {
    flex: 0 0 250px;
}

.pagerm-header-logo img {
    max-height: 35px;
    width: auto;
}

.pagerm-header-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.pagerm-header-menu ul li {
    margin: 0px 5px;
}

.pagerm-header-menu ul li a {
    text-decoration: none;
    font-size: 11px;
    color: #2b2150;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0px;
    white-space: nowrap;
}

.pagerm-header-menu ul li a:hover {
    color: #2b2150;
    font-weight: bolder;
}

.pagerm-header-menu ul li a:hover::after {
    width: 100%;
}

.pagerm-header-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pagerm-header-phone {
    display: flex;
    align-items: center;
}

.pagerm-phone-icon {
    color: #2b2150;
    font-size: 20px;
    margin-right: 10px;
}

.pagerm-phone-info {
    display: flex;
    flex-direction: column;
}

.pagerm-phone-label {
    font-size: 12px;
    color: #2b2150;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.pagerm-phone-number {
    font-size: 14px;
    color: #2b2150;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.pagerm-phone-number:hover {
    color: #b6b5bb;
}

/* Mobile Hamburger Menu Styles */
.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-icon {
    width: 27px;
    height: 21px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #2b2150;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2),
.hamburger-icon span:nth-child(3) {
    top: 8px;
}

.hamburger-icon span:nth-child(4) {
    top: 16px;
}

.hamburger-icon.open span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

.hamburger-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger-icon.open span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    /* Beyaz arkaplan */
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.mobile-logo img {
    max-height: 30px;
    width: auto;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: #2b2150;
    /* Koyu mor renk */
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav ul li {
    margin: 15px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-nav ul li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-nav ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-nav ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-nav ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-nav ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu-nav ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu-nav ul li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-menu-nav ul li a {
    color: #2b2150;
    /* Koyu mor renk */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 15px;
    display: block;
    transition: all 0.3s ease;
    background: rgba(43, 33, 80, 0.05);
    /* AÃ§Ä±k mor arkaplan */
    border: 1px solid rgba(43, 33, 80, 0.1);
    /* AÃ§Ä±k mor border */
}

.mobile-menu-nav ul li a:hover {
    background: rgba(43, 33, 80, 0.1);
    /* Daha koyu mor hover */
}

.mobile-contact-info {
    margin-top: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease 0.7s;
}

.mobile-menu-overlay.active .mobile-contact-info {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact-info .pagerm-phone-number {
    color: #2b2150;
    /* Koyu mor renk */
    font-size: 16px;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(43, 33, 80, 0.05);
    /* AÃ§Ä±k mor arkaplan */
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 33, 80, 0.1);
    /* AÃ§Ä±k mor border */
}

.mobile-contact-info .pagerm-phone-number:hover {
    background: rgba(43, 33, 80, 0.1);
    /* Daha koyu mor hover */
}

/* Content for demo */
.demo-content {
    margin-top: 100px;
    padding: 40px;
    text-align: center;
    color: white;
}

.demo-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/*==================================================
         Responsive Design
        ===================================================*/
@media (max-width: 1160px) and (min-width: 961px) {
    .pagerm-header-area {
        padding: 30px 43px;
    }

    .pagerm-header-logo img {
        max-height: 25px;
    }

    .pagerm-header-menu ul li {
        margin: 0px 4px;
    }

    .pagerm-header-menu ul li a {
        font-size: 10px;
        letter-spacing: 0.6px;
    }

    .pagerm-phone-icon {
        font-size: 15px;
        margin-right: 8px;
    }

    .pagerm-phone-label {
        font-size: 9px;
    }

    .pagerm-phone-number {
        font-size: 11px;
    }

    .pagerm-contact-col {
        flex: 0 0 190px;
    }
}

@media (max-width: 960px) and (min-width: 769px) {
    .pagerm-header-area {
        padding: 30px 39px;
    }

    .pagerm-header-logo img {
        max-height: 20px;
    }

    .pagerm-header-menu ul li {
        margin: 0px 5px !important;
    }

    .pagerm-header-menu ul li a {
        font-size: 9px !important;
        letter-spacing: 0.3px !important;
    }

    .pagerm-phone-icon {
        font-size: 14px !important;
        margin-right: 2px !important;
    }

    .pagerm-phone-label {
        font-size: 8px !important;
    }

    .pagerm-phone-number {
        font-size: 9px !important;
    }

    .pagerm-contact-col {
        flex: 0 0 120px !important;
    }
}

/* Mobile Header Styles for 768px and below */
@media (max-width: 768px) {
    .pagerm-header-area {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 65px;
        /* Minimum yÃ¼kseklik belirle */
        background: rgb(255, 255, 255);
    }

    .pagerm-header-row {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        /* SarmalamayÄ± engelle */
    }

    .pagerm-menu-col,
    .pagerm-contact-col {
        display: none;
    }

    .pagerm-logo-col {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .mobile-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .pagerm-header-logo img {
        max-height: 25px;
        width: auto;
        vertical-align: middle;
    }
}

/* 300px - 768px ArasÄ± Ã–zel Header Stili */
@media (max-width: 768px) and (min-width: 300px) {
    .pagerm-header-area {
        padding: 15px 20px !important;
        display: flex;
        align-items: center;
        min-height: 65px !important;
    }

    .pagerm-header-row {
        width: 100%;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        height: 100%;
    }

    .pagerm-logo-col {
        flex: 0 0 auto !important;
        display: flex;
        align-items: center;
    }

    .mobile-hamburger {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        margin-left: auto !important;
        position: relative;
        z-index: 1001;
        height: 35px;
        /* Hamburger yÃ¼ksekliÄŸini logo ile aynÄ± yap */
        width: auto;
    }

    .pagerm-header-logo img {
        max-height: 21px;
        width: auto;
        display: block;
    }

    .pagerm-menu-col,
    .pagerm-contact-col {
        display: none !important;
    }
}

/* Hamburger Butonu Pozisyon Sabitleme */
.mobile-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: none;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .mobile-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}




/*==================================================
 <-- PAGERM Hero Area CSS -->
===================================================*/
.pagerm-hero-area {
    padding: 103px 0 115px;
    position: relative;
    overflow: hidden;
    background-image: url('../images/gogle2.png');
    background-repeat: repeat;
    background-position: unset;
    background-size: contain;
    /* position: relative; */
}


.pagerm-hero-content {
    position: relative;
    z-index: 5;
}

.pagerm-hero-title {
    display: inline-block;
    font-size: 37px;
    color: #2b2150;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.2;
}

.pagerm-hero-content span {
    font-size: 34px;
    color: #2b2150;
    display: inline-block;
    margin-bottom: 20px;
    /* font-weight: bold; */
}

.pagerm-hero-description {
    display: inline-block;
    font-size: 22px;
    color: #2b2150;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: end;
}

.pagerm-hero-image-wrapper {
    position: relative;
    height: 440px;

}

.pagerm-hero-image {
    max-width: 218%;
    height: auto;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    max-height: 749px;
}

.beyaz-cerceve {
    position: absolute;
    width: 202px;
    height: 202px;
    border: 12px solid #ffffff;
    top: 79%;
    left: -16%;
    transform: translateY(-50%);
    z-index: 4;
}

.sari-cerceve {
    position: absolute;
    width: 164px;
    height: 178px;
    top: 6%;
    right: 3%;
    border-left: 50px solid #ffc107;
    border-bottom: 50px solid #ffc107;
    z-index: 2;
}

.golge {
    position: absolute;
    width: 212%;
    max-width: 1125px;
    height: auto;
    z-index: 3;
    top: 7%;
    left: 87%;
    transform: translateX(-94%);
    opacity: 1.5;
}

.years-badge {
    position: absolute;
    bottom: 39px;
    left: -50px;
    background-color: #2b2150;
    color: white;
    padding: 26px 39px;
    z-index: 7;
    text-align: center;
}

.years-badge .number {
    font-size: 41px;
    font-weight: bold;
    line-height: 1;
    display: block;
}

.years-badge .text {
    font-size: 19px;
    font-weight: normal;
    opacity: 0.9;
}


/* ====== RESPONSIVE MEDIA QUERIES ====== */

/* 1200px ve altÄ± iÃ§in */
@media (max-width: 1200px) {
    .pagerm-hero-area {
        padding: 84px 0 7px;
        position: relative;
        overflow: hidden;
        background-image: url('../images/gogle2.png');
        background-repeat: repeat;
        background-position: unset;
        background-size: contain;
    }


    .pagerm-hero-title {
        font-size: 32px;
    }

    .pagerm-hero-content span {
        font-size: 28px;
    }

    .pagerm-hero-description {
        font-size: 18px;
        text-align: right;
    }

    .pagerm-hero-image-wrapper {
        height: 350px;
    }

    .pagerm-hero-image {
        max-width: 180%;
        max-height: 600px;
    }

    .beyaz-cerceve {
        width: 150px;
        height: 150px;
        border: 8px solid #ffffff;
        top: 75%;
        left: -10%;
    }

    .sari-cerceve {
        width: 120px;
        height: 130px;
        border-left: 35px solid #ffc107;
        border-bottom: 35px solid #ffc107;
        top: 8%;
        right: 5%;
    }

    .golge {
        width: 155%;
        max-width: 1014px;
        left: 75%;
        transform: translateX(-89%);
    }

    .years-badge {
        bottom: 30px;
        left: -40px;
        padding: 20px 30px;
    }

    .years-badge .number {
        font-size: 35px;
    }

    .years-badge .text {
        font-size: 16px;
    }
}

/* 992px ve altÄ± iÃ§in (Tablet) */
@media (max-width: 992px) {
    .pagerm-hero-area {
        padding: 0px 0 0px !important;
        overflow: hidden;
        background-image: url('../images/gogle2.png');
        background-repeat: repeat;
        background-position: unset;
        background-size: contain;
        position: relative;
    }

    .pagerm-hero-content {
        top: 132px;
    }

    .pagerm-hero-title {
        font-size: 28px;
    }

    .pagerm-hero-content span {
        font-size: 24px;
    }

    .pagerm-hero-description {
        display: flex;
        font-size: 15px !important;
        margin-bottom: 86px !important;
        line-height: 1.6;
        text-align: end;
    }

    .pagerm-hero-image-wrapper {
        height: 300px;
        margin-top: 30px;
    }

    .pagerm-hero-image {
        max-width: 158%;
        max-height: 408px !important;
        top: -12% !important;
        left: 60% !important;
        transform: translate(-51%, -52%) !important;
    }

    .beyaz-cerceve {
        width: 120px;
        height: 120px;
        border: 6px solid #ffffff;
        top: 70%;
        left: -8%;
    }

    .sari-cerceve {
        width: 100px;
        height: 110px;
        border-left: 25px solid #ffc107;
        border-bottom: 25px solid #ffc107;
        top: 10%;
        right: 8%;
    }

    .golge {
        top: -48%;
        width: 151%;
        max-width: 625px;
        left: 98%;
        transform: translateX(-88%);
    }

    .years-badge {
        bottom: 241px !important;
        left: 388px !important;
        padding: 7px 19px !important;
    }

    .years-badge .number {
        font-size: 30px;
    }

    .years-badge .text {
        font-size: 14px;
    }
}

/* 768px ve altÄ± iÃ§in (Mobile) */
@media (max-width: 767px) {
    .pagerm-hero-area {
        padding: 78px 0 135px !important;
        position: relative !important;
        overflow: hidden !important;
        background-image: none;
    }

    .pagerm-hero-content {
        left: 116px;
        top: 94px !important;
    }

    .pagerm-hero-title {
        position: relative;
        left: -20%;
        font-size: 29px !important;
        margin-bottom: 12px !important;
    }

    .pagerm-hero-content span {
        font-size: 26px !important;
        margin-bottom: 15px !important;
        position: relative;
        left: -20%;
    }

    .pagerm-hero-description {
        font-size: 17px !important;
        margin-bottom: 86px !important;
        line-height: 1.6 !important;
        text-align: end !important;
        position: relative;
        left: -4%;
    }

    .pagerm-hero-image-wrapper {
        height: 261px !important;
        margin-top: 25px !important;
    }

    .pagerm-hero-image {
        max-width: 184% !important;
        max-height: 370px !important;
        top: 90% !important;
        left: 27% !important;
        transform: translate(-51%, -52%) !important;
    }

    .beyaz-cerceve {
        width: 90px !important;
        height: 86px !important;
        border: 7px solid #ffc107 !important;
        top: 113% !important;
        left: 19% !important;
    }

    .sari-cerceve {
        width: 74px !important;
        height: 74px !important;
        border-left: 20px solid #8d0000 !important;
        border-bottom: 20px solid #8d0000 !important;
        top: 51% !important;
        right: 17% !important;
    }

    .golge {
        width: 273% !important;
        max-width: 606px !important;
        left: 66% !important;
        top: 43% !important;
        transform: translateX(-80%) !important;
    }

    .years-badge {
        bottom: -244px !important;
        left: -114px !important;
        padding: 1px 13px !important;
    }

    .years-badge .number {
        font-size: 24px !important;
    }

    .years-badge .text {
        font-size: 12px !important;
    }
}

/* 576px ve altÄ± iÃ§in (Small Mobile) */
@media (max-width: 576px) {
    .pagerm-hero-area {
        padding: 68px 0px !important;
    }

    /* SÃ¼tunlarÄ± blok yapÄ±p sÄ±ralamasÄ±nÄ± deÄŸiÅŸtir */
    .pagerm-text-column,
    .pagerm-image-column {
        width: 100% !important;
        float: none !important;
        display: block !important;
        position: relative;
        top: -20px;
        left: 1%;
    }

    .pagerm-image-column {
        margin-bottom: 244px !important;
        /* Resim ile metin arasÄ± boÅŸluk */
        position: relative;
        top: 43px;
        left: -141px;
    }

    .pagerm-hero-content {
        text-align: center !important;
        margin-top: 10px !important;
    }

    .pagerm-hero-title {
        font-size: 31px !important;
        margin-bottom: 19px !important;
    }

    .pagerm-hero-content span {
        font-size: 26px !important;
        display: inline-block !important;
        margin-bottom: 4px !important;
    }

    .pagerm-hero-description {
        font-size: 18px !important;
        margin-bottom: 0px !important;
        line-height: 1.4 !important;
        text-align: end !important;
        left: -5%;
    }

    .pagerm-hero-image-wrapper {
        height: 187px !important;
        margin-top: 0 !important;
    }

    /* DiÄŸer stiller aynÄ± kalabilir */
    .pagerm-hero-image {
        max-width: 210% !important;
        top: 169% !important;
        left: 54% !important;
    }

    .beyaz-cerceve {
        width: 107px !important;
        height: 103px !important;
        border: 8px solid #ffc107 !important;
        top: 206% !important;
        left: 43% !important;
    }

    .sari-cerceve {
        width: 89px !important;
        height: 89px !important;
        border-left: 25px solid #8d0000 !important;
        border-bottom: 27px solid #8d0000 !important;
        top: 111% !important;
        left: 92% !important;
    }

    .golge {
        width: 50% !important;
        left: 49% !important;
        top: 4% !important;
        display: none;
    }

    .years-badge {
        bottom: -330px !important;
        left: 17px !important;
        padding: 10px 25px !important;
    }

    .years-badge .number {
        font-size: 18px !important;
    }

    .years-badge .text {
        font-size: 10px !important;
    }
}

@media (max-width: 520px) {
    .pagerm-hero-area {
        padding: 68px 0px !important;
    }

    /* SÃ¼tunlarÄ± blok yapÄ±p sÄ±ralamasÄ±nÄ± deÄŸiÅŸtir */
    .pagerm-text-column,
    .pagerm-image-column {
        width: 100% !important;
        float: none !important;
        display: block !important;
        position: relative;
        top: -21px;
        left: -3%;
    }

    .pagerm-image-column {
        margin-bottom: 244px !important;
        /* Resim ile metin arasÄ± boÅŸluk */
        position: relative;
        top: 34px;
        left: -138px;
    }

    .pagerm-hero-content {
        text-align: center !important;
        margin-top: 10px !important;
    }

    .pagerm-hero-title {
        font-size: 27px !important;
        margin-bottom: 19px !important;
    }

    .pagerm-hero-content span {
        font-size: 24px !important;
        display: inline-block !important;
        margin-bottom: 4px !important;
    }

    .pagerm-hero-description {
        font-size: 16px !important;
        margin-bottom: 0px !important;
        line-height: 1.4 !important;
        text-align: end !important;
        left: -7%;
    }

    .pagerm-hero-image-wrapper {
        height: 187px !important;
        margin-top: 0 !important;
    }

    /* DiÄŸer stiller aynÄ± kalabilir */
    .pagerm-hero-image {
        max-width: 210% !important;
        top: 169% !important;
        left: 54% !important;
    }

    .beyaz-cerceve {
        width: 105px !important;
        height: 99px !important;
        top: 206% !important;
        left: 42% !important;
    }

    .sari-cerceve {
        width: 93px !important;
        height: 93px !important;
        border-left: 27px solid #8d0000 !important;
        border-bottom: 27px solid #8d0000 !important;
        top: 112% !important;
        left: 101% !important;
    }

    .golge {
        width: 50% !important;
        left: 49% !important;
        top: 4% !important;
        display: none;
    }

    .years-badge {
        bottom: -330px !important;
        left: 17px !important;
        padding: 10px 25px !important;
    }

    .years-badge .number {
        font-size: 18px !important;
    }

    .years-badge .text {
        font-size: 10px !important;
    }

}

@media (max-width: 450px) {
    .pagerm-hero-area {
        padding: 68px 0px !important;
    }

    /* SÃ¼tunlarÄ± blok yapÄ±p sÄ±ralamasÄ±nÄ± deÄŸiÅŸtir */
    .pagerm-text-column,
    .pagerm-image-column {
        width: 100% !important;
        float: none !important;
        display: block !important;
        position: relative;
        top: -21px;
        left: -7%;
    }

    .pagerm-image-column {
        margin-bottom: 244px !important;
        /* Resim ile metin arasÄ± boÅŸluk */
        position: relative;
        top: 43px;
        left: -141px;
    }

    .pagerm-hero-content {
        text-align: center !important;
        margin-top: 10px !important;
    }

    .pagerm-hero-title {
        font-size: 23px !important;
        margin-bottom: 19px !important;
    }

    .pagerm-hero-content span {
        font-size: 20px !important;
        display: inline-block !important;
        margin-bottom: 4px !important;
    }

    .pagerm-hero-description {
        font-size: 13px !important;
        margin-bottom: 0px !important;
        line-height: 1.4 !important;
        text-align: end !important;
        left: -1%;
    }

    .pagerm-hero-image-wrapper {
        height: 187px !important;
        margin-top: 0 !important;
    }

    .pagerm-hero-image {
        max-width: 210% !important;
        top: 169% !important;
        left: 54% !important;
    }

    .beyaz-cerceve {
        width: 107px !important;
        height: 103px !important;
        border: 8px solid #ffc107 !important;
        top: 205% !important;
        left: 41% !important;
    }

    .sari-cerceve {
        width: 89px !important;
        height: 89px !important;
        border-left: 25px solid #8d0000 !important;
        border-bottom: 27px solid #8d0000 !important;
        top: 114% !important;
        left: 102% !important;
    }


    .years-badge {
        bottom: -330px !important;
        left: 17px !important;
        padding: 10px 25px !important;
    }

    .years-badge .number {
        font-size: 18px !important;
    }

    .years-badge .text {
        font-size: 10px !important;
    }

}

@media (max-width: 387px) {
    .pagerm-hero-area {
        padding: 68px 0px !important;
    }

    /* SÃ¼tunlarÄ± blok yapÄ±p sÄ±ralamasÄ±nÄ± deÄŸiÅŸtir */
    .pagerm-text-column,
    .pagerm-image-column {
        width: 100% !important;
        float: none !important;
        display: block !important;
        position: relative;
        top: -21px;
        left: -12%;
    }

    .pagerm-image-column {
        margin-bottom: 244px !important;
        /* Resim ile metin arasÄ± boÅŸluk */
        position: relative;
        top: 43px;
        left: -141px;
    }

    .pagerm-hero-content {
        text-align: center !important;
        margin-top: 10px !important;
    }

    .pagerm-hero-title {
        font-size: 17px !important;
        margin-bottom: 17px !important;
    }

    .pagerm-hero-content span {
        font-size: 16px !important;
        display: inline-block !important;
        margin-bottom: 4px !important;
    }

    .pagerm-hero-description {
        font-size: 10px !important;
        margin-bottom: 0px !important;
        line-height: 1.4 !important;
        text-align: end !important;
        left: 2%;
    }

    .pagerm-hero-image-wrapper {
        height: 187px !important;
        margin-top: 0 !important;
    }

    .pagerm-hero-image {
        max-width: 210% !important;
        top: 169% !important;
        left: 54% !important;
    }

    .beyaz-cerceve {
        width: 77px !important;
        height: 77px !important;
        border: 6px solid #ffc107 !important;
        top: 198% !important;
        left: 45% !important;
    }

    .sari-cerceve {
        width: 72px !important;
        height: 73px !important;
        border-left: 21px solid #8d0000 !important;
        border-bottom: 21px solid #8d0000 !important;
        top: 118% !important;
        left: 120% !important;
    }


    .years-badge {
        bottom: -324px !important;
        left: 23px !important;
        padding: 2px 17px !important;
    }

    .years-badge .number {
        font-size: 18px !important;
    }

    .years-badge .text {
        font-size: 10px !important;
    }

}

/*==================================================
 <-- Responsive DÃ¼zenlemeler -->
===================================================*/
@media (max-width: 1199px) {
    .pagerm-hero-title {
        font-size: 25px;
    }

    .pagerm-hero-content span {
        font-size: 24px;
    }

    .pagerm-hero-description {
        font-size: 15px;
        margin-bottom: 117px;
    }

    .pagerm-hero-image {
        max-height: 474px;
        height: auto;
        top: 43%;
        left: 8%;
        transform: translate(-50%, -52%);
    }

    .beyaz-cerceve {
        width: 144px;
        height: 146px;
        left: -6%;
        top: 64%;
    }

    .sari-cerceve {
        width: 125px;
        height: 122px;
        right: 10%;
        top: 5%;
        border-left: 38px solid #ffc107;
        border-bottom: 37px solid #ffc107;
    }

    .years-badge {
        padding: 15px 28px;
        bottom: 87px;
        left: 0px;
    }

    .years-badge .number {
        font-size: 32px;
    }

    .years-badge .text {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .pagerm-header-menu ul li {
        margin: 0 5px;
    }

    .pagerm-header-menu ul li a {
        font-size: 10px;
    }

    .pagerm-phone-number {
        font-size: 13px;
    }

    .pagerm-phone-label {
        font-size: 10px;
    }

    .pagerm-hero-area {
        padding: 150px 0 80px;
    }

    .pagerm-hero-title {
        font-size: 27px;
    }

    .pagerm-hero-content span {
        font-size: 26px;
    }

    .pagerm-hero-image-wrapper {
        height: 300px;
    }

    .beyaz-cerceve {
        width: 113px;
        height: 109px;
        border-width: 8px;
        left: 53%;
        top: 9%;
    }

    .sari-cerceve {
        width: 101px;
        height: 107px;
        border-left-width: 30px;
        border-bottom-width: 30px;
        right: -7%;
        top: -52%;
    }

    .custom-about-description,
    .custom-stat-item {
        padding: 20px !important;
    }
}

@media (max-width: 767px) {
    .pagerm-header-area {
        padding: 15px 0;
    }

    .pagerm-logo-col {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .pagerm-menu-col {
        flex: 0 0 100%;
        order: 3;
        margin-top: 15px;
    }

    .pagerm-contact-col {
        flex: 0 0 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .pagerm-header-menu ul {
        justify-content: center;
    }

    .pagerm-hero-area {
        padding: 120px 0 56px;
        text-align: center;
    }

    .pagerm-hero-image-wrapper {
        margin-top: 30px;
        height: 250px;
    }


    .years-badge {
        position: relative;
        bottom: auto;
        left: auto;
        display: inline-block;
        margin-top: 20px;
    }

    .custom-about-area {
        padding: 40px 0;
    }

    .search-wrapper input {
        text-align: center;
    }

    .search-header h4 {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .pagerm-hero-title {
        font-size: 24px;
    }

    .pagerm-hero-content span {
        font-size: 28px;
    }

    .pagerm-hero-description {
        font-size: 14px;
    }

    .pagerm-hero-image {
        max-height: 376px !important;
    }

    .years-badge {
        padding: 8px 15px;
    }

    .years-badge .number {
        font-size: 17px !important;
    }

    .years-badge .text {
        font-size: 14px;
    }

    .custom-about-description p,
    .custom-stat-item p {
        font-size: 14px;
    }
}


/*==================================================
 <-- Euildint Button Css-->
===================================================*/

.eulding-btn a {
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    background: #F60;
    padding: 14px 28px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.eulding-btn a:hover {
    color: #F60;
}

.eulding-btn a::before {
    position: absolute;
    content: "";
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    background: #fff;
    content: "";
    top: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.eulding-btn a:hover::before {
    top: -40%;
}

.eulding-btn a i {
    margin-left: 4px;
    font-size: 17px;
}

/* about btn */

.eulding-btn.about {
    display: inline-block;
}

.eulding-btn.about a::before {
    background: #18191D;
}

/* service btn */

.eulding-btn.service {
    text-align: center;
}

.eulding-btn.service a {
    font-size: 16px;
    border-radius: 30px;
}

.eulding-btn.service a::before {
    background: #18191D;
}

/* blog standard btn */

.eulding-btn.standard a::before {
    background: #18191D;
}



/*==================================================
 <-- Euildint Section Title Css-->
===================================================*/

.section-shape {
    margin-right: 15px;
    display: inline-block;
}

.section-sub-title {
    display: inline-block;
}

.section-sub-title h4 {
    font-size: 22px;
    color: #F60;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 26px;
    margin-bottom: 16px;
}

.section-main-title {
    margin-bottom: 62px;
}

.section-main-title h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 44px;
}

/* about section title */

.section-main-title.about {
    margin: 0;
}

/* contact section title */

.section-main-title.contact {
    margin: 0;
}

.section-main-title.contact h2 {
    color: #ffff;
}

/* pricing section title */

.section-main-title.pricing {
    margin: 31px 0 77px;
}

.section-main-title.pricing h2 {
    line-height: 0;
}

/* blog section title */

.section-main-title.blog {
    margin-bottom: 53px;
}

/* faq section title */

.section-sub-title.faq h4 {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
}

.section-main-title.faq {
    margin-bottom: 33px;
}

/* work process section title */

.section-main-title.work {
    margin-bottom: 96px;
}

/*==================================================
 <-- Pagerm Anasayfa HakkÄ±nda 1 -->
===================================================*/
.pagerm-about-section {
    background-size: cover;
    color: #333;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    top: -221px;
}

.pagerm-about-box {
    /* height: 100%; */
    width: 100%;
    padding: 30px;
    /* margin-bottom: 30px; */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pagerm-about-box-1 {
    background-color: #51626b;
    color: #ccd0d2;
    position: relative;
    /* top: -51%; */
    height: 400px;
}

.pagerm-about-box-2 {
    background-color: #dbdfe2;
    color: #666;
    /* position: relative; */
    height: 279px;
    width: 370px;
    /* top: -23%; */
}


.pagerm-about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pagerm-about-content p {
    font-size: 18px;
    padding: 0px 24px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.pagerm-about-content span {
    font-weight: bold;
    color: #2b2150;
}

.pagerm-search-box {
    width: 100%;
}

.pagerm-search-box h4 {
    font-size: 14px;
    color: #333;
    font-weight: 100;
    margin-bottom: 15px;
    text-align: right;
}

.pagerm-search-wrapper {
    display: flex;
    align-items: center;
    background: #51626b;
    height: 51px;
    font-size: 16px;
    padding: 0 15px;
}

.pagerm-search-wrapper input {
    flex: 1;
    padding: 10px 0;
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    color: white;
    text-align: right;
}

.pagerm-search-wrapper input::placeholder {
    color: #ddd;
    font-size: 12px;
}

.pagerm-search-btn {
    background: transparent;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    color: #ddd;
    font-size: 16px;
}

/* 1201px ve Ã¼zeri iÃ§in ayarlamalar */
@media (min-width: 1201px) {
    .pagerm-about-section {
        top: -160px;
        /* 1. madde */
        z-index: 99;
    }

    .pagerm-about-content p {
        font-size: 18px;
        /* 2. madde */
    }
}

/* 768px - 1200px arasÄ± iÃ§in ayarlamalar */
@media (min-width: 768px) and (max-width: 1200px) {
    .pagerm-about-section {
        top: -147px;
        /* 1. madde */
        z-index: 99;
    }

    .pagerm-about-box-1 {
        height: 395px;
        /* Kutu boyutunu kÃ¼Ã§Ã¼lt */
    }

    .pagerm-about-box-2 {
        height: 250px;
        /* Kutu boyutunu kÃ¼Ã§Ã¼lt */
        width: 320px;
    }

    .pagerm-about-content p {
        font-size: 16px;
        line-height: 1.8;
        /* SatÄ±r aralÄ±ÄŸÄ±nÄ± arttÄ±r */
        padding: 0px 18px;
        /* Ä°Ã§ boÅŸluÄŸu kÃ¼Ã§Ã¼lt */
    }
}

/* 767px ve altÄ± iÃ§in mevcut ayarlar (zaten var) */
@media (max-width: 767px) {
    .pagerm-about-section {
        padding: 40px 0;
        margin-bottom: 173px;
        top: 0;
        /* Mobilde top deÄŸerini sÄ±fÄ±rla */
    }

    .pagerm-about-box {
        /* padding: 15px; */
    }

    .pagerm-about-box-1,
    .pagerm-about-box-2 {
        /* height: auto; */
        /* YÃ¼ksekliÄŸi otomatik yap */
        width: 100%;
    }

    .pagerm-about-content p {
        font-size: 17px;
        line-height: 2;
        padding: 13px 11px;
    }

    .pagerm-search-box h4,
    .pagerm-search-wrapper input {
        text-align: right;
    }
}

/* 480px ve altÄ± iÃ§in ekstra kÃ¼Ã§Ã¼k ekranlar */
@media (max-width: 480px) {
    .pagerm-about-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .pagerm-search-wrapper {
        height: 45px;
    }
}






/*==================================================
 <-- Pagerm Anasayfa HakkÄ±nda 2-->
===================================================*/



/*==================================================
 <-- Pagerm Anasayfa HakkÄ±nda 2-->
===================================================*/



.pagerm-about-section-two {
    background-image: url('../images/tir2.png');
    background-size: cover;
    color: #333;
    position: relative;
    padding: 276px 0px;
    overflow: hidden;
    top: -221px;
}

.pagerm-about-img-col img {
    position: relative;
    width: 100px;
    height: 100px;
}


/* Container ayarlarÄ± */
.pagerm-about-section-two .container {
    position: relative;
    z-index: 2;
}

/* Resim KÄ±smÄ± */
.pagerm-about-img-col {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagerm-about-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.pagerm-truck-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Ä°Ã§erik KÄ±smÄ± */
.pagerm-about-content-col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

/* Ä°statistik Grid */
.pagerm-stats-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.pagerm-stat-item {
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.pagerm-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pagerm-stat-item-1 {
    border: 3px solid #2b2150;
    background-color: white;
    color: #2b2150;
}

.pagerm-stat-item-2 {
    background-color: #2b2150;
    color: white;
}

.pagerm-stat-item-3 {
    background-color: #2b2150;
    color: white;
}

.pagerm-stat-number {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1;
    display: block;
}

.pagerm-stat-number sup {
    font-size: 0.6em;
    top: -0.5em;
}

.pagerm-stat-text {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

/* AÃ§Ä±klama Metni */
.pagerm-about-text {
    margin-top: 20px;
}

.pagerm-about-description p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    color: #555;
    text-align: justify;
}

/* YENÄ° UZUN AÃ‡IKLAMA BÃ–LÃœMÃœ */
.pagerm-long-description-section {
    /* AÃ§Ä±k gri arkaplan */
    position: relative;
    margin-top: -209px;
    /* Ã–nceki bÃ¶lÃ¼mle overlap iÃ§in */
}

.pagerm-long-description-content {
    /* background-color: white; */
    padding: 40px;
    /* border-radius: 8px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    position: relative;
    z-index: 2;
}

.pagerm-long-description-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin: 0;
}

/* 1155px and below adjustments */
@media (max-width: 1155px) {
    .pagerm-about-section-two {
        padding: 150px 0;
        /* 1. madde */
    }

    .pagerm-long-description-content p {
        font-size: 15px;
    }
}

/* 992px and below adjustments */
@media (max-width: 992px) {
    .pagerm-about-section-two {
        padding: 129px 0;
        /* 2. madde - background url padding */
    }

    .pagerm-stat-item::before {
        left: 78%;
        /* 1. madde */
        width: 200px;
        /* 1. madde */
    }

    .pagerm-about-description p {
        display: none;
        /* 2. madde */
    }

    .pagerm-long-description-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}



@media (max-width: 1330px) {
    .pagerm-about-section-two {
        padding: 129px 0;
        /* 2. madde - background url padding */
    }
}

/* Existing responsive styles below - keep all your current media queries */
@media (max-width: 1200px) {
    .pagerm-about-content-col {
        padding-left: 30px;
    }

    .pagerm-stat-number {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .pagerm-about-section-two {
        padding: 60px 0;
    }

    .pagerm-about-content-col {
        padding-left: 15px;
        margin-top: 40px;
        left: 39%;
        flex-direction: row;
    }

    .pagerm-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }

    .pagerm-stat-item {
        padding: 25px 20px;
    }

    .pagerm-stat-number {
        font-size: 36px;
    }

    .pagerm-stat-text {
        font-size: 16px;
    }

    .pagerm-about-description p {
        font-size: 15px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .pagerm-about-section-two {
        padding: 40px 0;
    }

    .pagerm-stats-grid {
        gap: 5px;
    }

    .pagerm-stat-item {
        padding: 20px 15px;
    }

    .pagerm-stat-number {
        font-size: 32px;
    }

    .pagerm-stat-text {
        font-size: 14px;
    }

    .pagerm-about-description p {
        font-size: 14px;
        line-height: 1.6;
    }

    .pagerm-long-description-content {
        padding: 30px;
    }

    .pagerm-long-description-content p {
        font-size: 13px;
        line-height: 1.6;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .pagerm-about-section-two {
        padding: 0px 91px;
    }

    .pagerm-stat-item {
        padding: 18px 1px;
    }

    .pagerm-about-content-col {
        padding-left: 11px;
        margin-top: 32px;
        left: 69%;
        flex-direction: row;
        width: 140px;
    }

    .pagerm-stat-number {
        font-size: 26px;
    }

    .pagerm-stat-text {
        font-size: 13px;
    }

    .pagerm-long-description-content {
        padding: 20px;
    }

    .pagerm-long-description-content p {
        font-size: 11px;
        line-height: 1.4;
    }
}



/*==================================================
       Modern Service Area Css
===================================================*/

.service-area {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    background-image: url(../images/mor-arkapilan.png);
    background-repeat: no-repeat;
    background-position: center 140px;
    /* Yatayda ortada, Ã¼stten 100px aÅŸaÄŸÄ±da */
    background-size: cover;
    /* veya contain, ihtiyaca gÃ¶re */
}

#main-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    gap: 0;
    /* Gap'i kaldÄ±rdÄ±k */
    position: relative;
    left: 107px;
}

#left-column {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0;
}

#right-column {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0;
}

.small-card-column {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0;
}

.left-column {
    position: relative;
}

.service-single-box {
    background: white;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;

}

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

.large-card {
    height: 400px;
    position: relative;
}

.large-card .service-thumb {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: visible;
}

.large-card .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.large-card .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
}

/* Image iÃ§indeki overlay card */
.bottom-overlay-card {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #1e40af !important;
    color: white !important;
    width: 36%;
    height: 230px;
    padding: 25px 20px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    overflow: visible;
}

.bottom-overlay-card h4 {
    color: white !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
}



.bottom-overlay-card p {
    color: white !important;
    font-size: 14px !important;
    margin-bottom: 15px !important;
    line-height: 1.5 !important;
}

.bottom-overlay-card .service-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
}

.small-card {
    height: 200px !important;
    /* Birinci kartÄ±n yÃ¼ksekliÄŸiyle aynÄ± */
    margin-bottom: 0;
    width: 100% !important;
}

.small-card .service-content {
    padding: 25px 34px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* SaÄŸdaki divlerin renk sÄ±nÄ±flarÄ± */
.first-card {
    background: #f1f5f9 !important;
    /* Gri renk */
    color: #4c1d95 !important;
    /* Koyu mor yazÄ± */
    height: 230px !important;
    /* TÃ¼m kartlar aynÄ± yÃ¼kseklikte */
    width: 100% !important;
    /* TÃ¼m kartlar aynÄ± geniÅŸlikte */
}

.first-card h4 {
    color: #4c1d95 !important;
}

.first-card p {
    color: #4c1d95 !important;
}

.first-card .service-link {
    color: #4c1d95 !important;
}

.second-card {
    background: #1e40af !important;
    /* Mavi renk */
    color: white !important;
    height: 230px !important;
    /* TÃ¼m kartlar aynÄ± yÃ¼kseklikte */
    width: 100% !important;
    /* TÃ¼m kartlar aynÄ± geniÅŸlikte */
}

.second-card h4 {
    color: white !important;
}

.second-card p {
    color: white !important;
}

.second-card .service-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.third-card {
    background: #312e81 !important;
    /* Daha koyu mor */
    color: white !important;
    height: 230px !important;
    /* TÃ¼m kartlar aynÄ± yÃ¼kseklikte */
    width: 100% !important;
    /* TÃ¼m kartlar aynÄ± geniÅŸlikte */
}

.third-card h4 {
    color: white !important;
}

.third-card p {
    color: white !important;
}

.third-card .service-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.fourth-card {
    background: white !important;
    color: #4c1d95 !important;
    /* Koyu mor yazÄ± */
    height: 230px !important;
    /* TÃ¼m kartlar aynÄ± yÃ¼kseklikte */
    width: 100% !important;
    /* TÃ¼m kartlar aynÄ± geniÅŸlikte */
}

.fourth-card h4 {
    color: #4c1d95 !important;
}

.fourth-card p {
    color: #4c1d95 !important;
}

.fourth-card .service-link {
    color: #4c1d95 !important;
}

/* SaÄŸdaki kartlar iÃ§in grid dÃ¼zeni */
.right-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 400px;
    /* Sol taraftaki yÃ¼kseklikle aynÄ± */
    gap: 0;
    /* Kartlar arasÄ±nda boÅŸluk yok */
}

.service-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

.service-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1e3a8a;
}

#right-cards-container {
    display: flex;
    flex-direction: column;
    width: 442px;
    flex-wrap: wrap;
}

/* Responsive Design - Updated */
@media (max-width: 1200px) {
    #main-row {
        left: 50px;
        width: calc(100% - 50px);
    }

    #right-column {
        padding: -2px 30px 0 15px;
    }

    .bottom-overlay-card {
        width: 50%;
    }

    .gri-kutu {
        bottom: 39% !important;
        left: 9% !important;
        width: 285px !important;
        height: 239px !important;
    }
}

/*==================================================
       Modern Service Area - 992px and below (Fixed Version)
===================================================*/

@media (max-width: 992px) {

    /* Ana kapsayÄ±cÄ± dÃ¼zeni */
    .service-area {
        padding: 103px 0;
        overflow: hidden;
    }

    #main-row {
        left: 0px;
        width: 100%;
        margin: 0;
        padding: 0 15px;
        display: block;
        /* Flex yerine block kullanÄ±yoruz */
    }

    /* Sol sÃ¼tun ayarlarÄ± */
    #left-column {
        width: 110%;
        margin-bottom: 44px;
        position: relative;
        left: 0%;
        top: 13px;
    }

    /* SaÄŸ sÃ¼tun ayarlarÄ± (kartlar) */
    #right-column {
        width: 100%;
        margin-top: 0;
        padding: 0px;
        left: -1px !important;
        top: 15px !important;
    }

    /* BÃ¼yÃ¼k kart ayarlarÄ± */
    .large-card {
        height: 393px !important;
        margin-bottom: 20px;
    }

    /* Overlay kart ayarlarÄ± */
    .bottom-overlay-card {
        width: 49%;
        height: 175px;
        padding: 15px;
    }

    .bottom-overlay-card h4 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }

    .bottom-overlay-card p {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    /* SaÄŸ kart grid dÃ¼zeni */
    .right-cards-grid {
        height: auto !important;
        grid-template-columns: 1fr 1fr;
        gap: 0px;
    }

    /* KÃ¼Ã§Ã¼k kart ayarlarÄ± */
    .small-card {
        height: 174px !important;
        margin-bottom: -1px !important;
    }

    .small-card .service-content {
        padding: 15px 21px;
    }

    /* Kart iÃ§erik ayarlarÄ± */
    .service-text h4 {
        font-size: 12px;
    }

    .service-text p {
        font-size: 11px;
    }

    .service-link {
        font-size: 9px;
    }

    /* SaÄŸ kart konteyner */
    #right-cards-container {
        width: 100%;
    }
}

/* 768px ve altÄ± iÃ§in ek ayarlar */
@media (max-width: 768px) {
    #left-column {
        position: relative;
        left: 25%;
        top: 13px;
    }

    .right-cards-grid {
        grid-template-columns: 1fr;
    }

    .small-card {
        height: 140px !important;
        margin-bottom: 10px;
    }

    .bottom-overlay-card {
        width: 150px;
        height: 120px;
    }

    /* Ana kapsayÄ±cÄ± dÃ¼zeni */
    .service-area {
        padding: 103px 0;
        overflow: hidden;
    }

    #main-row {
        left: -81px;
        width: 100%;
        margin: 0;
        padding: 0 15px;
        display: block;
        /* Flex yerine block kullanÄ±yoruz */
    }


    /* SaÄŸ sÃ¼tun ayarlarÄ± (kartlar) */
    #right-column {
        width: 100%;
        margin-top: 0;
        padding: 0px;
        left: 25% !important;
        top: -61px !important;
    }

    /* BÃ¼yÃ¼k kart ayarlarÄ± */
    .large-card {
        height: 393px !important;
        margin-bottom: 20px;
    }

    /* Overlay kart ayarlarÄ± */
    .bottom-overlay-card {
        width: 117px;
        height: 106px;
        padding: 9px;
        right: 0px;
        bottom: 0px;
        display: none !important;
    }

    .bottom-overlay-card h4 {
        font-size: 9px !important;
        margin-bottom: 8px !important;
    }

    .bottom-overlay-card p {
        font-size: 8px !important;
        margin-bottom: -3px !important;
    }

    /* SaÄŸ kart grid dÃ¼zeni */
    .right-cards-grid {
        height: auto !important;
        grid-template-columns: 1fr 1fr;
        gap: 0px;
    }

    /* KÃ¼Ã§Ã¼k kart ayarlarÄ± */
    .small-card {
        height: 132px !important;
        margin-bottom: -11px !important;
    }

    .small-card .service-content {
        padding: 6px 18px;
    }

    /* Kart iÃ§erik ayarlarÄ± */
    .service-text h4 {
        font-size: 9px;
    }

    .service-text p {
        font-size: 9px;
    }

    .service-text .service-link {
        font-size: 8px;
    }

    .service-link {
        font-size: 8px;
    }

    /* SaÄŸ kart konteyner */
    #right-cards-container {
        width: 100%;
    }
}

/* 576px ve altÄ± iÃ§in ek ayarlar */
@media (max-width: 576px) {
    .large-card {
        height: 250px !important;
    }

    .bottom-overlay-card {
        width: 120px;
        height: 100px;
        padding: 10px;
    }

    .bottom-overlay-card h4 {
        font-size: 12px !important;
    }

    .service-area {
        padding: 89px 0 286px !important;
    }

    /* KÃ¼Ã§Ã¼k kart ayarlarÄ± */
    .small-card {
        height: 132px !important;
        margin-bottom: -16px !important;
    }

    .small-card .service-content {
        padding: 21px 18px;
    }

    /* Kart iÃ§erik ayarlarÄ± */
    .service-text h4 {
        font-size: 10px;
        margin-top: 0px;
    }

    .service-text p {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .service-text .service-link {
        font-size: 8px;
    }

    .service-link {
        font-size: 8px;
    }
}


/* ===================== */
/* Custom Motor Grid CSS */
/* ===================== */
.custom-bg-motor {
    background: url('assets/images/mor-arkapilan.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 519px;
}

.motor-image-on-bg {
    position: relative;
    z-index: 2;
    width: 80%;
    height: auto;
    object-fit: contain;
}

.right-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    /* gap: 0px; */
    height: 100%;
}

#right-column {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 390px;
    position: relative;
    top: 130px;
}

#main-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: none;
}

.left-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {

    .custom-bg-motor,
    .right-cards-grid {
        height: 363px;
    }

    .motor-image-on-bg {
        width: 90%;
    }
}

@media (max-width: 768px) {
    #main-row {
        flex-direction: column;
        width: 700px;
    }

    .custom-bg-motor,
    .right-cards-grid {
        height: 247px !important;
    }

    .right-cards-grid {
        gap: 0px;
    }
}

@media (max-width: 572px) {

    #main-row {
        left: -79px;
        width: 135%;
        margin: 0;
        padding: 0 15px;
    }

    .custom-bg-motor,
    .right-cards-grid {
        height: 251px !important;
    }

    .motor-image-on-bg {
        width: 100% !important;
    }

    .right-cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {

    #main-row {
        left: -53px;
        width: 135%;
        margin: 0;
        padding: 0 15px;
    }

    .custom-bg-motor,
    .right-cards-grid {
        height: 210px !important;
    }

    .motor-image-on-bg {
        width: 100% !important;
    }

    .right-cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}

/*==================================================
         Warehouse Section Custom CSS
        ===================================================*/
/* CSS KÄ±smÄ± */
.warehouse-section {
    padding: 55px 0;
    overflow: hidden;
}

.text-content {
    padding-right: 40px;
}

.text-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-content p {
    font-size: 16px;
    color: #5a6c8a;
    line-height: 1.7;
}

.image-wrapper {
    position: relative;
    margin-left: auto;
    width: 144%;
    /* BÃ¼yÃ¼k ekranlarda geniÅŸlik */
    max-width: 1026px;
    margin-right: -20%;
    /* SaÄŸa taÅŸmayÄ± dengeleme */
    overflow: hidden;
    /* TaÅŸan kÄ±sÄ±mlarÄ± kes */
}

.featured-image {
    display: block;
    width: 100%;
    height: auto;
    transform: translateX(25%);
    /* 4K'da saÄŸa yatÄ±k baÅŸlangÄ±Ã§ pozisyonu */
    transition: transform 0.3s ease;
    /* KÃ¼Ã§Ã¼ltme animasyonu */
}

/* 4K ve BÃ¼yÃ¼k Ekranlar (2560px+) */
@media (min-width: 2560px) {
    .image-wrapper {
        width: 160%;
        max-width: 1200px;
        margin-right: -30%;
        left: 29%;
    }

    .featured-image {
        transform: translateX(0%);
        /* Daha fazla saÄŸa kaydÄ±r */
    }
}

/* Desktop (1600px - 2559px) */
@media (min-width: 2000px) and (max-width: 2559px) {
    .image-wrapper {
        width: 150%;
        margin-right: -25%;
        left: 45%;
    }

    .featured-image {
        transform: translateX(0%);
    }
}

/* Desktop (1600px - 2559px) */
@media (min-width: 1600px) and (max-width: 1999px) {
    .image-wrapper {
        left: 12%;
    }

    .featured-image {
        transform: translateX(0%);
    }
}

/* Orta Boy Ekranlar (1200px - 1599px) */
@media (min-width:1200px)and (max-width: 1599px) {
    .image-wrapper {
        width: 140%;
        margin-right: -20%;
    }

    .featured-image {
        transform: translateX(0%);
    }
}

/* Responsive ayarlar gÃ¼ncellendi */
@media (max-width: 1199px) {
    .image-wrapper {
        width: 130%;
        margin-right: -15%;
    }

    .featured-image {
        transform: translateX(0%);
    }

    .text-content h2 {
        font-size: 29px;
        margin-bottom: 20px;
    }

    .text-content p {
        font-size: 12px;
        margin-bottom: 16px;
    }
}

@media (max-width: 991px) {
    .image-wrapper {
        width: 156%;
        margin-right: 0;
        max-width: 800px;
    }

    .featured-image {
        transform: none;
        max-height: 461px;
        /* 400px'den 450px'e Ã§Ä±karÄ±ldÄ± */
    }

    .gri-kutu {
        bottom: 34% !important;
        left: 9% !important;
        width: 175px !important;
        height: 172px !important;
    }
}

@media (max-width: 767px) {
    .image-wrapper {
        width: 118%;
        margin-right: 0;
        max-width: 800px;
    }

    .featured-image {
        max-height: 564px;
        /* 350px'den 400px'e Ã§Ä±karÄ±ldÄ± */
        margin-top: -12px;
        left: 62px;
    }

    .text-content {
        padding-right: 40px;
        margin-left: 40px;
        margin-bottom: 55px;
    }

    .text-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .text-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .gri-kutu {
        bottom: 33% !important;
        left: 13% !important;
        width: 150px !important;
        height: 140px !important;
    }
}

@media (max-width:568px) {
    .gri-kutu {
        bottom: 33% !important;
        left: 14% !important;
        width: 135px !important;
        height: 117px !important;
    }

}

.gri-kutu {
    position: absolute;
    bottom: 39%;
    left: 7%;
    background-color: #c0c0c0;
    color: white;
    padding: 46px 68px;
    z-index: -1;
    text-align: center;
    width: 329px;
    height: 272px;
}






/*----------------------------------
 Pagerm Custom Footer Styles 
 -----------------------*/
.pagerm-footer {
    padding: 60px 0 0;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.pagerm-footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 35px;
    width: auto;
}

.pagerm-footer-text {
    display: flex;
}

.pagerm-footer-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.pagerm-footer-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    align-content: flex-end;
}

.pagerm-footer-menu li {
    margin-bottom: 4px;
}

.pagerm-footer-menu a {
    color: #333;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.3s ease;
    display: block;
    padding: 0px 0;
}

.pagerm-footer-menu a:hover {
    color: #5a287d;
    padding-left: 5px;
}

.pagerm-footer-contact {
    display: flex;
    padding: 20px;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    color: #5a287d;
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #5a287d;
}

.info-line {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

.social-icons {
    display: flex;
    gap: 7px;
    margin-top: 24px;
    justify-content: flex-start;
}

.social-icons a {
    display: flex;
    width: 44px;
    height: 44px;
    background-color: #2b2150;
    color: white;
    border-radius: 16%;
    font-size: 23px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background-color: #3a1858;
    transform: translateY(-3px);
}

.pagerm-footer-bottom {
    background-color: #2b2150;
    padding: 54px 0;
    margin-top: 42px;
    color: white;
    width: 100%;
    min-height: 94px;
    display: flex;
    align-items: center;
}

.pagerm-footer-bottom p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Enhanced Responsive Styles with More Breakpoints */
@media (max-width: 1399px) {

    /* Large desktop adjustments */
    .pagerm-footer-menu a {
        font-size: 17px;
    }
}

@media (max-width: 1199px) {

    /* Small desktop/tablet landscape */
    .pagerm-footer {
        padding: 50px 0 0;
    }

    .pagerm-footer-menu {
        align-content: center;
    }

    .pagerm-footer-contact {
        align-content: center;
    }
}

@media (max-width: 991px) {

    /* Tablet portrait */
    .pagerm-footer-col {
        margin-bottom: 30px;
    }

    .pagerm-footer-contact {
        margin-top: 20px;
        align-content: flex-start;
    }

    .pagerm-footer-menu {
        align-items: flex-start;
        align-content: flex-start;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {

    /* Large mobile */
    .pagerm-footer {
        padding: 40px 0 0;
    }

    .pagerm-footer-text {
        flex-direction: column;
    }

    .pagerm-footer-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .pagerm-footer-menu li {
        width: calc(50% - 8px);
    }

    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
}

@media (max-width: 575px) {

    /* Small mobile */
    .pagerm-footer-menu {
        flex-direction: column;
        gap: 10px;
    }

    .pagerm-footer-menu li {
        width: 100%;
    }

    .pagerm-footer-contact {
        padding: 10px 0;
    }

    .pagerm-footer-bottom {
        padding: 30px 0;
        min-height: auto;
        text-align: center;
    }

    .pagerm-footer-bottom p {
        font-size: 14px;
    }
}

@media (max-width: 400px) {

    /* Extra small mobile */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .social-icons {
        justify-content: center;
    }

    .pagerm-footer-menu a {
        font-size: 16px;
    }
}







/*
<!-- ============================================================== -->
<!-- Euildint Scrollup Section -->
<!-- ============================================================== -->*/
.scroll-area {
    position: relative;
    z-index: 999;
}

.scroll-area .go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 30px;
    color: #ffffff;
    background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
    background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
    z-index: 9999;
    width: 45px;
    text-align: center;
    height: 45px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.9s ease-out 0s;
    -moz-transition: all 0.9s ease-out 0s;
    transition: all 0.9s ease-out 0s;
    border-radius: 10px;
}

.scroll-area .go-top i {
    position: absolute;
    top: 50%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    font-size: 15px;
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.scroll-area .go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.scroll-area .go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to right, #00132b 0%, #00132b 100%);
    background-image: -ms-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    border-radius: 100%;
}

.scroll-area .go-top:focus,
.scroll-area .go-top:hover {
    color: #fff;
}

.scroll-area .go-top:focus::before,
.scroll-area .go-top:hover::before {
    opacity: 1;
    visibility: visible;
}

.scroll-area .go-top:focus i:first-child,
.scroll-area .go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.scroll-area .go-top:focus i:last-child,
.scroll-area .go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.scroll-area .go-top.active {
    top: 95%;
    -webkit-transform: translateY(-98%);
    -moz-transform: translateY(-98%);
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    right: 30px;
    border-radius: 100%;
}

.top-wrap {
    position: relative;
}

.top-wrap .go-top-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    top: 3px;
    z-index: 1;
    background: rgb(156, 156, 156);
}

.top-wrap .go-top-button i {
    font-size: 20px;
    font-weight: 700;
    padding-left: 4px;
    color: #fff;
}

.top-wrap .go-top-button::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 45px;
    height: 45px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    -moz-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    background-image: -moz-linear-gradient(0deg, #69DDCC 0%, #69DDCC 100%);
    background-image: -webkit-linear-gradient(0deg, #F60 0%, #F60 100%);
    border-radius: 100%;
}

.top-wrap .go-top-button:hover {
    background-color: #222;
    color: #fff;
}

@-webkit-keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

@keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}


