:root {
    --primary-color: #19293b;
    --secondary-color: #debe6d;
    --light-bg-color: #f8f9fa;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --text-color-muted: #adb5bd;
    --font-family: 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    background-color: var(--text-color-light);
    color: var(--text-color-dark);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem; /* تم إلغاء الهامش السلبي تمامًا */
    color: #6c757d;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.hero-section .btn-primary:hover {
    color: var(--text-color-light);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color-light);
    border-color: var(--text-color-light);
}

.btn-secondary:hover {
    background-color: var(--text-color-light);
    color: var(--primary-color);
}

.main-header {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease, background-color 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

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

.main-nav a {
    color: var(--text-color-light);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c9a85a;
}

.hero-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    color: var(--text-color-light);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1.5rem auto 2.5rem;
    color: var(--text-color-muted);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

section {
    padding: 80px 0;
}

.founders-section {
    background-color: var(--light-bg-color);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.founder-card {
    background: var(--text-color-light);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.founder-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--secondary-color);
}

.founder-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.services-section {
    background-color: var(--text-color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.service-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.methodology-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.methodology-section .section-title {
    color: var(--text-color-light);
}

.methodology-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

/* أضف هذه القاعدة الجديدة */
.timeline-item::before {
    content: '';
    position: absolute;
    background-color: rgba(222, 190, 109, 0.5);
    width: 4px;
    /* تحديد موقع الخط */
    top: 0;
    bottom: 0;
    right: 29px; /* نفس موقع الخط القديم ليتوسط الدائرة */
    /* تحديد الطبقة (مهم جدًا) */
    z-index: 0; 
}

.timeline-item {
    padding: 10px 80px 30px 0;
    position: relative;
    background-color: inherit;
    width: 100%;
}

/* تأكد من أن هذه القاعدة مطابقة لما يلي */
.timeline-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0;
    background-color: var(--primary-color); /* يضمن أن الدائرة مصمتة */
    border: 4px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1; /* يضع الدائرة فوق الخط الجديد (::before) */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.timeline-item h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-color-muted);
}

.why-us-section {
    background-color: var(--light-bg-color);
}

/* ======== بداية الكود الجديد لقسم المزايا (متجاوب بالكامل) ======== */

/* النمط الأساسي (للجوال أولاً): بطاقة واحدة في كل صف */
.features-grid {
    display: grid;
    /* قيمة minmax آمنة للجوالات، ستؤدي دائمًا لعمود واحد */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* لشاشات الأجهزة اللوحية والمكتبية (أعرض من 768 بكسل) */
@media (min-width: 768px) {
    .features-grid {
        /* هنا نأمر المتصفح صراحةً باستخدام عمودين فقط */
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem; /* يمكننا استخدام مسافة أكبر على الشاشات العريضة */
    }
}

/* ======== نهاية الكود الجديد لقسم المزايا ======== */
.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.expertise-section {
    background-color: var(--text-color-light);
}

.pricing-section {
    background-color: var(--light-bg-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--text-color-light);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-header h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    margin-right: 5px;
    color: var(--text-color-dark);
}

.pricing-body {
    padding: 2rem;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-body p {
    flex-grow: 1;
}

.pricing-btn {
    margin-top: 1.5rem;
    width: 100%;
    color: var(--primary-color) !important;
}

.principles-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    text-align: center;
}

.principles-section .section-title {
    color: var(--text-color-light);
}

.principles-section p {
    color: var(--text-color-muted);
    max-width: 800px;
    margin: 0 auto;
}

.cta-section {
    background-color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.cta-section p {
    color: var(--text-color-dark);
    opacity: 0.9;
    max-width: 700px;
    margin: 1rem auto 2rem;
}

.cta-section .btn.large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

.main-footer {
    background-color: #122131;
    color: var(--text-color-muted);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-color-muted);
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--text-color-muted);
    transition: color 0.3s ease, padding-right 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color-light);
    margin-left: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .main-header .container { flex-direction: column; gap: 1rem; }
    .main-nav ul { gap: 1.5rem; }
    .cta-button { display: none; }
    .hero-buttons { flex-direction: column; }
    .expertise-columns { flex-direction: column; gap: 0; align-items: center; }
    .methodology-timeline::after { right: 29px; }
    .timeline-item { width: 100%; padding-right: 80px; padding-left: 10px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; left: 20px; font-size: 24px; }
}

@media (max-width: 480px) {
    .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

.main-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(25, 41, 59, 0.98);
    backdrop-filter: blur(5px);
}

.main-nav a.active {
    color: var(--secondary-color);
}

.main-nav a.active::after {
    width: 100%;
}

.founder-card, 
.service-item, 
.timeline-item, 
.feature-item, 
.pricing-card, 
.section-title, 
.section-subtitle, 
.expertise-columns,
.portfolio-icon,
.portfolio-main-text,
.portfolio-highlight,
.portfolio-sub-text,
a[id="whatsapp-portfolio"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.founder-card.is-visible, 
.service-item.is-visible, 
.timeline-item.is-visible, 
.feature-item.is-visible, 
.pricing-card.is-visible, 
.section-title.is-visible,
.section-subtitle.is-visible,
.expertise-columns.is-visible,
.portfolio-icon.is-visible,
.portfolio-main-text.is-visible,
.portfolio-highlight.is-visible,
.portfolio-sub-text.is-visible,
a[id="whatsapp-portfolio"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======== بداية كود تنسيق قسم الأسعار الجديد ======== */

/* إعادة تنسيق البطاقة الرئيسية */
.pricing-card {
    background: var(--text-color-light);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(25, 41, 59, 0.1);
}

/* تنسيق البطاقة المميزة (featured) */
.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05); /* جعلها أكبر قليلاً */
}

/* تنسيق شارة "الأكثر طلبًا" */
.pricing-card .badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 900;
    border: 3px solid var(--light-bg-color); /* لإعطاء فاصل عن الخلفية */
    white-space: nowrap;
}

/* إزالة التنسيقات القديمة من الهيدر والبودي */
.pricing-header, .pricing-body {
    padding: 0;
    border: none;
}

/* تنسيق عنوان البطاقة */
.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

/* تنسيق حاوية السعر */
.price-container {
    margin-bottom: 1.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-card .price span {
    font-size: 1.5rem;
    font-weight: 700;
}

/* تنسيق وصف السعر (لكل مذكرة) */
.price-description {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* تنسيق فقرة الوصف الرئيسية */
.pricing-card-description {
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1; /* هذا السطر يدفع الزر للأسفل دائمًا */
    margin-bottom: 2rem;
}

/* تنسيق زر البطاقة */
.pricing-card .pricing-btn {
    width: 100%;
    margin-top: auto; /* هذا السطر يضمن أن الزر في الأسفل دائمًا */
}

/* تعديل زر البطاقة المميزة ليكون أساسيًا */
.pricing-card.featured .pricing-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    border-color: var(--secondary-color);
}

.pricing-card.featured .pricing-btn:hover {
    background-color: transparent;
    color: var(--secondary-color) !important;
}

/* تنسيق الزر الثانوي */
.pricing-card .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.pricing-card .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light) !important;
}

/* تعديلات للشاشات الصغيرة (الجوال) */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1); /* إلغاء تكبير البطاقة المميزة في الشاشات الأصغر */
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* جعل البطاقات تحت بعضها */
    }
}
/* ======== نهاية كود تنسيق قسم الأسعار الجديد ======== */

/* ======== بداية كود تنسيق قسم الخبرة الجديد ======== */
.expertise-section {
    background-color: var(--light-bg-color); /* تغيير الخلفية لتمييز القسم */
}

.expertise-grid {
    display: grid;
    /* إنشاء شبكة مرنة تتكيف مع حجم الشاشة */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.expertise-item {
    background-color: var(--text-color-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.expertise-item i {
    font-size: 1.5rem;
    background-color: var(--secondary-color); /* لون الدائرة الذهبي */
    color: var(--primary-color); /* لون الأيقونة أزرق داكن */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* لمنع الدائرة من الانكماش */
}

.expertise-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0; /* إزالة الهامش السفلي من العنوان */
}

/* تعديل لوسائط العرض القديمة */
@media (max-width: 768px) {
    .expertise-columns { 
        /* هذه القاعدة أصبحت غير مستخدمة ولكن نتركها فارغة احتياطًا */
        flex-direction: column; 
        gap: 1rem; 
    }
}
/* ======== نهاية كود تنسيق قسم الخبرة الجديد ======== */
/* ======== بداية كود الشريط المنبثق لأيقونة الواتساب ======== */

/* 
  استهداف أيقونة الواتساب الحالية. 
  لا نحتاج لإضافة أي خصائص هنا لأنها موجودة مسبقًا، 
  فقط نتأكد من أن position هو fixed أو relative أو absolute. 
  وهو بالفعل fixed.
*/
.whatsapp-float {
  cursor: pointer;
}

/* إنشاء الشريط المنبثق باستخدام ::after */
.whatsapp-float::after {
  /* 1. تغيير النص حسب الطلب */
  content: 'أطلب مذكرتك المجانية الأولى الآن!';
  
  position: absolute;
  bottom: 50%;
  /* تم وضعه على يمين الأيقونة لأن الأيقونة على يسار الشاشة */
  left: calc(100% + 15px); 
  transform: translateY(50%);
  
  /* 2. تكييف الألوان مع هوية الموقع */
  background-color: var(--secondary-color); /* اللون الذهبي */
  color: var(--primary-color); /* اللون الأزرق الداكن */

  padding: 10px 18px;
  border-radius: 8px;
  font-size: 1rem; /* حجم خط أوضح قليلاً */
  font-weight: 700; /* خط أعرض ليتناسب مع الهوية */
  font-family: inherit; /* يرث خط Tajawal */
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none; /* لمنع التداخل مع الفأرة */
  opacity: 0;
  visibility: hidden;
  
  /* 3. استخدام نفس الأنيميشن مع تعديل بسيط في الحركة */
  animation: show-tooltip-periodically 15s 3s infinite ease-in-out;
}

/* إظهار الشريط عند مرور الفأرة فوق أيقونة الواتساب */
.whatsapp-float:hover::after {
  animation: none; /* إيقاف الأنيميشن الدوري عند الهوفر */
  opacity: 1;
  visibility: visible;
  /* حركة بسيطة عند الظهور */
  transform: translateY(50%) translateX(5px);
  transition: opacity 0.3s, transform 0.3s;
}

/* الأنيميشن الخاص بالظهور والاختفاء الدوري */
@keyframes show-tooltip-periodically {
  /* يبقى مختفياً في البداية */
  0%, 15%, 100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50%) translateX(0);
  }
  /* يظهر ويتحرك قليلاً لليمين */
  25%, 60% {
    opacity: 1;
    visibility: visible;
    transform: translateY(50%) translateX(5px);
  }
  /* يختفي مرة أخرى */
  70% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50%) translateX(0);
  }
}
/* ======== نهاية كود الشريط المنبثق لأيقونة الواتساب ======== */

/* تعديل طول الخط العمودي لآخر عنصر ليتوقف عند منتصف الدائرة */
.timeline-item:last-child::before {
    height: 45px; 
}

/*
 *  هذا الكود يحل مشكلة الهيدر الذي يغطي عناوين الأقسام
 *  عند التنقل عبر الروابط في شاشات الجوال.
*/
@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 150px; /* قيمة تقريبية لارتفاع الهيدر في وضع الجوال */
    }
}

.portfolio-section {
    background-color: var(--light-bg-color);
}

.portfolio-content {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-icon i {
    font-size: 4.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: block;
}

.portfolio-main-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.portfolio-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0 1.5rem;
}

.portfolio-sub-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.portfolio-sub-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.portfolio-content .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.footer-col ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 1rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .footer-col ul {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}