:root {
    --primary-color: #1e8ed9;
    --primary-color: #0060fd;
    --primary-dark: #014d87;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.btn-dark {
    background: #ffffff;
    color: var(--primary-color);
}

.btn-dark:hover {
    background: #001e13;
}

.btn-outline-dark {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-dark:hover {
    background: #ffffff;
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #1b1b1b;
    max-width: 700px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.navbar.scrolled {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
} */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* background-color: #007b4e; */
    /* background: radial-gradient(ellipse at center, rgba(1,58,37, 1) 0%, rgba(1, 58, 37, 0.5) 70%); */
    /* background: radial-gradient(ellipse at center, var(--primary-color) 0%, var(--primary-dark) 70%); */
    background: #fff;
    /* background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2) 0%, rgba(17, 24, 39, 1) 70%); */
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #1b1b1b;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: #d1d5db;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: linear-gradient(135deg, #374151, #001e13);
    background: linear-gradient(135deg, #12593e, #ffffff);
    border: 1px solid #4b5563;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: #d1d5db;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #063020 40%, #10553b);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 24px;
}

.about-details {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 32px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    width: fit-content;
    background: rgb(0 0 0 / 6%);
    border: 1px solid rgb(0 0 0 / 30%);
    color: var(--primary-color);
    padding: 8px 30px;
    border-radius: 10px;
    font-weight: 600;
    margin: 0 auto;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-card p {
    color: #d1d5db;
}


/* Why Halal Section */
.why-halal {
    padding: 100px 0;
    background: #001e13;
}

.why-halal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    background: rgba(251, 191, 36, 0.1);
    padding: 12px;
    border-radius: 12px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-text p {
    color: #d1d5db;
}

.stats-card {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 16px;
    padding: 40px;
}

.stats-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row span {
    color: #bfdbfe;
}

.stat-row strong {
    color: #ffffff;
    font-weight: 700;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #063020 40%, #10553b);
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(75, 85, 99, 0.5);
}

.header-cell {
    padding: 24px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
}

.halal-header {
    background: rgba(251, 191, 36, 0.1);
    color: var(--primary-color);
}

.general-header {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid rgba(75, 85, 99, 1);
}

.feature-cell,
.halal-cell,
.general-cell {
    padding: 20px;
    display: flex;
    align-items: center;
}

.feature-cell {
    font-weight: 600;
    border-right: 1px solid rgba(75, 85, 99, 1);
}

.halal-cell {
    background: rgba(251, 191, 36, 0.05);
    border-right: 1px solid rgba(75, 85, 99, 1);
    gap: 12px;
}

.general-cell {
    background: rgba(239, 68, 68, 0.05);
    gap: 12px;
}

.check-icon {
    color: #10b981;
}

.x-icon {
    color: #ef4444;
}

.warning-icon {
    color: var(--primary-dark);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.reason-card {
    background: linear-gradient(135deg, #374151, #001e13);
    /* background: var(--primary-dark); */
    border: 1px solid #4b5563;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    /* margin-bottom: 20px; */
    /* height: 100%; */
}

.reason-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.reason-card img {
    width: 100%;
    height: 100%;
    /* aspect-ratio:  9 / 16; */
    object-fit: cover;
    border-radius: 12px;
    /* margin-bottom: 24px; */
}

.reason-icon {
    background: rgba(239, 239, 239, 0.1);
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    /* border-radius: 50%; */
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #ffffff;
}

/* .reason-card:hover .reason-icon { */

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.reason-card p {
    color: #d1d5db;
}

.cta-card {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: #ffffff;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Founders Story Section */
.founders-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #063020 40%, #10553b);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.founder-image {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.image-frame {
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    transform: rotate(3deg);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.founder-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.detail-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.detail-card p {
    color: #d1d5db;
    margin-bottom: 4px;
}

.quote-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.quote-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
}

.quote-card blockquote {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.7;
}

.founder-signature {
    border-top: 1px solid rgba(75, 85, 99, 1);
    padding-top: 24px;
}

.founder-name {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.founder-title {
    color: #9ca3af;
}

/* Banner Section */
.banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: #ffffff;
}

.banner-content {
    text-align: center;
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.banner-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.banner-feature {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.banner-feature-icon {
    color: #ffffff;
    margin-bottom: 16px;
}

.banner-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.banner-feature p {
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    background: rgba(251, 191, 36, 0.1);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 12px;
    border-radius: 12px;
    color: #ffffff;
    flex-shrink: 0;
    /* flex: 1; */
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-icon .icon {
    width: 25px;
    height: 25px;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    color: #1b1b1b;
    margin-bottom: 4px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    background-color: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #000000;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #353535;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-description {
    color: #3d3d3d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    background: #001e13;
    padding: 12px;
    border-radius: 8px;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #3d3d3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid #374151;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    gap: 32px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact .contact-icon {
    color: var(--primary-color);
    background: none;
    padding: 0;
}

.footer-contact span {
    color: #3d3d3d;
}

.footer-copyright {
    color: #3d3d3d;
}

.footer-disclaimer {
    text-align: center;
    color: #3d3d3d;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(17, 24, 39, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        /* flex-direction: column; */
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .why-halal-content,
    .founder-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .comparison-table,
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .header-cell,
    .feature-cell,
    .halal-cell,
    .general-cell {
        text-align: center;
        border-right: none;
        border-bottom: 1px solid rgba(75, 85, 99, 1);
    }
}

.redison-nav {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.navs {
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 5px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 14px;
}

.navs .menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navs .menu ul li {
    margin: 0 5px;
}

.navs .menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.custom-nav-btn {
    padding: 5px;
    width: 110px;
    height: 40px;
    text-align: end;
    text-wrap: nowrap;
    display: flex;
    /* gap: 20px; */
    font-size: 12px;
    overflow: hidden;
    line-height: 1;
    align-items: center;
    justify-content: end;
    transition: all 0.3s ease-in-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo .l,
.logo .r {
    display: flex;
    align-items: center;
}

.logo .l img {
    width: 35px;
    height: auto;

}

.logo .r img {
    width: 70px;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.scrolled .navs {
    margin: 0 auto;
    max-width: 600px;
    backdrop-filter: blur(10px);

}

.scrolled .logo .r img {
    width: 0px;
    height: auto;
}

.scrolled .custom-nav-btn {
    width: 40px;
    padding-right: 10px;
}

.info-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;

}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.glass-info {
    position: absolute;
    top: 40%;
    left: 50px;
    right: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 150px;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
    animation: hoverAnim 2s ease-in-out infinite;
}

@keyframes hoverAnim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.glass-info .ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 10px; */
}

.glass-info svg {
    width: 30px;
    height: 30px;
    /* font-size: 50px; */
    color: #ffffff;
    /* margin-bottom: 10px; */
}

.banner {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.25)), url('../img/uae.jpg') no-repeat center center/cover;
}



.bgc-nav {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.bgc-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

.bgc-left,
.bgc-right {
    height: 70px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.bgc-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bgc-nav a {
    /* text-decoration: none; */
    color: #000;
    font-weight: 500;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    background-color: rgb(239, 239, 239);
    padding: 5px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;

}

.hamburger svg {
    width: 30px;
    height: 30px;
}

.hamburger .cross {
    display: none;
}

.hamburger .lines {
    display: flex;
    flex-direction: column;
}





.logo img {
    width: 160px;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.bgc-nav .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-width: 400px;
    height: calc(100vh - 80px);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 20px;
    padding-left: 50px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    transform: translateX(-150%);
    transition: transform 0.3s ease-in-out;
}

.bgc-nav .nav-menu .link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.bgc-nav .nav-menu .link:hover {
    color: var(--primary-color);
}

.bgc-nav .nav-menu .sub-link {
    font-size: 16px;
    color: #555;
    margin-left: 20px;
}

.bgc-nav .nav-menu .nav-tag {
    font-size: 18px;
    font-weight: 500;
    /* color: var(--primary-color); */
    margin-bottom: 0px;
}

.bgc-nav .nav-menu .nav-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease-in-out;
}


.bgc-nav.active .hamburger .lines {
    display: none;
}

.bgc-nav.active .hamburger .cross {
    display: flex;
}

.bgc-nav.active .bgc-container {
    max-width: 100%;
}

.bgc-nav.active .bgc-left,
.bgc-nav.active .bgc-right {
    box-shadow: none;
}

.bgc-nav.active {
    top: 0;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.bgc-nav.active .nav-menu {
    transform: translateX(0);
}


.tab-section {
    background-color: #fff;
    padding-bottom: 80px;
}

.tab {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: perspective(1200px) scale(1);
}

.tab img {
    max-width: 950px;
    width: 100%;
    height: auto;
}

.new-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;

    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.clip-card {
    position: relative;
    text-decoration: none;
}

.clip-card-content {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;

}

.clip-card-content h2 {
    /* font-size: 1.5rem; */
    margin-bottom: 15px;
    max-width: 70%;
    font-size: 24px;
    line-height: 30px;
}

.clip-card-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.clip-card-icon {
    position: absolute;
    top: 0px;
    right: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease-in-out;

}

.clip-icon {
    color: #ffffff;
    /* margin-bottom: 15; */
}

.clip-card:hover .clip-card-icon {
    transform: translateY(-10px);
}

.big-banner {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    padding: 0 80px;
    color: #fff;
    height: 600px;
    overflow-y: hidden;
    /* margin: 50px 0; */
}

.big-banner .left {
    width: 50%;
    flex-shrink: 0;
    /* flex: 1; */
    padding: 20px;
}

.big-banner .left p.tag {
    color: #fff;
    margin: 0;
}

.big-banner .left h2 {
    font-size: 2rem;
}

.big-banner .left p.section-subtitle {
    font-size: 1.25rem;
    color: rgb(241, 241, 241);
    margin: 0;
    margin-bottom: 40px;
}

.big-banner .right .info-image {
    margin: 0;
    border-radius: 0;
    padding: 0;
    height: 100%;
}

.big-banner .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.about-row {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.about-box {
    /* flex: 1; */
    width: 45%;
}

.about-box p {
    font-size: 18px;
    color: #1b1b1b;
}

.about-row .right {
    width: 50%;
}

.mission {
    border-radius: 10px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.mission-top {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100px;
    text-align: center;
}

.mission-top p {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.mission-content {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 30px 20px;
    border-radius: 10px;
    color: #fff;
}

.mission-content p {
    line-height: 1.5;
}

.mission-content p span {
    display: inline-block;
    width: 100px;
}

.head-ban {
    /* margin-top: 100px; */
    background-image: url('../img/bgl.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #181818;
}

.head-ban h1 {
    font-size: 4rem;
    /* margin-bottom: 20px; */
}

.head-ban p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: 50px 0;
}

.rounded {
    border-radius: 20px;
}

.team .member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin: 0 10px;
    /* filter: blur(5px); */
    /* transform: scale(0.9); */

}

.team .member img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team .member .content {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    padding: 10px;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin: 0 10px;
}

.member.slick-current {
    /* transform: scale(1); */
    /* filter: none; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); */
}

.slick-track {
    padding: 20px 0;
}

.clip-card-content {
    padding: 20px;
}

.clip-card-content p {
    /* margin: 0; */
}

.ic {
    grid-column: 2;
    /* places it in the center column */
}

.service-head {
    background-color: rgb(234, 244, 255);
    padding-top: 130px;
    padding-bottom: 50px;
}

.service-head h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-head p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 20px;
}

.service-head img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-top: 20px;
}

.includes {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.includes li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.includes li .icon {
    margin-right: 10px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    padding: 5px;
    /* color: #007bff; */
}

.step {
    font-size: 32px;
}

.faq-section {
    max-width: 650px;
    height: 100%;
    margin: 2em auto;
    padding: 2em;
    background: #f6f8fa;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 2em;
    color: #24292f;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.faq-item {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(36, 41, 47, 0.06);
    overflow: hidden;
}

.faq-question {
    font-family: 'Inter', sans-serif;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    padding: 1em 1.2em;
    font-size: 1.1em;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
    background: #e2e8f0;
}

.faq-toggle-icon {
    font-size: 1.3em;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1em 1.2em 1.5em 1.2em;
    color: #444;
    font-size: 1em;
    border-top: 1px solid #e2e8f0;
    background: #f9fafb;
    font-family: 'Inter', sans-serif;

    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

        .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 15px;
        }

        .col-md-6 img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .steps .reason-icon {
            background: rgba(239, 239, 239, 0.1);
            /* background: #fff; */
            padding: 0;
            border-radius: 12px;
            width: 100%;
            height: fit-content;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .steps .reason-card {
            padding: 10px;
        }

        .popup{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .popup .box {
            position: relative;
            background: #fff;
            width: 80%;
            max-width: 1000px;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .popup .image {
            width: 50%;
            background-image: url('img/poster.png');
            background-size: cover;
            background-position: center;
        }
        .popup .image img {
            width: 100%;
            height: auto;
        }
        .popup .content {
            padding: 20px;
            width: 50%;
        }
        .popup .content h2 {
            margin-bottom: 10px;
            font-size: 24px;
            color: #333;
        }
        .popup .content p {
            margin-bottom: 20px;
            color: #666;
        }
        .popup .content form {
            display: flex;
            flex-direction: column;
        }
        .popup .content form .form-group {
            margin-bottom: 15px;
        }
        .popup .content form .form-group label {
            margin-bottom: 5px;
            font-weight: bold;
        }
        .popup .content form .form-group input,
        .popup .content form .form-group textarea {
            width: 100%;
            padding: 10px;
            color: #000;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .popup .content form .form-group textarea {
            resize: vertical;
        }
        .popup .content form button {
            padding: 10px;
            background: #007bff;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .popup .content form button:hover {
            background: #0056b3;
        }
        .popup .content form button:focus {
            outline: none;
        }

        .popup .close {
            position: absolute;
            top: 2px;
            right: 10px;
            background: transparent;
            border: none;
            font-size: 24px;
            color: #333;

            cursor: pointer;
        }


.m-none {
    display: block;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {

    

    .head-ban h1{
        font-size: 2.5rem;
        line-height: 1.5;
    }
    .head-ban p{
        font-size: 16px;
    }
    body{
        overflow-x: hidden !important;
    }
    .bgc-container{
        gap: 20px;
    }
    .bgc-left{
        gap: 8px;
        /* flex: 5; */
    }
    .bgc-right{
        display: block;
        width: fit-content;
        min-width: 0;
    }
    
    .m-none{
        display: none;
    }
    .row{
        flex-wrap: wrap;
    }
    .col-md-6{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero {
    min-height: 135vh;
    }
    .hero .container{
        margin-top: -50px !important;
    }

    .grid-2{
        grid-template-columns: 1fr;
    }
    .big-banner {
        flex-direction: column;
        height: auto;
        padding: 40px 10px;
        text-align: center;
    }
    .big-banner .left,
    .big-banner .right {
        width: 100%;
        padding: 10px 0;

    }
    .big-banner .left p.tag{
        margin: 0 auto;
        margin-bottom: 10px;
    }
    .big-banner .left h2{
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .big-banner .left p.section-subtitle{
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .about-row{
        flex-direction: column;
        text-align: center;
    }
    .about-row .about-box,
    .about-row .right {
        width: 100%;
    }
    .about-box p{
        font-size: 14px;
    }
    .about-box .buttons{
        display: none;
    }
    .new-services{
        display: flex;
        flex-direction: column;
    }

    .about-box .grid-2{
        display: flex;
        flex-direction: column;
    }

    .about-row .image-info .info{
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
    }
    .sub-menu .menu-items{
        flex-wrap: wrap;
    }
    .sub-menu .menu-item{
        transition: all 0.3s ease-in-out;
        width: 48% !important;
    }
    .sub-menu .menu-item:last-child{
        width: 100% !important;
        aspect-ratio: 1/1;
    }

    .sub-menu .menu-item .content{
        padding: 5px !important;
        margin: 0 5px !important;
        bottom: -133px ;
    }

    .sub-menu .menu-item h3{
        font-size: 18px !important;
    }
    .sub-menu .menu-item p{
        font-size: 14px !important;
    }


    .sub-menu.active{
        top: 0px !important;
        padding: 0;
        background-color: #fff;
        padding: 12px 5px;
    }
    .sub-menu.active .container{
        padding: 0;
    }

    .sub-menu.active .menu-items {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 10px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.sub-menu.active .content h3 {
    font-size: 18px;
}

.sub-menu.active .menu-item{
    width: 33% !important;
}

.faq-section{
    padding: 10px;
}

.service-head h1{
    font-size: 28px;
}
.service-head p{
    font-size: 16px;
}

.banner{
    background-color: linear-gradient(1deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.25)), url('../img/uae.jpg') no-repeat center center/cover;
    padding:35px 0;
}

.banner-content h2{
    font-size: 28px;
}
.banner-content p{
    font-size: 14px;
    line-height: 1.4;
}

.banner-buttons{
    gap: 10px;
    margin-bottom: 10px;
}
.banner-buttons .btn{
    padding: 10px 15px;
    font-size: 14px;
}

}

@media (max-width:358px) {
.logo img{
        width: 110px;
    }
}

