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

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

.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: white;
}

.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;
    }
}


/* Bratcome css*/

.breatcome-area {
    background: #2b2150;
    padding: 154px 0px;
    position: relative;





    @media (max-width: 768px) {
        padding: 100px 0px;
    }
}

.breatcome-content {
    position: relative;
    top: 52px;
}

.breatcome-title h1 {
    color: rgb(255 255 255);
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 17px;
}

@media (max-width:768px) {

    .bratcome-text {
        display: none;
    }

    .breatcome-title h1 {
        font-size: 42px;
        margin-top: 10%;
    }
}

.bratcome-text {
    position: absolute;
    right: 0px;
    bottom: -119px;
    /* background: rgb(255 255 255); */
    padding: 15px 19px;
}

.bratcome-text ul {
    list-style: none;
    color: white;
}

.bratcome-text ul li {
    display: inline-block;
    margin-right: 15px;
    /* color: #2b2150; */
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.bratcome-text ul li a {
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: 0.5s;
}

.bratcome-text ul li a::before {
    position: absolute;
    content: "/";
    left: 107%;
}


@media (max-width: 768px) {
    .bratcome-text {
        display: none;
    }

}

.eulding-btn a {
    display: inline-block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 500;
    background: rgb(255, 102, 0);
    padding: 14px 28px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
}

.eulding-btn a:hover {
    color: rgb(255, 102, 0);
}

.eulding-btn a::before {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgb(255, 255, 255);
    content: "";
    top: 110%;
    left: 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;
}

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

.eulding-btn.about a::before {
    background: rgb(24, 25, 29);
}

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

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

.eulding-btn.service a::before {
    background: rgb(24, 25, 29);
}

.eulding-btn.standard a::before {
    background: rgb(24, 25, 29);
}

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

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

.section-sub-title h4 {
    font-size: 22px;
    color: rgb(255, 102, 0);
    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;
}

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

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

.section-main-title.contact h2 {
    color: rgb(255, 255, 255);
}

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

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

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

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

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

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

.about-area {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.about-container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 20px;
}

.hero-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1 1 0%;
}

.hero-title {
    color: rgb(43, 33, 80);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    display: inline-block;
}

.hero-subtitle {
    color: rgb(43, 33, 80);
    font-size: 31px;
    font-weight: 100;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-description {
    color: rgb(102, 102, 102);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.hero-image {
    flex: 0 0 400px;
    height: 300px;
    background: linear-gradient(135deg, rgb(248, 249, 250), rgb(233, 236, 239));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgb(249 249 249);
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    box-sizing: border-box;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgb(43, 33, 80);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 20px;
    color: white;
    font-size: 24px;
}

.stat-number {
    color: rgb(43, 33, 80);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: rgb(102, 102, 102);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    color: rgb(136, 136, 136);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
}

.features-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    margin-bottom: 40px;
}

.features-title {
    color: rgb(43, 33, 80);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}

.feature-card {
    background: var(--card-bg);
    color: var(--card-text);
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.feature-card:nth-child(2n) {
    border-right: none;
}

.feature-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.feature-card[data-color="purple"] {
    --card-bg: #312e81;
    --card-text: white;
    --icon-bg: #312e81;
    --icon-color: #ffffff;
    --title-color: white;
    --desc-color: rgba(255, 255, 255, 0.9);
}

.feature-card[data-color="blue"] {
    --card-bg: #1e40af;
    --card-text: white;
    --icon-bg: #1e40af;
    --icon-color: #ffffff;
    --title-color: white;
    --desc-color: rgba(255, 255, 255, 0.9);
}

.feature-card[data-color="grey"] {
    --card-bg: #f9f9f9;
    --card-text: black;
    --icon-bg: #e5e1e18c;
    --icon-color: #312e81;
    --title-color: #312e81;
    --desc-color: rgb(125 125 125);
}

.feature-card[data-color="white"] {
    --card-bg: white;
    --card-text: black;
    --icon-bg: white;
    --icon-color: #1e40af;
    --title-color: #1e40af;
    --desc-color: rgb(102, 102, 102);
}

.feature-card:hover {
    background: var();
    color: white;
    z-index: 10;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 20px;
    color: var(--icon-color);
    font-size: 32px;
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--icon-color);
    color: var(--icon-bg);
}

.feature-title {
    color: var(--title-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--title-color);
}

.feature-description {
    color: var(--desc-color);
    font-size: 14px;
    line-height: 1.6;
    transition: 0.3s;
}

.feature-card:hover .feature-description {
    color: var(--desc-color);
}

.content-section {
    background: white;
    margin: 40px 0px;
    padding: 50px 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 10px;
    border-left: 4px solid rgb(43, 33, 80);
}

.content-section h2 {
    color: rgb(43, 33, 80);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    font-family: Arial, sans-serif;
}

.content-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 50px;
    height: 2px;
    background: rgb(43, 33, 80);
}

.content-section p {
    color: rgb(74, 85, 104);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mission-vision-section {
    background: rgb(43, 33, 80);
    color: white;
    padding: 54px 58px;
}

.mission-vision-section h2 {
    color: rgb(255, 255, 255);
    font-size: 35px;
    margin-bottom: 23px;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.mission-vision-section h2::after {
    background: rgb(255, 255, 255);
}

.mission-vision-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .content-section {
        padding: 30px 20px;
        margin: 30px 0px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .mission-vision-section {
        padding: 40px 20px;
    }

    .mission-vision-section h2 {
        font-size: 28px;
    }

    .mission-vision-section p {
        font-size: 15px;
    }
}

.contact-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 50px;
    /* box-shadow: 0 20px 40px rgba(43, 33, 80, 0.1); */
    backdrop-filter: blur(10px);
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b2150, #4a3d7a, #2b2150);
}

.contact-content {
    flex: 1;
    position: relative;
}

.contact-title {
    color: #2b2150;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 0 2px 4px rgba(43, 33, 80, 0.1);
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2b2150, #4a3d7a);
    border-radius: 2px;
}

.contact-description {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

.contact-info {
    flex: 0 0 350px;
    padding: 40px 30px;
    /* background: linear-gradient(135deg, rgba(43, 33, 80, 0.03) 0%, rgba(74, 61, 122, 0.03) 100%); */
    border-radius: 15px;
    /* border: 1px solid rgba(43, 33, 80, 0.1); */
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(43, 33, 80, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #2b2150, #4a3d7a);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 33, 80, 0.15);
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2b2150, #4a3d7a);
    color: white;
    border-radius: 12px;
    margin-right: 20px;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(43, 33, 80, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(43, 33, 80, 0.4);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: #2b2150;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-content {
    animation: fadeInUp 0.6s ease;
}

.contact-info {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.contact-item {
    animation: fadeInUp 0.6s ease calc(0.4s + var(--delay, 0s)) both;
}

/* Responsive tasarım */
@media (max-width: 992px) {
    .contact-section {
        gap: 30px;
    }

    .contact-info {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
    }

    .contact-info {
        flex: none;
        width: 100%;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-description {
        font-size: 16px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-description {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-info {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-area {
        padding: 30px 0px;
    }

    .about-container {
        padding: 0px 15px;
    }

    .hero-section {
        padding: 40px 20px;
    }

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

    .hero-subtitle {
        font-size: 20px;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-section {
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        border-bottom: 2px solid rgb(43, 33, 80);
        border-right: none !important;
    }

    .feature-card:last-child {
        border-bottom: none !important;
    }

    .catalog-section {
        padding: 40px 20px;
    }

    .catalog-title {
        font-size: 28px;
        color: rgb(241, 195, 18);
    }

    .contact-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .catalog-tags {
        flex-direction: column;
        align-items: center;
    }
}

.pagerm-footer {
    padding: 60px 0px 0px;
    font-family: Arial, sans-serif;
    color: rgb(51, 51, 51);
}

.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: rgb(102, 102, 102);
    margin-bottom: 20px;
    text-align: justify;
}

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

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

.pagerm-footer-menu a {
    color: rgb(51, 51, 51);
    text-decoration: none;
    font-size: 19px;
    transition: 0.3s;
    display: block;
    padding: 0px;
}

.pagerm-footer-menu a:hover {
    color: rgb(90, 40, 125);
    padding-left: 5px;
}

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

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

.contact-item i {
    font-size: 24px;
    color: rgb(255 255 255);
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
    color: rgb(90, 40, 125);
}

.info-line {
    font-size: 14px;
    color: rgb(102, 102, 102);
    margin: 5px 0px 0px;
}

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

.social-icons a {
    display: flex;
    width: 44px;
    height: 44px;
    background-color: rgb(43, 33, 80);
    color: white;
    font-size: 20px;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background-color: rgb(58, 24, 88);
    transform: translateY(-3px);
}

.pagerm-footer-bottom {
    background-color: rgb(43, 33, 80);
    padding: 54px 0px;
    margin-top: 42px;
    color: white;
    width: 100%;
    min-height: 94px;
    display: flex;
    align-items: center;
}

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

@media (max-width: 1399px) {
    .pagerm-footer-menu a {
        font-size: 17px;
    }
}

@media (max-width: 1199px) {
    .pagerm-footer {
        padding: 50px 0px 0px;
    }

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

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

@media (max-width: 991px) {
    .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) {
    .pagerm-footer {
        padding: 40px 0px 0px;
    }

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

    .pagerm-footer-menu {
        flex-flow: 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) {
    .pagerm-footer-menu {
        flex-direction: column;
        gap: 10px;
    }

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

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

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

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

@media (max-width: 400px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

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

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

.scroll-area {
    position: relative;
    z-index: 999;
}

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

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

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

.scroll-area .go-top::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to right, rgb(0, 19, 43) 0%, rgb(0, 19, 43) 100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-out;
    border-radius: 100%;
}

.scroll-area .go-top:focus,
.scroll-area .go-top:hover {
    color: rgb(255, 255, 255);
}

.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: 0px;
    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%;
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
    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: rgb(255, 255, 255);
    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: rgb(255, 255, 255);
}

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

.top-wrap .go-top-button:hover {
    background-color: rgb(34, 34, 34);
    color: rgb(255, 255, 255);
}

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

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

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

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

/* Mission and Vision Section */
.mission-vision-container {
    display: flex;
    gap: 30px;
    padding: 60px 0;
    justify-content: center;
}

.mission-vision-card {
    background-color: #f9f9f9;
    padding: 40px;
    text-align: center;
    flex: 1;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision-icon {
    font-size: 48px;
    color: #2b2150;
    margin-bottom: 20px;
}

.mission-vision-title {
    font-size: 24px;
    font-weight: 600;
    color: #2b2150;
    margin-bottom: 15px;
}

.mission-vision-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 992px) {
    .mission-vision-container {
        flex-direction: column;
        align-items: center;
    }
}