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

:root {
    --bs-btn-bg: #021773;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
}

/* RTL Overrides for Bootstrap */
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 1rem;
}

/* Search Component Set */
.search-component {
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 10px;

  width: 236px;
  height: 48px;

  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 6px;

  flex: none;
  flex-grow: 0;
  margin: 0 10px;
}

/* Frame 550 */
.search-frame {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  width: 212px;
  height: 24px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

/* Search Icon using Font Awesome */
.search-icon {
  margin: 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;

  flex: none;
  order: 0;
  flex-grow: 0;
}

.search-icon i {
  font-size: 16px;
  color: #1A1A1A;
}

/* Text Placeholder */
.search-component input {
  -webkit-font-smoothing: subpixel-antialiased;
  margin: 0 auto;
  width: 80%;
  height: 18px;
  font-family: 'MadaniArabic-Regular', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-transform: capitalize;
  color: #1A1A1A;
  opacity: 0.5;
  flex: none;
  box-shadow: none;
  border: none;
  text-align: right;
}


.me-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

.me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

.text-md-end {
    text-align: left !important;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 62vh;
    display: flex;
    align-items: center;
}



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

.hero-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #021773;
}


.hero-description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    width: 180px;
    height: 48px;
}


.custom-hero-style {
    background-color: #ffffff;
    box-shadow: -89px 0px 69px #fff;
    position: relative;
    z-index: 999;
    margin-left: -100px;
    height: 188% !important;
    margin-top: -155px;
    border-radius: 50%;
}


/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* About Section */
.about-section {
    background: white;
    padding: 5rem 0;
}

.about-content {
    padding-right: 2rem;
}

.about-content .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}


textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-description {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Newsletter Form */
.newsletter-form .input-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    background: #fff;
    color: #333;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-input:focus {
    box-shadow: none;
    border: none;
}

.newsletter-btn {
    background: #3b82f6;
    border: none;
    padding: 0.75rem 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #2563eb;
    transform: none;
    box-shadow: none;
}

.newsletter-btn i {
    font-size: 0.9rem;
}

/* Legal Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-link:hover {
    color: #fff;
    text-decoration: none;
}

/* Company Info */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    max-width: 242px;

}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.company-tagline {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin: 0.25rem 0;
}

.company-name-en {
    font-size: 0.85rem;
    color: #d1d5db;
    margin: 0;
    font-weight: 500;
}

.company-description {
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 1.5rem 0;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.social-link:hover {
    color: #fff;
    text-decoration: none;
}

.social-divider {
    color: #6b7280;
    font-size: 0.8rem;
}

footer.footer {
    padding: 64px 120px;
}
/* Footer Divider */
.footer-divider {
    border-color: #374151;
    margin: 2rem 0 1rem;
    opacity: 0.3;
}

/* Copyright */
.copyright-text {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-heading {
        font-size: 1.2rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-newsletter,
    .footer-legal,
    .footer-company {
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* Buttons */
.btn {
    border-radius: 10px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
        margin: 0;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .features-section,
    .services-section,
    .about-section,
    .contact-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-section {
        padding-top: 100px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.service-card,
.about-content,
.contact-form {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Additional Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}



/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

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

/* Form Focus Effects */
.form-control:focus {box-shadow: none;}


/* Button Pulse Effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.btn-primary {
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    animation: none;
}

/* Why Choose Us Section */
.why-choose-section {
    background: #f8f9fa;
    padding: 60px 120px;
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e3a8a;
    text-align: center;
}

.feature-block {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}


.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1e3a8a;
}

.feature-icon i {
    position: relative;
    z-index: 2;
}

/* Stars for accredited experts */
.stars {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 0.8rem;
    color: #fbbf24;
}

/* Lock icon for secure payment */
.lock-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1rem;
    color: #10b981;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

/* Dots for diverse services */
.dots {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.dots span {
    width: 4px;
    height: 4px;
    background: #6b7280;
    border-radius: 50%;
}

/* Check icon for real evaluations */
.check-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 1rem;
    color: #10b981;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

/* Arrow and user icons for direct communication */
.arrow-icon {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #6b7280;
}

.user-icon {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #1e3a8a;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .feature-block {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .why-choose-section .section-title {
        font-size: 1.8rem;
    }
    
    .feature-block {
        padding: 1.5rem 1rem;
    }
}


[class*="btn-"] {
    background: linear-gradient(135deg, #021773, #021773);

}

[class*="btn-outlin"] {
    border-color: #021773  !important;
    color: #021773  !important;
    background: #fff !important;
}

.book-btn {
    width: 100%;
    background: linear-gradient(135deg, #021773, #021773);
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #021773;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .consultants-section {
        padding: 3rem 0;
    }
    
    .consultants-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .consultant-card {
        margin-bottom: 1rem;
    }
    
    .consultant-image {
        height: 200px;
    }
    
    .consultant-info {
        padding: 1.25rem;
    }
    
    .consultant-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .consultants-section .section-title {
        font-size: 1.8rem;
    }
    
    .consultant-image {
        height: 180px;
    }
    
    .consultant-info {
        padding: 1rem;
    }
    
    .rating-badge {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.6rem;
    }
    
    .rating-badge i,
    .rating-badge span {
        font-size: 0.8rem;
    }
}

/* Browse Consultants by Specialization Section */
.specialization-section {
    background: #ffffff;
    padding: 5rem 0;
}

.specialization-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e3a8a;
    text-align: center;
    line-height: 1.3;
}

.specialization-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.specialization-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #E6EAFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

.specialization-card:hover .specialization-icon {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
}

/* Multiple icons in one card */
.specialization-icon i:not(:first-child) {
    position: absolute;
    font-size: 1rem;
}

.specialization-icon i:first-child {
    font-size: 1.8rem;
}

/* Engineering icons */
.specialization-icon .fa-drafting-compass {
    font-size: 1.5rem;
    color: #fbbf24;
}

.specialization-icon .fa-ruler-combined {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 1rem;
    color: #6b7280;
}

/* Administrative icons */
.specialization-icon .fa-user-tie {
    font-size: 1.5rem;
    color: #1e3a8a;
}

.specialization-icon .fa-arrow-up {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    color: #ef4444;
}

/* Educational icons */
.specialization-icon .fa-book {
    font-size: 1.5rem;
    color: #3b82f6;
}

.specialization-icon .fa-graduation-cap {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 0.8rem;
    color: #fbbf24;
}

/* Financial icons */
.specialization-icon .fa-briefcase {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.specialization-icon .fa-dollar-sign {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    color: #10b981;
}

.specialization-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.3;
}


















  .advisors-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0;
    gap: 40px;
    width: 1200px;
    height: 679px;
  }

.advisors-section > .row {
    justify-content: center;
    gap: 40px;
}

  .section-title {
    width: 1200px;
    font-family: 'MadaniArabic-Medium', sans-serif;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    text-transform: capitalize;
    color: #021773;
  }

  .advisors-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    width: 1200px;
  }

  .advisor-card {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 16px;
    width: 282px;
    height: 471px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    background-color: #fff;
  }

  .card-rating {
    position: absolute;
    top: 36px;
    left: 36px;
    display: flex;
    align-items: center;
    padding: 2px 4px;
    gap: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    font-size: 14px;
    color: #1A1A1A;
    z-index: 3;
  }

  .card-rating i {
    color: #FBAF00;
    font-size: 14px;
  }

  .advisor-image {
    width: 234px;
    height: 234px;
    background-color: #EFEFEF;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    z-index: 0;
  }

  .advisor-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 234px;
    z-index: 1;
  }

  .advisor-name {
    font-family: 'MadaniArabic-Medium', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #1A1A1A;
    text-align: center;
    text-transform: capitalize;
  }

  .advisor-field, .advisor-price {
    font-family: 'MadaniArabic-Medium', sans-serif;
    font-size: 18px;
    line-height: 27px;
    color: #4D4D4D;
    text-align: center;
    text-transform: capitalize;
  }

  .advisor-button {
    width: 234px;
    height: 48px;
    background-color: #021773;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'MadaniArabic-Medium', sans-serif;
    font-size: 14px;
    line-height: 21px;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    z-index: 2;
  }














  .why-amrtam-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 120px;
    gap: 40px;
    background: #FAFAFA;
    width: 100%;
    max-width: 1440px;
    margin: auto;
  }

  .why-title {
    font-family: 'MadaniArabic-Medium', sans-serif;
    font-size: 32px;
    line-height: 48px;
    color: #021773;
    text-align: center;
    text-transform: capitalize;
  }

  .why-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    gap: 16px;
    width: 384px;
    height: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }

  .why-icon {
    width: 80px;
    height: 80px;
    background-color: #1A1A1A;
    border-radius: 50%;
    transform: rotate(180deg);
  }


  .why-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .why-card-title {
    font-family: 'MadaniArabic-Medium', sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    margin: 0;
  }

  .why-card-desc {
    font-family: 'MadaniArabic-Regular', sans-serif;
    font-size: 14px;
    color: #4D4D4D;
    line-height: 21px;
    margin: 0;
  }







   .amrtam-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 1200px;
    height: 466px;
  }


   .amrtam-benefits>.row {
    justify-content: center;
    gap: 40px;
   }

  .benefits-title {
    width: 1200px;
    height: 48px;
    font-family: 'MadaniArabic-Medium', sans-serif;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    text-transform: capitalize;
    color: #021773;
  }

  .benefit-cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 1200px;
    height: 258px;
  }

  .benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 24px;
    width: 384px;
    height: 258px;
    background: #FFFFFF;
    box-shadow: 0px 5px 15px rgba(2, 23, 115, 0.15);
    border-radius: 8px;
  }


  .benefit-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 336px;
    height: 94px;
  }

  .benefit-heading {
    font-family: 'MadaniArabic-Medium', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #1A1A1A;
    text-align: right;
    text-transform: capitalize;
  }

  .benefit-desc {
    font-family: 'MadaniArabic-Regular', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4D4D4D;
    text-align: right;
    text-transform: capitalize;
  }



/* Responsive adjustments */
@media (max-width: 768px) {
    .specialization-section {
        padding: 3rem 0;
    }
    
    .specialization-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .specialization-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .specialization-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .specialization-icon i:first-child {
        font-size: 1.3rem;
    }
    
    .specialization-name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .specialization-section .section-title {
        font-size: 1.8rem;
    }
    
    .specialization-card {
        padding: 1.25rem 0.75rem;
    }
    
    .specialization-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .specialization-icon i:first-child {
        font-size: 1.1rem;
    }
}







