:root {
    --primary-red: #ff0000;
    --white: #ffffff;
    --black: #000000;
    --lite-red: #ffe5e5;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --font-main: 'Alexandria', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

ul {
    list-style: none;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-radius: 0 0 15px 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.3rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 2.8rem;
    color: var(--primary-red);
    cursor: pointer !important; 
    
    /* إلغاء إمكانية تحديد النص (يحل مشكلة المربع الأزرق) */
    user-select: none;
    -webkit-user-select: none; /* لمتصفحات Chrome و Safari */
    -moz-user-select: none;    /* لمتصفح Firefox */
    -ms-user-select: none;     /* لمتصفح Edge القديم */
    -webkit-tap-highlight-color: transparent; /* إزالة تأثير الـ Highlight الأزرق عند اللمس في الموبايل */
    
    /* لضمان عدم ظهور حدود عند الضغط */
    outline: none;  
} 
 
/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    /* Removed flex centering from parent as it's now in slides */
    color: var(--white);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Changed from -1 to 1 to contain content */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;

    /* Added Flex centering for internal content */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: -1;
    /* Place behind text */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    padding-top: 10%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.7;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-red);
    margin-bottom: 2rem;
    background: var(--white);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}
 
.hero-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2.5rem;
    background: var(--primary-red);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
}

.hero-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/*ALL SECTIONS*/
.all_sections { padding: 4rem 2rem; }

/* --- Services Section --- */
.services { 
    background: var(--light-gray);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.title-desc {
    margin-bottom: 2rem;

}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    line-height: 1.6rem;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-red);

}

.service-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* --- Our Work Section --- */
.our-work {
    padding: 4rem 2rem;
    background: var(--lite-red);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-work .section-title {
    color: var(--black);
    margin-bottom: 4rem;
    text-align: center;
    width: 100%;

}

.workContent {
    color: var(--black);
}

.work-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    flex: 0 1 300px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--primary-red) !important;
    background: var(--lite-red);
    transition: var(--transition);
}

.work-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-btn {
    margin-left: 0.5rem;
    cursor: pointer;
}

.soon {
    color: var(--primary-red) !important;
    background: var(--lite-red) !important;
    border: 2px solid var(--primary-red) !important;
}

.soon:hover {
    background: transparent !important;
    color: var(--primary-red) !important;
}

.galeryBTNs {
    width: 100%;
    text-align: center;
    display: flex;
    gap: 5px;
    /* المسافة بين المربعين */
    align-items: stretch;
    /* هذا السطر يضمن تمدد العناصر لنفس الارتفاع */
    justify-content: center;
    flex-wrap: wrap;
}

.galeryBTNs a {
    max-width: 45%;
}

.divider {
    width: 50%;
    height: 1px;
    /* سمك الخط */
    background-color: red;
    /* لون الخط */
    margin-top: 50px;
    /* لجعله في المنتصف */
    margin-bottom: 20px;
    /* لجعله في المنتصف */
    border-radius: 5px;
    /* لجعل أطراف الخط دائرية */
}

/*SLIDES*/

.openGAL {
    cursor: pointer !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    gap: 10px !important;
}

.openGAL img {
    filter: brightness(0) invert(1);
}

.openGAL:hover {
    transform: scale(1.05);
}

.openGAL:hover img {
    filter: none !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    margin: auto;
    top: 5%;
    width: 80%;
    max-width: 100%;
}

.mySlides {
    display: none;
    text-align: center;
}

.mySlides img {
    max-width: 50%;
    max-height: 50%;
    border-radius: 10px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 25px;
    user-select: none;
    text-decoration: none;
}

.next {
    left: -60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.prev {
    right: -60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 5px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/*PDF stuff*/

.pdfTAB {
    padding: 35px;
    margin-top: 10px;

}

.pdfTITLE {
    padding-bottom: 20px;
    text-align: center;
}

.pdfTAB h2 {
    color: var(--primary-red);
}

.tags {
    background: var(--primary-red);
    border-radius: 10px;
    display: inline-block;
    /* يجعل الخلفية على مقاس النص فقط */
    padding: 5px 10px;
    margin-top: 15px;
}

.infoooo {
    margin-top: 30px;
}

.infoooo .offerContent {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 30px;
}

.lastTitle {
    margin-top: 20px;
    line-height: 30px;
    text-align: center;
}

/*PDF*/

/*VIDEO stuff*/
.vidTV {
    display: flex;
    justify-content: center;
}

.vid {
    width: 300px;
    aspect-ratio: 9/16;
    background: black;
}

.myVids {
    display: none;
    text-align: center;
}

.myVids video {
    border-radius: 10px;
}



@media (max-width: 1000px) {
    .next {
        left: 30px;
    }

    .prev {
        right: 30px;
    }

    .modal-content {
        width: 90%;
    }

    /*.mySlides img { max-width: 55%; max-height: 55%; }*/
}

@media (max-width: 900px) {
    .modal-content {
        width: 100%;
    }

    /*.mySlides img { max-width: 55%; max-height: 55%; }*/
}

@media (max-width: 800px) {

    .mySlides img {
        max-width: 55%;
        max-height: 55%;
    }
}

@media (max-width: 700px) {
    .modal-content {
        padding-top: 15px;
    }

    .mySlides img {
        max-width: 70%;
        max-height: 70%;
    }
}

@media (max-width: 600px) {
    .modal-content {
        padding-top: 20px;
    }

    .next {
        left: 15px;
    }

    .prev {
        right: 15px;
    }

    .mySlides img {
        max-width: 80%;
        max-height: 80%;
    }
}

@media (max-width: 500px) {
    .modal-content {
        padding-top: 25px;
    }

    .next {
        left: 10px;
    }

    .prev {
        right: 10px;
    }

    .mySlides img {
        max-width: 90%;
        max-height: 90%;
    }
}

@media (max-width: 400px) {
    .modal-content {
        padding-top: 30px;
    }

    .next {
        left: 5px;
    }

    .prev {
        right: 5px;
    }

    .mySlides img {
        max-width: 95%;
        max-height: 95%;
    }
}

@media (max-width: 320px) {
    .vid {
        width: 280px;
    }
}

@media (max-width: 300px) {
    .vid {
        width: 270px;
    }
}

/*SLIDES*/


/* --- Offers Section --- */
.offers { 
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.offer-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.offer-card:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.offer-image {
    height: 150px;
    width: 100%;
    background: #eee;
    overflow: hidden;
}

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

.offer-details {
    padding: 1.5rem;
    text-align: center;
}

.offer-title {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-desc {
    color: #666;
    line-height: 1.6;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #666;
    line-height: 1.6;
}

.giftScndLine {
    padding-top: 10px;
}

.offer-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
}

.offerNote {
    padding-top: 8px;
    font-size: 0.9rem;
}

.offer-btn:hover {
    background: transparent;
    color: var(--primary-red);
}

.offerContent {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* --- Contact Section --- */
.contact { 
    background: var(--light-gray);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.contact-map,
.contact-info {
    flex: 1;
    min-width: 350px;
    min-height: 300px;
    /* Reduced from 400px */
}

.contact-map {
    position: relative;
    background: #000;
    /* Fallback */
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Dim the image for text contrast */
}

.contact-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-align: center;
    width: 100%;
    padding: 1rem;
    z-index: 2;
    line-height: 20px;
}

.contact-overlay-text h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.call-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0;
    transition: var(--transition);
}

.call-btn:hover , .social-icon:hover {
    transform: scale(1.05);
    background: var(--primary-red);
}

.whatsapp-btn {
    background: #535353;
    margin-top: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #535353;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-gray);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* --- Footer --- */
footer {
    background: var(--black);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-top: 4px solid var(--primary-red);
}

footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}


/*Lang select*/
.lang-dropdown {
    position: fixed;
    margin-top: 180px;
    left: 50px !important;
    transition: all 0.4s ease-in-out;
    z-index: 1000;
}

/* زر القائمة الرئيسي */
.lang-dropbtn {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    padding: 8px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    font-family: 'Cairo', 'Zain', sans-serif;

    display: inline-flex;
    align-items: center; /* لتوسيط العناصر عمودياً */
    justify-content: center; /* لتوسيط العناصر أفقياً */
    gap: 8px; /* مسافة مناسبة بين العلم والنص */    
    flex-direction: row; /* يضمن ترتيب العناصر من اليسار لليمين دائماً داخل الزر */ 
    min-width: 80px; /* يعطي مساحة كافية للنص والعلم */

    font-family: 'Alexandria', sans-serif !important;
    font-weight: 700 !important; /* لجعل النص بولد دائماً */
    direction: ltr; /* نجعل اتجاه الزر دائماً من اليسار لليمين ليحافظ العلم على مكانه بجانب النص */


}

.lang-dropbtn span {
    font-size: 16px; /* يمكنك تكبير الخط قليلاً إذا أردت */
    text-transform: uppercase; /* لجعل الحروف الإنجليزية كبيرة */
    font-weight: bold;
    font-family: 'Alexandria', sans-serif !important;
    font-weight: 700;
}


.lang-dropbtn img {
    width: 30px;
    border-radius: 3px;
}

.flags { 
    border-radius: 5px;
}



/* محتوى القائمة المنسدلة */
.lang-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 140px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
    margin-right: -20px;
    right: 0;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    display: block !important;
    /* نستخدم visibility بدلاً من display للتمكن من عمل انيميشن */
}

.lang-dropdown.active .lang-dropdown-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.lang-dropdown-content img {
     
    height: 27px;
    width: 40px; 
}

/* لضمان تناسق حجم الأعلام */
.lang-dropbtn img, .lang-dropdown-content img {
     
    height: auto;
    display: block;
}

/* روابط اللغات داخل القائمة */
.lang-dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: 0.2s; 
}

.lang-dropdown:hover .lang-dropdown-content {
    display: none;
}

/* إظهار القائمة فقط عندما يكون الكلاس active موجوداً */
.lang-dropdown.active .lang-dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease-in;
    /* إضافة حركة دخول ناعمة */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.lang-dropdown.active .lang-dropbtn {
    background-color: #f9f9f9;
}




/* KURDISH edits (lang="ku") */

html[lang="ku"] {

    body,
    h1,
    h2,
    h3,
    button {
        font-family: 'Zain', sans-serif !important;
        letter-spacing: 0px; /* لإلغاء أي مسافات تلقائية */
        font-feature-settings: "kern" off; /* لإيقاف التباعد التلقائي المحتمل */ 
    }

    .nav-links a {
        font-weight: 550;
        font-size: 1.3rem;
    }

    .nav-links {
        display: flex;
        gap: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .title-desc {
        margin-bottom: 2rem;
        font-size: 1.2rem;

    }



}

/* ENGLISH edits (lang="en") */
html[lang="en"] {


    .lang-dropdown {
        right: 50px !important;
        text-align: right !important;

    }

    .lang-dropdown .lang-dropbtn {
        right: 50px !important;
        text-align: right !important;

    }

    .work-btn {
        margin-left: 0rem;
        margin-right: 0.5rem;
        cursor: pointer;
    }


    .hero-content h1 { font-size: 3rem; } 



}


/* Lang stuf with viewport */


@media (max-width: 850px) {

    html[lang="ku"] {
        .nav-links a {
            font-size: 1.2rem !important;
        }

        .nav-links {
            gap: 1.2rem;
        }
    }


    html[lang="ku"] {
        .contact-map h3 {
             font-size: 1.4rem;
        }
    }

    html[lang="en"] {
        .contact-map h3 {
             font-size: 1.4rem;
        }
    }

    
    html[lang="en"] {
        .hero-content h1 { font-size: 2.7rem; }
    }
     

}



/*UNIVERSAL mobile settings for all website adjustments*/
 
/* --- HERE THE NAVBAR MENU SWITCH --- */
@media (max-width: 768px) {

    .navbar {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem; 
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
 
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        min-width: 180px; 
        list-style: none;
        
        /* خصائص الأنيميشن */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.95); /* تبدأ من الأعلى مع تصغير بسيط */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* حركة ناعمة تشبه دروب داون اللغة */
        
        /* منع التحديد لضمان مظهر احترافي كما في الصور */
        user-select: none;
        pointer-events: none; /* لمنع الضغط عليها وهي مخفية */

    }
   
    .nav-links.active { 

        margin-top: 25px;
        opacity: 0.95;
        visibility: visible;
        transform: translateY(0) scale(1); /* تعود لمكانها الطبيعي وحجمها الكامل */
        pointer-events: auto; /* تفعيل الروابط عند الظهور */

    }

    /*HERE we adjust the margin so it be same gap BC kurdish header is taller*/ 
    html[lang="ku"] { .nav-links.active {  margin-top: 30px; } }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .flex-split {
        flex-direction: column;
    }

    .lang-dropdown {
        margin-top: 5px !important;
        margin-left: 50px !important;
    }

    html[lang="en"] {

        .lang-dropdown {
            margin-top: 5px !important;
            margin-right: 50px !important;
        }

    }

    html[lang="ku"] {

        .lang-dropdown {
            margin-top: -5px !important;
        }

    }


    
    .hero-content h1 { font-size: 2.9rem; }

    .hero-content h2 { font-size: 1.1rem; }

    .hero-btn { font-size: 1.0rem; } 

    html[lang="ku"] {
        .contact-map h3 {
             font-size: 1.3rem;
        }
    }

    html[lang="en"] {
        .hero-content h1 { font-size: 2.5rem; }
    }


}


@media (min-width: 764px) and (max-width: 1100px) {

    .contact-map {
        min-width: 300px;
        min-height: 200px;
    }

    .contact-info h1 {
        font-size: 1.7rem; 
    }

    .contact-map h3 {
        font-size: 1.6rem;
    }





}


@media (max-width: 763px) {
        
    .contact-map h3 {
        font-size: 1.8rem;
    }

    html[lang="ku"] , html[lang="en"] {
        .contact-map h3 {
             font-size: 1.8rem;
        }
    }

    html[lang="en"] , html[lang="en"] {
        .hero-content h1 { font-size: 2.3rem; }
    }    

}

@media (max-width: 630px) {

    html[lang="ku"] {
        .contact-map h3 {
             font-size: 1.6rem;
        }
    }

    html[lang="en"] {
        .hero-content h1 { font-size: 2.1rem; }
    } 

}


@media (max-width: 600px) {
    
    .hero-content h1 { font-size: 2.8rem; }

    .hero-content h2 { font-size: 1.0rem; }

    .hero-btn { font-size: 0.9rem; }

    html[lang="ku"] {
        .contact-map h3 {
             font-size: 1.4rem;
        }
    }
    
    html[lang="en"] {
        .hero-content h1 { font-size: 2.0rem; }
    }  
    
    html[lang="en"] {
        .contact-map h3 {
             font-size: 1.6rem;
        }
    }

}


@media (max-width: 560px) {
    .contact-map h3 {
        font-size: 1.8rem;
    }

    .contact-info h1 {
        font-size: 1.65rem; 
    }


    .hero-content h1 { font-size: 2.8rem; }

    .hero-content h2 { font-size: 1.0rem; }

    .hero-btn { font-size: 0.9rem; }

    html[lang="en"] {
        .hero-content h1 { font-size: 1.9rem; }
    } 

    html[lang="en"] {
        .contact-map h3 {
             font-size: 1.5rem;
        }
    }

}

@media (max-width: 500px) { 

    .hero-content h1 { font-size: 2.7rem; }

    .hero-content h2 { font-size: 0.9rem; }

    .hero-btn { font-size: 0.8rem; }

    html[lang="en"] {
        .hero-content h1 { font-size: 1.8rem; }
    }


}


@media (max-width: 450px) {
 

    .contact-info h1 {
        font-size: 1.5rem; 
    }

    html[lang="en"] {
        .hero-content h1 { font-size: 1.6rem; }
    }


}
@media (max-width: 430px) {

    .whatsapp-btn span {
        font-size: 0.9rem;
    }

    
    html[lang="ku"] {
           .hero-content h1 { font-size: 2.3rem; }
    }


    html[lang="ku"] {
        .contact-map h3 {
             font-size: 1.3rem;
        }
    } 
    
    html[lang="en"] {
        .hero-content h1 { font-size: 1.4rem; }
    }



}
    
@media (max-width: 420px) {

    .offer-card {
        max-height: 400px;
    }

    .offer-image {
        max-height: 90px;
    }

    .offer-title {
        font-size: 1.25rem;
    }

    .offerContent {
        font-size: 1rem;
    }

    .offer-btn {
        margin-top: 1rem;
    }

    .contact-info h1 {
        font-size: 1.3rem;
    }

    .contact-map {
        min-width: 320px;
        min-height: 280px;
    }

    .contact-map h3 {
        font-size: 1.5rem;
    }

    html[lang="ku"] {
        .contact-map h3 {
             font-size: 1.2rem;
        }

        .section-title {
        font-size: 1.9rem;
    }

    }  
    
    .offerWithNote {
        max-height: 450px;
    }

    .section-title {
        font-size: 2.2rem;
    }



}

@media (max-width: 410px) {

    .contact-info h1 {
        font-size: 1.6rem;
    }

    .whatsapp-btn span {
        font-size: 1rem;
    }



    .hero-content h1 { font-size: 2.6rem; }

    .hero-content h2 { font-size: 0.9rem; }

    .hero-btn { font-size: 0.8rem; }

    html[lang="ku"] {
           .hero-content h1 { font-size: 2.3rem; }
    }

    html[lang="ku"] {
        .contact-map h3 {
             font-size: 1.1rem;
        }

        .offerWithNote {
            max-height: 480px;
        }
    }

}

@media (max-width: 400px) { 

    html[lang="ku"] {

        .offerWithNote {
            max-height: 500px;
        }
    }


    .section-title {
        font-size: 2.0rem;
    }

    html[lang="ku"] { 

        .section-title {
        font-size: 1.8rem;
    }
    


    
}
        


@media (max-width: 400px) { 

    .contact-info h1 {
        font-size: 1.4rem;
    } 

    .contact-info {
        margin-right: -8px;
    }

    
    html[lang="en"] {
        .contact-info { margin-left: -8px; }
    }

    .contact-map {
        min-width: 300px;
        min-height: 260px;
    }

    .contact-map h3 {
        font-size: 1.5rem;
    }


    html[lang="en"] {
        .contact-map h3 {
             font-size: 1.3rem;
        }
    }

    .section-title {
        font-size: 1.9rem;
    }

    html[lang="ku"] { 

        .section-title {
        font-size: 1.7rem;
    }    

}


@media (max-width: 390px) {

    .contact-info h1 {
        font-size: 1.3rem;
    }

    .whatsapp-btn span {
        font-size: 1rem;
    }

    .contact-info {
        margin-right: -12px;
    }

    html[lang="en"] {
        .contact-info { margin-left: -12px; }
    }

    .contact-info {
        margin-left: -12px;
    }

    .contact-map {
        min-width: 320px;
        min-height: 280px;
    }

    .contact-map h3 {
        font-size: 1.5rem;
    }

    .offerWithNote {
        max-height: 450px;
    }

    .contact-map {
        min-width: 290px;
        min-height: 240px;
    }
 
    .hero-content h1 { font-size: 2.3rem; }

    .hero-content h2 { font-size: 0.9rem; }

    .hero-btn { font-size: 0.8rem; }

    html[lang="ku"] {
        .hero-content h1 { font-size: 2.1rem; }

        .section-title {
        font-size: 1.6rem;
    } 

}

@media (max-width: 370px) {  

    .contact-info {
        margin-right: -18px;
    }
    html[lang="en"] {
        .contact-info { margin-left: -18px; }
    }
}



@media (max-width: 360px) {

    .all_sections { padding: 4rem 1rem; }

    .contact-info {
        margin-right: -22px;
    }
    html[lang="en"] {
        .contact-info { margin-left: -22px; }
    }

    .contact-map {
        min-width: 290px;
        min-height: 250px;
    }

    .offer-card {   max-width: 100%;  }

     
    .hero-content h1 { font-size: 2.1rem; }

    .hero-content h2 { font-size: 0.9rem; }

    .hero-btn { font-size: 0.8rem; }


    html[lang="ku"] {
           .hero-content h1 { font-size: 2.0rem; }
    }

}

@media (max-width: 330px) {

    .offer-card {   max-width: 300px;  }

    .all_sections { padding: 4rem 0.8rem; }

    .contact-info {
        margin-right: -22px;
    }
    html[lang="en"] {
        .contact-info { margin-left: -22px; }
    }

    .contact-map {
        min-width: 290px;
        min-height: 250px;
    }


    .hero-content h1 { font-size: 2.0rem; } 

    html[lang="ku"] {
           .hero-content h1 { font-size: 1.9rem; }
    }

}

@media (max-width: 320px) {

    .offer-card {   max-width: 290px;  }

    .offerContent {
        font-size: 0.8rem;
    }

    .offer-btn {
        margin-top: 0.8rem;
        font-size: 0.8rem;
    }

    .work-item {
        margin-right: 0.4rem;
    }

    .contact-info {
        margin-right: -30px;
    }

    html[lang="en"] {
        .contact-info { margin-left: -33px; }
    }


    
    .hero-content h1 { font-size: 1.9rem; }

}

@media (max-width: 310px) {

    .offer-card {   max-width: 280px;  }

    .all_sections { padding: 4rem 0.6rem; }

    .contact-info {
        margin-right: -35px;
    }

    html[lang="en"] {
        .contact-info { margin-left: -35px; }
    }

    .contact-map {
        min-width: 250px;
        min-height: 230px;
    }

    .contact-map h3 {
        font-size: 1.3rem;
    } 

    .work-item {
        margin-right: 0.6rem;
    }
    
    .hero-content h1 { font-size: 1.8rem; }
    
}



