.header-area.style-four.sticky-on .navbar::after {
    height: 100px;
}
@media only screen and (min-width: 1400px) {
    .header-area.style-two .navbar .navbar-brand {
        margin-right: 220px;
    }
}

.header-area.style-four .navbar-nav li > a:hover, .header-area.style-four .navbar-nav li > a:focus {
    color: black;
}
.header-area.style-four .navbar-nav li.touria-dd:hover > a, .header-area.style-four .navbar-nav li.touria-dd:focus > a {
    color: black;
}
.header-area.style-four .navbar-nav li .touria-dd-menu li > a:hover, .header-area.style-four .navbar-nav li .touria-dd-menu li > a:focus {
    color: black;
}

.header-area.style-two .social-nav.style-two a:hover, .header-area.style-two .social-nav.style-two a:focus {
    background-color: black;
    border-color: black;
}

.header-area.style-two.sticky-on .navbar {
    height: 100px;
}

@media only screen and (min-width: 1400px) {
    .hero-content h2 {
        font-size: 60px;
    }
}



.top-catagory-card a img {
     border-radius: unset;
}
.top-catagory-card {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-catagory-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}


.top-catagory-card:hover img {
    transform: scale(1.05);
}

.top-catagory-card h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-catagory-card img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .top-catagory-card img {
        height: 130px;
    }
}


.team-card img {
    height: 200px;
}


.footer-card .card-title::before, .footer-card .card-title::after {
    background: #3E5B87 !important;
}
.footer-wrapper.theme-two .footer-card .footer-nav li a:hover, .footer-wrapper.theme-two .footer-card .footer-nav li a:focus {
    color:#3E5B87;
}
.blur-bg {
    position: relative;
    background-image: url('../images/umrah-main.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    overflow: hidden;
}

/* Blur layer */
.blur-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: inherit;
    background-repeat: inherit;
    background-position: inherit;
    filter: blur(3px);     /* adjust blur level */
    transform: scale(1.1); /* prevents edges from showing */
    z-index: -1;
}
/* Fix navbar background when fixed */
.site-header.is-fixed {
    background-color: white !important;
}

/* Optional: rounded bottom corners */
.nav1 {
    border-radius: 0 0 30px 30px;
}
.explore{
    color:white !important;
}
.headss{
    color:white !important;
}
.back{
    background: green !important;
    color:white !important;
}
.images{
    height:200px;
}
.madina{
    width:600px;
    height:600px;
}
.back-image {
    background-image:
            linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
            url('../images/view-clouds.avif');
    background-size: cover;
    background-position: left;
}



@media screen and (max-width: 767px) {
    .madina{
        width:410px;
        height:410px;
    }
    .groups{
        height:379px;
    }
    .logof{
        max-width:45%;
    }
    .logoh{
        max-width:74%;
    }

}
.process-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #1a2980, #26d0ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.process-title span {
    color: #ff9d00;
}

.process-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.title-separator {
    height: 6px;
    width: 180px;
    background: linear-gradient(90deg, #ff9d00, #ff6b00);
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
}

.title-separator::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #ff9d00;
    border-radius: 50%;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* Process Cards Layout */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.process-card {
    background-color: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-1 {
    border-color: #3a7bd5;
}

.card-2 {
    border-color: #00d2ff;
}

.card-3 {
    border-color: #4CAF50;
}

.card-4 {
    border-color: #FF9800;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff, #4CAF50, #FF9800);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.card-1 .card-icon {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
}

.card-2 .card-icon {
    background: linear-gradient(135deg, #00d2ff, #4CAF50);
    color: white;
}

.card-3 .card-icon {
    background: linear-gradient(135deg, #4CAF50, #FF9800);
    color: white;
}

.card-4 .card-icon {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

.card-description {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.step-indicator {
    font-weight: 600;
    color: #888;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: #aaa;
    transition: color 0.3s;
}

.process-card:hover .step-arrow {
    color: #3a7bd5;
    transform: translateX(5px);
}

/* Decorative elements */
.process-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.decoration-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    transition: all 0.3s;
}

.dot.active {
    background-color: #3a7bd5;
    transform: scale(1.3);
}

.dot:nth-child(2).active {
    background-color: #00d2ff;
}

.dot:nth-child(3).active {
    background-color: #4CAF50;
}

.dot:nth-child(4).active {
    background-color: #FF9800;
}

/* Call to action */
.process-cta {
    text-align: center;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    padding: 50px 30px;
    border-radius: 20px;
    color: white;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(26, 41, 128, 0.2);
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #1a2980;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .process-title {
        font-size: 3rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-title {
        font-size: 2.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-card {
        padding: 25px 20px;
    }

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

@media (max-width: 480px) {
    .process-title {
        font-size: 2rem;
    }

    .process-subtitle {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
}

/* Contact Cards Container */
.contact-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

/* Contact Card Styling */
.contact-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 300px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
    flex-shrink: 0;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Card Color Themes */
.card-phone {
    border-color: #3b82f6;
}

.card-email {
    border-color: #10b981;
}

.card-location {
    border-color: #f59e0b;
}

.card-hours {
    border-color: #8b5cf6;
}

/* Card Background Effects */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

/* Card Icon Styling */
.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.card-phone .card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.card-email .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.card-location .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.card-hours .card-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Card Content */
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.card-info {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    text-decoration: none;
    color: #3b82f6;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 20px;
    border-radius: 50px;
    background-color: rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.card-link:hover {
    background-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-3px);
}

/* Card Specific Styling */
.card-email .card-link {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
}

.card-email .card-link:hover {
    background-color: rgba(16, 185, 129, 0.2);
}

.card-location .card-link {
    color: #f59e0b;
    background-color: rgba(245, 158, 11, 0.1);
}

.card-location .card-link:hover {
    background-color: rgba(245, 158, 11, 0.2);
}

.card-hours .card-link {
    color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.1);
}

.card-hours .card-link:hover {
    background-color: rgba(139, 92, 246, 0.2);
}

/* Contact Details */
.contact-detail {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 8px;
}

.highlight {
    font-weight: 700;
    color: #1e293b;
}

/* Card Footer */
.card-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: #94a3b8;
}

/* Responsive Adjustments */
@media (max-width: 1300px) {
    .contact-cards {
        flex-wrap: wrap;
    }

    .contact-card {
        width: calc(50% - 30px);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 400px;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

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

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

/* Navigation Dots */
.nav-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #3b82f6;
    transform: scale(1.3);
}

/* Footer */
.footer-note {
    text-align: center;
    color: #64748b;
    margin-top: 40px;
    font-size: 1rem;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    width: 100%;
    max-width: 800px;
}


button.scroltop {
        bottom: 88px;
    right: 30px;
    border-radius: 20px;
    padding: 5px;
}
.sc-1au8ryl-0{
    display: none;
}
.blur-bg::before {
    filter: blur(3px);
    background: #0000007a;
}
