﻿:root {
    --global-color: #cb9600db;
}
main{
    overflow-y:hidden
}
/* Base Styles */
.hero-section {
    background-image: url('../img/firstsectionimage.jpg');
    background-repeat: no-repeat;
    background-size: contain;
}

.content-wrapper {
    display: flex;
    justify-content: right;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.header-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 1140px;
    padding-top: 50px;
}

.header-title {
    text-align: right;
    animation-name: fadeInLeft;
    animation-duration: 1.25s;
}

.company-title-name {
    font-size: 4vw; /* Responsive font size */
    line-height: 1.2em;
    color: rgb(24, 45, 85);
    font-weight: 700;
    text-shadow: rgba(0, 0, 0, 0.3) -6px 8px 16px;
}

.subtitle-container {
    text-align: right;
    animation-name: fadeInLeft;
    animation-duration: 1.25s;
}

.subtitle-box {
    background-color: var(--global-color);
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.5) -11px 17px 16px -18px;
    transition: background 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease;
    padding: 15px 30px;
    font-size: 2vw;
    line-height: 1.2em;
    display: inline-block;
}

.program-title {
    font-size: 0.8em;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.description-container {
    text-align: right;
    color: white;
}

.program-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: right;
    font-size: 1.2em;
    line-height: 2em;
    padding: 10px;
    display: inline-block;
    color: #182d55;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        z-index: 121;
    }
    .hero-section {
        background-size: cover;
        background-position: center;
        position: relative;
    }

        /* Gradient Overlay for Background */
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(24, 45, 85, 0.7), rgba(24, 45, 85, 0.2)); /* Subtle gradient for depth */
            z-index: 1;
        }

    /* Enhanced Style for Content Wrapper */
    .content-wrapper {
        position: relative;
        z-index: 2;
        background-color: rgba(255, 255, 255, 0.85); /* Soft, semi-transparent white */
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
        margin: 0 auto;
        text-align: center;
    }

    /* Typography Styles */
    .company-title-name {
        font-size: 6vw;
        color: #182d55; /* Dark color to contrast with light background */
        font-weight: bold;
        margin-bottom: 10px;
        line-height: 1.3em;
    }
    .program-description {
        font-size: 3.8vw;
        line-height: 1.5em;
        color: #182d55;
    }

    .header-title {
        text-align: center;
    }

    .company-title-name {
        font-size: 8vw;
        text-align: center;
    }

    .subtitle-box {
        font-size: 4vw;
        padding: 15px 25px;
    }

    .program-title {
        font-size: 5vw;
    }

    .description-container {
        text-align: center;
        padding: 10px;
    }

    .program-description {
        font-size: 1em;
        line-height: 1.5em;
        max-width: 100%;
    }

    .description-box {
        width: 100%;
    }
}


/* Define the keyframes for the animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px); /* Start from below */
    }

    to {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

/* Create a class for the animation */
.animate-on-scroll {
    opacity: 0; /* Start hidden */
    animation: slideUp 1.1s ease-out forwards; /* Apply the animation */
}


/* Default Styles for Desktop and Larger Screens */
.feat-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

.icon-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between each item */
    justify-content: center;
}

.icon-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
}

.icon-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    text-align: center;
    padding: 75px;
    flex: 1 1 200px; /* Ensure items are responsive */
}

    .icon-list-item:hover {
        transform: scale(1.1);
    }

.icon {
    width: 100px;
    height: 100px;
    padding: 20px;
    background-color: var(--global-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Smooth transition for shadow effect */
}

    .icon svg path {
        fill: white;
    }

.icon-label {
    margin-top: 15px;
    font-size: 18px;
    color: #182d55;
    font-weight: 600;
    text-wrap: nowrap;
}
/* Media Queries for responsive design */
@media (max-width: 768px) {
    .icon-list-item {
        padding: 15px;
    }

    .icon {
        width: 70px;
        height: 70px;
        padding: 15px;
    }

    .icon-label {
        font-size: 18px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .icon-list-item {
        padding: 10px;
    }

    .icon {
        width: 70px;
        height: 70px;
        padding: 15px;
    }

    .icon-label {
        font-size: 18px;
        margin-top: 10px;
    }
}


/* Default Styles for Desktop and Larger Screens */
.gorgia-container {
    display: flex;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 20px;
    box-sizing: border-box; /* Ensure padding is included in the width */
}

.gorgia-footer-container,
.azerbaijan-footer-container,
.turkey-footer-container {
    width: 25%; /* 25% of the container width */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: left;
    color: white; /* Ensure text is readable on the background */
    border-radius: 20px; /* Add border-radius to round the corners */
    margin-right: 20px; /* Create space between footer-container and gorgia-section */
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

    .gorgia-footer-container:hover,
    .azerbaijan-footer-container:hover,
    .turkey-footer-container:hover {
        transform: scale(1.1);
    }

.footer-content {
    background: linear-gradient(126deg, #000000 29%, #182D5500 90%);
    padding: 10px;
    margin-top: 200px;
}

.footer-link-en {
    font-family: cursive;
    font-size: 30px;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(181deg, #356f42, #ecffe9, #efff00, #ff93fc); /* Add as many colors as needed */
    -webkit-background-clip: text; /* For WebKit-based browsers (Chrome, Safari) */
    background-clip: text; /* For modern browsers */
    color: transparent; /* Hides the text color to show gradient */
}

.footer-link-ar {
    color: white; /* Ensure text is readable */
    font-size: 20px;
    margin: 0;
}

.gorgia-section {
    width: 75%; /* 75% of the container width */
    background-color: rgba(24, 45, 85, 0.07);
    border-radius: 30px;
    padding: 30px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gorgia-title {
    font-size: 28px;
    color: #182d55;
    line-height: 63px;
    font-weight: 700;
    text-align: center;
}

.gorgia-description-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Adds space between the description and image */
}

.gorgia-description-box {
    width: 100%;
    background-color: #f9f9f9; /* Light background for the description box */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.gorgia-description-text {
    font-size: 19px;
    line-height: 34px;
    color: #182d55;
    font-weight: 600;
    text-align: right;
}

.cta-container {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

.cta-link {
    text-decoration: none;
}

    .cta-link:hover {
        text-decoration: none;
    }

.cta-button {
    padding: 10px;
    background-color: #cb9600db;
    border-radius: 5px;
}

.cta-text {
    font-size: 16px;
    color: #fff;
}

.cta-button:hover {
    background-color: #b78100;
    transition: background-color 0.3s ease;
}

/* Media Queries for Smaller Screens */
@media (max-width: 1024px) {
    .gorgia-footer-container,
    .azerbaijan-footer-container,
    .turkey-footer-container {
        width: 30%; /* Adjust width for tablets */
        margin-right: 10px; /* Adjust spacing */
    }

    .gorgia-section {
        width: 70%; /* Adjust width for tablets */
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .gorgia-container {
        flex-direction: column; /* Stack items vertically */
        padding-left: 20px;
        padding-right: 20px;
    }

    .gorgia-footer-container,
    .azerbaijan-footer-container,
    .turkey-footer-container {
        width: 100%; /* Full width for mobile */
        margin-right: 0;
        margin-bottom: 20px; /* Space between items */
    }

    .gorgia-section {
        width: 100%; /* Full width for mobile */
        padding-left: 10px;
        padding-right: 10px;
    }

    .gorgia-title {
        font-size: 22px; /* Adjust font size for mobile */
        line-height: 1.6;
    }

    .gorgia-description-text {
        font-size: 16px; /* Adjust font size for mobile */
        line-height: 28px;
    }

    .cta-text {
        font-size: 14px; /* Adjust font size for mobile */
    }
}

@media (max-width: 480px) {
    .gorgia-title {
        font-size: 18px; /* Further adjust font size for very small screens */
        line-height: 1.6;
    }

    .gorgia-description-text {
        font-size: 14px; /* Further adjust font size for very small screens */
    }

    .cta-text {
        font-size: 12px; /* Further adjust font size for very small screens */
    }

    .description-location {
        font-size: 30px; /* Smaller font size for mobile */
    }

    .description-subtitle {
        font-size: 20px; /* Smaller subtitle font size */
    }
}

.gorgia-footer-container {
    background-image: url('../img/gorgiavalliage.jpg');
}

.azerbaijan-footer-container {
    background-image: url('../img/azerbaijan.jpg');
}

.turkey-footer-container {
    background-image: url('../img/turkey2.jpg');
}

.gorgia-wrapper-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 300px;
    background-image: url('../img/gorgiamontain.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .gorgia-wrapper-container {
        flex-direction: column;
        height: auto; /* Let the height adjust automatically */
        background-size: cover;
        background-position: center;
    }

    .description-inner-container {
        text-align: center;
        padding: 20px; /* Add padding for better spacing on mobile */
    }

    .description-location {
        font-size: 40px; /* Smaller font size for mobile */
    }

    .description-subtitle {
        font-size: 20px; /* Smaller subtitle font size */
    }
}

.azerbaijan-wrapper-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 300px;
    background-image: url('../img/azribijanmountain.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .azerbaijan-wrapper-container {
        flex-direction: column;
        height: auto; /* Let the height adjust automatically */
        background-size: cover;
        background-position: center;
    }
}

.turkey-wrapper-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 300px;
    background-image: url('../img/turkey1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .turkey-wrapper-container {
        flex-direction: column;
        height: auto; /* Let the height adjust automatically */
        background-size: cover;
        background-position: center;
    }
}
/* Adjust title and subtitle for responsiveness */
.gorgia-wrapper-title {
    color: #182d55;
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    margin: 0 10px; /* Adjusted for better spacing */
}

.gorgia-wrapper-subtitle {
    color: var(--global-color);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
}

.gorgia-description-subtitle {
    color: #f3692a;
    font-family: Cairo, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
}

.description-location {
    color: #ffc80061;
    font-family: "Cairo", Sans-serif;
    font-size: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.description-subtitle {
    color: var(--global-color);
    font-family: "Cairo", Sans-serif;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .description-location {
        font-size: 40px; /* Even smaller font size for mobile */
    }

    .description-subtitle {
        font-size: 25px; /* Even smaller font size for mobile */
    }
}

.description-link {
    color: #182d55;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}

.text-center {
    text-align: center;
    margin-top: 20px;
}

/* Further adjust font sizes for mobile */
@media (max-width: 768px) {
    .gorgia-wrapper-title {
        font-size: 20px;
    }

    .gorgia-wrapper-subtitle {
        font-size: 16px;
    }

    .description-link {
        font-size: 28px;
    }
}


.elementor-widget-container {
    margin: -20px 0px 0px 0px;
}

.description-gorgia-link {
    color: var(--global-color);
    font-weight: 700
}

.subtitle-container {
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-list-item:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.header-title, .gorgia-description-text {
    opacity: 0;
    transform: translateX(100px);
    animation: slideIn 1.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body {
    opacity: 0;
    animation: fadeInPage 1s ease-in forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Container Styles */
.container {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
}



.widget {
    text-align: center;
    background-color: rgba(244, 244, 244, 0.76);
    padding: 50px;
    border-radius: 5px;
}

.cta-title {
    color: rgb(24, 45, 85);
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    margin: 0px 0px 20px;
    box-sizing: border-box;
}

.cta-subtitle {
    color: var(--global-color);
    font-weight: 700;
    font-size: 35px;
    line-height: 42px;
    margin: 0px 0px 10px;
    text-transform: capitalize;
    box-sizing: border-box;
}

.cta-description {
    color: rgb(24, 45, 85);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin: 0px 0px 10px;
    box-sizing: border-box;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .top-bar-wrap {
        display: none;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .featured-item,
    .post-item {
        flex: 1 1 calc(50% - 40px);
        max-width: calc(50% - 40px);
        margin-top: 20px;
    }

    .featured-section h2 {
        font-size: 2rem;
    }

    .cta-title {
        font-weight: 900;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .top-bar-wrap {
        display: none;
    }

    .cta-section h2 {
        font-size: 1.2rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .featured-item,
    .post-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .featured-section h2 {
        font-size: 1.5rem;
    }

    .header-title {
        font-size: 1.5rem;
    }
}
