       /* background-image: 
    radial-gradient(circle at 5% 10%, rgba(212, 167, 79, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 95% 90%, rgba(212, 167, 79, 0.04) 0%, transparent 40%);
     
      */
     
     
/* No text select */


/* No image drag */
 img{
    pointer-events: none !important;
    -webkit-user-drag: none !important;
} 
     
     /* ---------- UNIQUE CSS: Premium Islamic Luxury Theme ---------- */

        :root {
            --primary-emerald: #0E4B36;
            --secondary-green: #166534;
            --accent-gold: #D4A74F;
            --bg-warm-ivory: #f5f9f6;
            --card-cream: #F7F4EA;
            --text-dark: #1D2B22;
            --border-mint: #D8E2D0;
            --font-heading: 'Cinzel', serif;
            --font-body: 'Inter', sans-serif;
            --shadow-soft: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
            --shadow-gold: 0 18px 28px -8px rgba(212, 167, 79, 0.25);
            --transition-smooth: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
--gold-gradient: linear-gradient(
    105deg,
    #E0B85C 0%,
    #C9972E 45%,
    #A87412 100%
);

            --gold-gradient-hover: linear-gradient(105deg, #e2bb6e 0%, #c79b44 100%);
            --border-radius-card: 28px;
            --border-radius-btn: 40px;
            --border-radius-sm: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-warm-ivory);
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.5;
            scroll-behavior: smooth;
            overflow-x: hidden;
                 user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none; 
        }

/* Main Heading */
.heading{
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: var(--primary-emerald);
    margin-bottom: 18px;
    text-transform: capitalize;
}


/* Section Heading Style */
.heading span{
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Sub Heading */
.subheading{
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.8;
    color: #4B5D52;
    max-width: 750px;
    margin: 0 auto 20px;
    letter-spacing: 0.2px;
}

/* Paragraph Text */
.paragraph{
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 18px;
}

/* Small Paragraph */
.paragraph-sm{
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Premium Button */
.buttoon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 34px;
    border: none;
    outline: none;
    cursor: pointer;

    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;

    color: #fff;
    background: var(--gold-gradient);

    border-radius: var(--border-radius-btn);

    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);

    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect */
.buttoon:hover{
    transform: translateY(-4px);
    background: var(--gold-gradient-hover);
    box-shadow: 0 22px 35px -10px rgba(212, 167, 79, 0.35);
    color: #fff;
}

/* Active Click */
.buttoon:active{
    transform: scale(0.97);
}

/* Emerald Button Variant */
.buttoon-green{
    background: linear-gradient(135deg, #0E4B36, #166534);
    box-shadow: var(--shadow-soft);
}

.buttoon-green:hover{
    background: linear-gradient(135deg, #166534, #0E4B36);
}

/* Outline Button */
.buttoon-outline{
    background: transparent;
    color: var(--primary-emerald);
    border: 2px solid var(--accent-gold);
    box-shadow: none;
}

.buttoon-outline:hover{
    background: var(--gold-gradient);
    color: #fff;
}

/* Card Style */
.premium-card{
    background: var(--card-cream);
    border-radius: var(--border-radius-card);
    padding: 35px;
    border: 1px solid var(--border-mint);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.premium-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.08);
}

/* Section Spacing */
.section-padding{
    padding: 100px 0;
}

/* Container Width
.custom-container{
    width: min(1200px, 92%);
    margin-inline: auto;
} */

/* Gold Divider */
.gold-divider{
    width: 90px;
    height: 4px;
    border-radius: 50px;
    background: var(--gold-gradient);
    margin: 18px auto 28px;
}

/* Badge */
.premium-badge{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;

    background: rgba(212, 167, 79, 0.12);
    color: var(--accent-gold);

    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 768px){

    .heading{
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .subheading{
        font-size: 1rem;
        line-height: 1.7;
    }

    .paragraph{
        font-size: 0.96rem;
    }

    .buttoon{
        width: 100%;
        padding: 15px 20px;
    }

    .premium-card{
        padding: 24px;
    }

    .section-padding{
        padding: 70px 0;
    }
}

        /* =========================================
           TOPBAR STYLES
        ========================================= */
        .topbar {
            background: var(--primary-emerald);
            padding: 0;
            border-bottom: 2px solid var(--accent-gold);
            position: relative;
            /* margin-bottom: -25px; */
        }

        .topbar-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 45px;
            flex-wrap: wrap;
        }

        /* Left Part - 4 Links */
        .topbar-left {
            display: flex;
            align-items: center;
            gap: 0;
            flex-shrink: 0;
        }

        .topbar-left .topbar-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 12px 18px;
            color: #fff;
            text-decoration: none;
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: var(--transition-smooth);
            position: relative;
            white-space: nowrap;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
        }

        .topbar-left .topbar-link:last-child {
            border-right: none;
        }

        .topbar-left .topbar-link i {
            font-size: 0.85rem;
            color: var(--accent-gold);
            transition: var(--transition-smooth);
        }

        .topbar-left .topbar-link:hover {
            background: rgba(212, 167, 79, 0.15);
            color: var(--accent-gold);
        }

        .topbar-left .topbar-link:hover i {
            color: #fff;
        }

        /* Right Part - Marquee */
        .topbar-right {
            flex: 1;
            min-width: 300px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.2);
            padding: 0;
            display: flex;
            align-items: center;
            border-left: 2px solid var(--accent-gold);
        }

        .topbar-right .marquee-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 0 15px;
        }

        .topbar-right marquee {
            color: #fff;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.4px;
            padding: 12px 0;
            line-height: 1.4;
        }

        .topbar-right marquee i {
            color: var(--accent-gold);
            margin: 0 5px;
            font-size: 0.8rem;
        }

        /* Marquee Icon Separator */
        .marquee-separator {
            display: inline-block;
            margin: 0 20px;
            color: var(--accent-gold);
            font-size: 0.7rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .topbar-wrapper {
                flex-direction: column;
                min-height: auto;
            }

            .topbar-left {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .topbar-left .topbar-link {
                padding: 10px 14px;
                font-size: 0.8rem;
                gap: 5px;
            }

            .topbar-right {
                width: 100%;
                border-left: none;
                border-top: 1px solid rgba(212, 167, 79, 0.3);
            }

            .topbar-right marquee {
                font-size: 0.82rem;
                padding: 10px 0;
            }
        }

        @media (max-width: 576px) {
            .topbar-left {
                gap: 0;
            }

            .topbar-left .topbar-link {
                padding: 8px 10px;
                font-size: 0.72rem;
                gap: 4px;
                border-right: 1px solid rgba(255, 255, 255, 0.1);
            }

            .topbar-left .topbar-link i {
                font-size: 0.7rem;
            }

            .topbar-right marquee {
                font-size: 0.75rem;
                padding: 8px 0;
            }
        }


        /* =========================================
   MIDDLEBAR STYLES (Grid System)
========================================= */
.middlebar {
    background: linear-gradient(180deg, var(--bg-warm-ivory) 0%, var(--card-cream) 100%);
    padding: 5px 10px;
    /* border-bottom: 3px solid var(--accent-gold); */
    position: relative;
/* background: red; */
}

.middlebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* height: 2px; */
    background: var(--gold-gradient);
    opacity: 0.4;
}

/* Grid Container */
.middlebar-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

/* Grid Items */
.middlebar-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.middlebar-left {
    justify-content: flex-end;
}

.middlebar-right {
    justify-content: flex-start;
}

.middlebar-center {
    justify-content: center;
}

/* Rectangular Banners */
.banner-rect {
    /* width: 350px;
    height: 200px; */
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--border-mint);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    background: #fff;
    cursor: pointer;
}

.banner-rect img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: var(--transition-smooth);
}

/* Gold overlay at bottom */
.banner-rect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(14, 75, 54, 0.7), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Glow border on hover */
.banner-rect::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    z-index: 2;
    pointer-events: none;
}

.banner-rect:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.banner-rect:hover::before {
    border-color: var(--accent-gold);
    inset: -4px;
    border-radius: 20px;
}

.banner-rect:hover img {
    transform: scale(1.08);
}

/* Center Square Logo */
.logo-square {
    width: 170px;
    height: 170px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    border: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
    background: #fff;
    z-index: 5;
}

.logo-square img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: var(--transition-smooth);
}

/* Pulsing gold glow */
.logo-square::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 22px;
    border: 2px solid var(--accent-gold);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: -1;
}

.logo-square:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 45px -10px rgba(212, 167, 79, 0.5);
}

.logo-square:hover::before {
    opacity: 1;
    animation: logoGlow 1.5s ease-in-out infinite;
}

.logo-square:hover img {
    transform: scale(1.1);
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 167, 79, 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(212, 167, 79, 0.7);
    }
}

/* =========================================
   RESPONSIVE GRID
========================================= */

/* Tablet & Mobile - Center & Right hide, Left full width */
@media (max-width: 992px) {
    .middlebar {
        padding: 0;
    }

    .middlebar-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Hide Center & Right */
    .middlebar-center,
    .middlebar-right {
        display: none;
    }

    /* Left image full width, no side space */
    .middlebar-left {
        grid-column: 1 / -1;
        grid-row: 1;
        justify-content: center;
        width: 100%;
    }

    .banner-full {
        width: 100%;
        height: 200px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }

    .banner-full:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--border-mint);
    }

    .banner-full::before {
        display: none;
    }

    .banner-full img {
        object-fit: fill;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .banner-full {
        height: 160px;
         object-fit: fill;
    }
}



/* =========================================
   NAVBAR STYLES (RESPONSIVE WITH SIDEBAR)
========================================= */
.navbar-custom {
    background: var(--primary-emerald);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 3px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75px;
    gap: 25px;
    position: relative;
}

/* ========== LEFT SIDE - BRAND ========== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 167, 79, 0.3);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.brand-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.brand-logo:hover {
    box-shadow: 0 0 30px rgba(212, 167, 79, 0.6);
    transform: rotate(5deg);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.brand-name a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.brand-name a:hover {
    color: var(--accent-gold);
}

.brand-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* ========== RIGHT SIDE - NAV MENU (DESKTOP) ========== */
.navbar-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: static;
}

/* Nav Links */
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    border-radius: 10px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    background: rgba(212, 167, 79, 0.1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Dropdown Toggle */
.dropdown-toggle-mega i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.dropdown-toggle-mega.active {
    color: var(--accent-gold) !important;
    background: rgba(212, 167, 79, 0.1) !important;
}

.dropdown-toggle-mega.active::after {
    width: 60% !important;
}

.dropdown-toggle-mega.active i {
    transform: rotate(180deg);
}

/* =========================================
   MOBILE TOGGLE BUTTON
========================================= */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

/* Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================================
   DESKTOP MEGA MENU (HIDDEN ON MOBILE)
========================================= */
.mega-menu-fullscreen {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 4px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 9998;
}

.mega-menu-fullscreen.show {
    max-height: 600px;
    overflow-y: auto;
}

.mega-menu-fullscreen .custom-container {
    padding: 35px 0;
}

/* Mega Menu Grid */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* Mega Column */
.mega-col {
    position: relative;
    padding-left: 20px;
}

.mega-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 50px;
    opacity: 0.8;
}

.mega-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-emerald);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-mint);
    letter-spacing: 0.5px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 8px;
}

.mega-list li:last-child {
    margin-bottom: 0;
}

.mega-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    transition: var(--transition-smooth);
    line-height: 1.4;
    border: 1px solid transparent;
}

.mega-list li a i {
    color: var(--accent-gold);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.mega-list li a:hover {
    background: var(--card-cream);
    color: var(--primary-emerald);
    padding-left: 18px;
    border-color: var(--border-mint);
    transform: translateX(5px);
}

.mega-list li a:hover i {
    color: #e74c3c;
    transform: scale(1.3) rotate(10deg);
}

/* =========================================
   MOBILE MEGA MENU (INSIDE SIDEBAR)
========================================= */
.mega-menu-mobile {
    display: none;
    padding: 10px 0 10px 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-top: 5px;
}

.mega-menu-mobile.show {
    display: block;
}

.mega-list-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.mega-list-mobile li {
    margin-bottom: 3px;
}

.mega-list-mobile li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.mega-list-mobile li a i {
    color: var(--accent-gold);
    font-size: 0.7rem;
}

.mega-list-mobile li a:hover {
    background: rgba(212, 167, 79, 0.15);
    padding-left: 16px;
}

/* =========================================
   SIDEBAR OVERLAY
========================================= */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* Tablet & Mobile - Show Toggle, Hide Desktop Menu */
@media (max-width: 992px) {
    
    /* Show mobile toggle */
    .mobile-toggle {
        display: flex;
    }

    /* Hide desktop menu, convert to sidebar */
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 30px;
        transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        z-index: 10000;
        overflow-y: auto;
    }

    /* Show sidebar */
    .navbar-menu.show {
        right: 0;
    }

    /* Vertical nav list */
    .nav-list {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 14px 18px;
        font-size: 0.9rem;
        color: var(--text-dark);
        border-radius: 10px;
        justify-content: space-between;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-emerald);
        background: var(--card-cream);
    }

    .nav-link::after {
        display: none;
    }

    /* Hide desktop mega menu on mobile */
    .mega-menu-fullscreen {
        display: none !important;
    }

    /* Show mobile mega menu */
    .mega-menu-mobile {
        display: none;
    }

    .mega-menu-mobile.show {
        display: block;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .navbar-wrapper {
        min-height: 65px;
        gap: 15px;
    }

    .brand-logo {
        width: 45px;
        height: 45px;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .brand-subtitle {
        font-size: 0.6rem;
    }

    .navbar-menu {
        width: 280px;
        right: -280px;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .mobile-toggle span {
        width: 25px;
        height: 2.5px;
    }

    .mobile-toggle {
        gap: 5px;
    }
}





/* ==================== HERO SECTION RESPONSIVE ==================== */

.hero-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    width: 100%;
    height: 100%;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 90vh;
    object-fit: fill;
    display: block;
}

/* Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 8%;
}

.hero-section .carousel-control-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

/* Indicators */
.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ==================== LARGE DEVICES ==================== */
@media (max-width: 1200px) {
    .hero-section .carousel-item img {
        height: 90vh;
         object-fit: fill;
    }
}

/* ==================== TABLETS ==================== */
@media (max-width: 992px) {
    .hero-section .carousel-item img {
        height: 75vh;
         object-fit: fill;

    }

    .hero-section .carousel-control-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* ==================== MOBILE DEVICES ==================== */
@media (max-width: 768px) {
    .hero-section .carousel-item img {
        height: 37vh;
         object-fit: fill;
    }

    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 12%;
    }

    .hero-section .carousel-control-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .hero-section .carousel-indicators {
        bottom: 10px;
    }

    .hero-section .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
}

/* ==================== SMALL MOBILE ==================== */
@media (max-width: 576px) {
    .hero-section .carousel-item img {
        height: 250px;
         object-fit: fill;
    }

    .hero-section .carousel-control-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* ==================== EXTRA SMALL DEVICES ==================== */
@media (max-width: 400px) {
    .hero-section .carousel-item img {
        height: 30vh;
         object-fit: fill;
    }
}

/* ============================================
   HERO SECTION SIMPLE - CENTERED
============================================ */
.mak-hero-simple {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 15px;
}

/* Background Image */
.mak-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://i.pinimg.com/736x/3e/52/ac/3e52ac6574e802b7f1367ba13fd2adda.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark Overlay */
.mak-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(14, 75, 54, 0.92) 0%,
    rgba(14, 75, 54, 0.82) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

/* Centered Content */
.mak-hero-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

/* Heading */
.mak-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.mak-hero-heading span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Description */
.mak-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* ============================================
   HERO BUTTONS - PROPER STYLING
============================================ */
.mak-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Call Us Button */
.mak-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 35px;
  background: linear-gradient(135deg, #0E4B36, #166534);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.mak-btn-call i {
  font-size: 1.2rem;
  animation: makPhoneShake 2s ease-in-out infinite;
}

.mak-btn-call:hover {
  background: linear-gradient(135deg, #166534, #0E4B36);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  color: #fff;
}

@keyframes makPhoneShake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(0deg); }
}

/* WhatsApp Button */
.mak-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 35px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.mak-btn-whatsapp i {
  font-size: 1.4rem;
  animation: makWhatsappPulse 2s ease-in-out infinite;
}

.mak-btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  color: #fff;
}

@keyframes makWhatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ============================================
   RESPONSIVE BUTTONS
============================================ */
@media (max-width: 768px) {
  .mak-hero-btns {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .mak-btn-call,
  .mak-btn-whatsapp {
    width: 100%;
    max-width: 320px;
    padding: 15px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mak-btn-call,
  .mak-btn-whatsapp {
    padding: 14px 20px;
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .mak-btn-call i,
  .mak-btn-whatsapp i {
    font-size: 1.1rem;
  }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
  .mak-hero-simple {
    min-height: 80vh;
    padding: 80px 15px;
  }
  
  .mak-hero-heading {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  
  .mak-hero-desc {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .mak-hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .mak-hero-btns .buttoon {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mak-hero-simple {
    min-height: 70vh;
    padding: 60px 15px;
  }
  
  .mak-hero-heading {
    font-size: 1.8rem;
  }
  
  .mak-hero-desc {
    font-size: 0.85rem;
  }
}





















/* ============================================
   ABOUT SECTION STYLES - STICKY IMAGE (FIXED)
============================================ */
.mak-about {
  background: var(--bg-warm-ivory);
  position: relative;
  overflow: visible; /* Changed from hidden to visible for sticky */
  border-bottom: 3px solid #d4a74f;
}

/* Background Pattern */
.mak-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 50%, rgba(212, 167, 79, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(14, 75, 54, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* About Wrapper - 2 Columns */
.mak-about-wrapper {
  display: flex;
  /* gap: 60px; */
  align-items: flex-start;
  justify-content: space-evenly;
  position: relative;
  z-index: 1;
}

/* ========== LEFT SIDE - STICKY IMAGE ========== */
.mak-about-image {
  flex: 0 0 32%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  display: flex;
  justify-content: center;
  align-self: flex-start;
}

.mak-about-img-wrap {
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

.mak-about-img-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(212, 167, 79, 0.3);
}

.mak-about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: fill;
  aspect-ratio: 4/5;
  transition: var(--transition-smooth);
}

.mak-about-img-wrap:hover .mak-about-img {
  transform: scale(1.03);
}

/* ========== RIGHT SIDE - SCROLLABLE CONTENT ========== */
.mak-about-content {
  flex: 0 0 65%;
  color: var(--text-dark);
  
}

.mak-about-content .heading {
  text-align: left;
}

/* Paragraphs */
.mak-about-para {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 18px;
  opacity: 0.9;
  text-align: justify !important;
}

.mak-about-para:last-child {
  margin-bottom: 0;
}

.mak-about-para strong {
  color: var(--primary-emerald);
  font-weight: 700;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .mak-about-wrapper {
    gap: 10px;
  }
  
  .mak-about-image {
    flex: 0 0 40%;
    top: 90px;
  }
  
  .mak-about-content {
    flex: 0 0 68%;
  }
  
  .mak-about-para {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  .mak-about {
    overflow: hidden;
  }
  
  .mak-about-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  /* Remove sticky on mobile */
  .mak-about-image {
    position: relative;
    top: auto;
    flex: 0 0 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .mak-about-content {
    flex: 0 0 100%;
  }
  
  .mak-about-content .heading {
    text-align: center;
  }
  
  .mak-about-content .gold-divider {
    margin: 18px auto 28px !important;
  }
  
  .mak-about-para {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mak-about-image {
    max-width: 320px;
  }
  
  .mak-about-para {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .mak-about-image {
    max-width: 280px;
  }
  
  .mak-about-img-wrap {
    border-width: 3px;
  }
  
  .mak-about-para {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 12px;
  }
}


/* ============================================
   VIDEO CONTENT SECTION - ISLAMIC THEME
============================================ */
.mak-video-section {
  position: relative;
  padding: 100px 0;
  width: 100%;
  overflow: hidden;
  border-bottom: 3px solid #d4a74f;
}

/* Video Background */
.mak-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
  transform: scaleX(-1);
}

/* Dark Green Overlay */
/* Dark Green Overlay - Lighter for better readability */
.mak-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(14, 75, 54, 0.85) 0%,
    rgba(14, 75, 54, 0.75) 50%,
    rgba(0, 40, 30, 0.7) 100%
  );
  z-index: 1;
}

/* Islamic Pattern Overlay */
.mak-video-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 30%, rgba(212, 167, 79, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(212, 167, 79, 0.04) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* Container above video */
.mak-video-section .custom-container {
  position: relative;
  z-index: 3;
}

/* Main Heading */
.mak-video-heading {
      font-family: var(--font-heading);
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
  color: var(--accent-gold);

  position: relative;
  display: inline-block;
}

/* Gold Underline */
.mak-video-heading::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
}

/* Description */
.mak-video-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.85);
  margin: 30px 0 28px;
  font-weight: 400;
  max-width: 90%;
  text-align: justify;
}

/* CTA Wrapper */
.mak-video-cta {
  margin: 24px 0 20px;
}

.mak-cta-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 167, 79, 0.18);
  padding: 10px 26px;
  border-radius: var(--border-radius-btn);
  border: 2px solid var(--accent-gold);
  backdrop-filter: blur(5px);
}

.mak-cta-label i {
  color: var(--accent-gold);
  font-size: 1rem;
  animation: makPhoneRing 2s ease-in-out infinite;
}

@keyframes makPhoneRing {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(-15deg); }
  10% { transform: rotate(15deg); }
  15% { transform: rotate(-15deg); }
  20% { transform: rotate(0deg); }
}

/* Button */
.mak-video-btn {
  margin-top: 8px;
  padding: 16px 35px;
  font-size: 1rem;
  gap: 10px;
}

.mak-video-btn i {
  font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
  .mak-video-section {
    padding: 70px 0;
  }
  
  .mak-video-heading {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
  
  .mak-video-desc {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.85;
  }
  
  .mak-cta-label {
    font-size: 1rem;
    padding: 8px 20px;
  }
}

@media (max-width: 768px) {
  .mak-video-section {
    padding: 50px 0;
  }
  
  .mak-video-heading {
    font-size: 1.5rem;
  }
  
  .mak-video-heading::after {
    width: 60px;
    bottom: -10px;
  }
  
  .mak-video-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 24px 0 20px;
  }
  
  .mak-cta-label {
    font-size: 0.9rem;
    padding: 7px 18px;
  }
  
  .mak-video-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mak-video-section {
    padding: 40px 0;
  }
  
  .mak-video-heading {
    font-size: 1.3rem;
  }
  
  .mak-video-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 20px 0 16px;
  }
  
  .mak-cta-label {
    font-size: 0.8rem;
    padding: 6px 15px;
    border-width: 1.5px;
  }
  
  .mak-video-btn {
    max-width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}











/* ============================================
   CONTENT SECTION - FULL WIDTH
============================================ */
.mak-content-full {
  background: var(--bg-warm-ivory);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.mak-content-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(212, 167, 79, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(14, 75, 54, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Full Width Wrapper */
.mak-content-wrapper {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 60px 80px;
  border-top: 3px solid var(--accent-gold);
  border-bottom: 3px solid var(--accent-gold);
  max-width: 100%;
}

/* Main Title */
/* Main Title - 2 Colors */
.mak-content-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-emerald);
  line-height: 1.3;
  margin-bottom: 0;
  letter-spacing: -0.3px;
}

.mak-content-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Sub Title - 2 Colors */
.mak-content-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--primary-emerald);
  margin-top: 40px;
  margin-bottom: 0;
  letter-spacing: -0.2px;
}

.mak-content-subtitle span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Paragraph */
.mak-content-para {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-dark);
  margin-bottom: 22px;
  opacity: 0.9;
  max-width: 100%;
}

/* List */
.mak-content-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 30px;
}

.mak-content-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mak-content-list li i {
  color: var(--accent-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Sub Title */
.mak-content-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--primary-emerald);
  margin-top: 40px;
  margin-bottom: 0;
  letter-spacing: -0.2px;
}

/* Buttons */
.mak-content-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 2px solid var(--border-mint);
}

.mak-content-btns .buttoon {
  padding: 16px 32px;
  font-size: 0.95rem;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.mak-content-btns .buttoon i {
  font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .mak-content-wrapper {
    padding: 50px 50px;
  }
  
  .mak-content-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 20px;
  }
}

@media (max-width: 992px) {
  .mak-content-wrapper {
    padding: 40px 30px;
  }
  
  .mak-content-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mak-content-wrapper {
    padding: 30px 20px;
  }
  
  .mak-content-title {
    font-size: 1.5rem;
  }
  
  .mak-content-para {
    font-size: 0.95rem;
    line-height: 1.85;
  }
  
  .mak-content-subtitle {
    font-size: 1.3rem;
    margin-top: 30px;
  }
  
  .mak-content-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .mak-content-btns .buttoon {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .mak-content-wrapper {
    padding: 25px 16px;
  }
  
  .mak-content-title {
    font-size: 1.3rem;
  }
  
  .mak-content-para {
    font-size: 0.88rem;
    line-height: 1.75;
  }
  
  .mak-content-subtitle {
    font-size: 1.1rem;
  }
  
  .mak-content-list li {
    font-size: 0.9rem;
  }
}





/* ============================================
   FAQ SECTION STYLES
============================================ */
.mak-faq{
    position: relative;
    background: url("../assets/images/background.gif");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.mak-faq::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 36, 24, 0.78); /* Dark Green Overlay */
    z-index: 1;
}

.mak-faq > *{
    position: relative;
    z-index: 2;
}

.this{
  color: white !important;
}
.that{
  color: rgba(255, 255, 255, 0.674);
}
/* Background Pattern */
.mak-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 167, 79, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 75, 54, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.mak-faq .custom-container {
  position: relative;
  z-index: 1;
}

/* FAQ Wrapper */
.mak-faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Accordion Item */
.mak-faq-item {
  background: #fff;
  border: 1px solid var(--border-mint);
  border-radius: var(--border-radius-sm) !important;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

.mak-faq-item:last-child {
  margin-bottom: 0;
}

.mak-faq-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* FAQ Button */
.mak-faq-btn {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--primary-emerald) !important;
  background: #fff !important;
  padding: 18px 22px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  box-shadow: none !important;
  border: none !important;
  transition: var(--transition-smooth) !important;
}

.mak-faq-btn i {
  color: var(--accent-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.mak-faq-btn:not(.collapsed) {
  background: linear-gradient(135deg, #fef9e6, #fff) !important;
  color: var(--primary-emerald) !important;
  border-bottom: 2px solid var(--accent-gold) !important;
}

.mak-faq-btn:not(.collapsed) i {
  color: var(--primary-emerald);
  transform: rotate(45deg);
}

.mak-faq-btn::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4A74F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.mak-faq-btn:focus {
  box-shadow: 0 0 0 3px rgba(212, 167, 79, 0.2) !important;
  border-color: var(--accent-gold) !important;
}

/* FAQ Body */
.mak-faq-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-dark);
  padding: 18px 22px !important;
  background: #fff;
  opacity: 0.9;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
  .mak-faq-btn {
    font-size: 0.92rem !important;
    padding: 16px 18px !important;
    gap: 10px !important;
  }
  
  .mak-faq-body {
    font-size: 0.88rem;
    padding: 15px 18px !important;
    line-height: 1.8;
  }
  
  .mak-faq-item {
    margin-bottom: 12px;
    border-radius: 12px !important;
  }
}

@media (max-width: 480px) {
  .mak-faq-btn {
    font-size: 0.85rem !important;
    padding: 14px 15px !important;
    gap: 8px !important;
  }
  
  .mak-faq-body {
    font-size: 0.85rem;
    padding: 12px 15px !important;
    line-height: 1.7;
  }
}




















/* ============================================
   TESTIMONIAL SLIDER - PREMIUM STYLE
============================================ */
.mak-testimonials {
  background: var(--bg-warm-ivory);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.mak-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(212, 167, 79, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(14, 75, 54, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Testimonial Card */
.mak-testimonial-card {
  /* background: #fff; */
  border-radius: var(--border-radius-card);
  padding: 45px 40px 35px;
  border: 2px solid var(--border-mint);
  box-shadow: var(--shadow-soft);
  position: relative;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

/* Top Gold Line */
.mak-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 0 0 4px 4px;
}

/* Quote Icon */
.mak-quote-icon {
  margin-bottom: 20px;
}

.mak-quote-icon i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  opacity: 0.4;
}

/* Testimonial Text */
.mak-testimonial-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.9;
}

/* Stars */
.mak-stars {
  margin-bottom: 25px;
}

.mak-stars i {
  color: #f4c430;
  font-size: 1rem;
  margin: 0 2px;
}

/* Author Section */
.mak-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-mint);
}

/* Author Image */
.mak-author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 167, 79, 0.2);
}

.mak-author-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Author Info */
.mak-author-info {
  text-align: left;
}

.mak-author-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-emerald);
  margin-bottom: 4px;
}

.mak-author-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.7;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mak-author-location i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* ============================================
   CAROUSEL CONTROLS
============================================ */
.mak-testimonial-prev,
.mak-testimonial-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.mak-testimonial-prev {
  left: -10px;
}

.mak-testimonial-next {
  right: -10px;
}

.mak-testimonial-prev:hover,
.mak-testimonial-next:hover {
  opacity: 1;
}

.mak-carousel-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

.mak-carousel-arrow:hover {
  background: var(--primary-emerald);
  transform: scale(1.1);
}

/* ============================================
   CAROUSEL INDICATORS
============================================ */
.mak-testimonial-indicators {
  bottom: -50px;
  gap: 10px;
}

.mak-testimonial-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: var(--border-mint) !important;
  border: 2px solid var(--accent-gold) !important;
  opacity: 1 !important;
  transition: var(--transition-smooth);
}

.mak-testimonial-indicators button.active {
  background: var(--accent-gold) !important;
  transform: scale(1.2);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
  .mak-testimonial-card {
    padding: 35px 25px 30px;
    max-width: 600px;
  }
  
  .mak-testimonial-prev {
    left: 0;
  }
  
  .mak-testimonial-next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .mak-testimonial-card {
    padding: 30px 20px 25px;
    max-width: 500px;
  }
  
  .mak-testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  
  .mak-author-img {
    width: 60px;
    height: 60px;
  }
  
  .mak-author-name {
    font-size: 1rem;
  }
  
  .mak-quote-icon i {
    font-size: 2rem;
  }
  
  .mak-carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .mak-testimonial-card {
    padding: 25px 16px 22px;
    max-width: 100%;
  }
  
  .mak-testimonial-text {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  
  .mak-testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .mak-author-info {
    text-align: center;
  }
  
  .mak-author-location {
    justify-content: center;
  }
  
  .mak-author-img {
    width: 55px;
    height: 55px;
  }
  
  .mak-testimonial-prev,
  .mak-testimonial-next {
    display: none;
  }
  
  .mak-testimonial-indicators {
    bottom: -35px;
  }
}



    /* ============================================
       WHATSAPP SCREENSHOTS SECTION CSS
    ============================================ */
    .mak-screenshots {
        background: var(--card-cream, #a8f193);
        position: relative;
        overflow: hidden;
         border-bottom: 3px solid #d4a74f;
    }

    .mak-screenshots::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 15% 25%, rgba(37, 211, 102, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 85% 75%, rgba(212, 167, 79, 0.03) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .mak-screenshots .custom-container {
        position: relative;
        z-index: 1;
    }

    .mak-screenshots-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
        /* max-width: 1100px; */
        margin: 0 auto;
    }

    .mak-screenshot-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid #d4a74f;
        box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        background: #fff;
        /* height: 700px; */
    }

    .mak-screenshot-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-color: #25D366;
    }

    .mak-screenshot-img-wrap {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #075E54;
        cursor: pointer;
    }

    .mak-screenshot-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: fill;
        aspect-ratio: 9/16;
        transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .mak-screenshot-card:hover .mak-screenshot-img {
        transform: scale(1.03);
    }

    .mak-screenshot-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(7, 94, 84, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .mak-screenshot-card:hover .mak-screenshot-overlay {
        opacity: 1;
    }

    .mak-screenshot-view {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: #25D366;
        color: #fff;
        text-decoration: none;
        border-radius: 40px;
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    .mak-screenshot-view:hover {
        background: #128C7E;
        transform: scale(1.05);
        color: #fff;
    }

    .mak-screenshot-label {
        padding: 14px 16px;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: #0E4B36;
        background: #fff;
        border-top: 2px solid #D8E2D0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .mak-screenshot-label i {
        color: #25D366;
        font-size: 1rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .mak-screenshots-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            max-width: 700px;
        }
    }

    @media (max-width: 576px) {
        .mak-screenshots-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .mak-screenshot-label {
            font-size: 0.78rem;
            padding: 10px 12px;
        }
        .mak-screenshot-view {
            padding: 10px 18px;
            font-size: 0.8rem;
        }
    }

    @media (max-width: 400px) {
        .mak-screenshots-grid {
            grid-template-columns: 1fr;
            gap: 15px;
            max-width: 280px;
            margin: 0 auto;
        }
    }





































































































/* ============================================
   SERVICES SECTION STYLES
============================================ */
.mak-services {
  background: var(--bg-warm-ivory);
  position: relative;
  overflow: hidden;
   border-bottom: 3px solid #d4a74f;
}

/* Background Pattern */
.mak-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 5% 20%, rgba(212, 167, 79, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 95% 60%, rgba(14, 75, 54, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Services Grid - 4 Columns */
.mak-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

/* Service Card */
.mak-service-card {
  background: #fff;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
 border: 2px solid #d4a74f;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* .mak-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
} */

/* Image Wrap */
.mak-service-img-wrap {
  position: relative;
  width: 100%;
  height: 250px !important;
  /* overflow: hidden; */
  /* border: 3px solid red !important; */
}

.mak-service-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: var(--transition-smooth);
}

/* .mak-service-card:hover .mak-service-img {
  transform: scale(1.08);
} */

/* Image Overlay */
.mak-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 75, 54, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.mak-service-card:hover .mak-service-overlay {
  opacity: 1;
}

.mak-service-overlay i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  animation: makHeartBeat 1.5s ease-in-out infinite;
}

@keyframes makHeartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* Content */
.mak-service-content {
  padding: 18px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Title */
.mak-service-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-emerald);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Description */
.mak-service-desc {
  font-family: var(--font-body);
  font-size: .9rem;
  
  color: var(--text-dark);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
  text-align: justify;
}

/* Read More Link */
.mak-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
  padding: 8px 16px;
  border: 1px solid var(--accent-gold);
  border-radius: var(--border-radius-btn);
  align-self: flex-start;
  margin-top: auto;
}

.mak-service-link i {
  font-size: 0.7rem;
  transition: var(--transition-smooth);
}

.mak-service-link:hover {
  background: var(--gold-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  gap: 10px;
}

.mak-service-link:hover i {
  transform: translateX(3px);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .mak-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .mak-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .mak-service-img-wrap {
    height: 370px !important;
  }
  
  .mak-service-title {
    font-size: 0.85rem;
  }
  
  .mak-service-desc {
    font-size: 0.78rem;
  }
}

@media (max-width: 576px) {
  .mak-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .mak-service-img-wrap {
    height: 330px !important;
  }
  
  .mak-service-content {
    padding: 16px 14px 18px;
  }
  
  .mak-service-title {
    font-size: 0.9rem;
  }
  
  .mak-service-desc {
    font-size: 0.82rem;
  }
}







/* ============================================
   AWARDS PREMIUM - GLASSMORPHISM THEME
============================================ */
.mak-awards-premium {
  /* background: linear-gradient(135deg, #EAF7F0, #CFEEDB); */

background: linear-gradient(
    rgba(0, 0, 0, 0.374),
    rgba(0, 0, 0, 0.167)
),
url(../assets/images/awardd.webp);
background-size: cover;
background-position: center;


  position: relative;
  /* border-bottom: 1px solid rgba(212, 175, 55, 0.3); */
   border-bottom: 3px solid #d4a74f;
}

/* Top Gold Line */
.mak-awards-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-emerald), var(--accent-gold), #e8c84a, var(--primary-emerald));
}

/* Bottom Glow */
.mak-awards-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
}

/* Awards Badge */
.mak-awards-badge {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  background: rgba(212, 167, 79, 0.12);
  padding: 8px 22px;
  border-radius: var(--border-radius-btn);
}

.mak-awards-badge i {
  font-size: 0.85rem;
}

/* Awards Grid */
.mak-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 20px;
  justify-items: center;
  align-items: stretch;
}

/* Award Card - GLASSMORPHISM */
.mak-award-premium-card {
  background: rgba(240, 238, 238, 0.607);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-card);
  padding: 28px 22px 25px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 167, 79, 0.25);
  box-shadow: 0 8px 32px rgba(14, 75, 54, 0.08);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}

/* Glass Shine Effect */
.mak-award-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.mak-award-premium-card:hover::before {
  left: 100%;
}

/* Corner Gold Sparkle */
.mak-award-premium-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 167, 79, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Hover */
.mak-award-premium-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(14, 75, 54, 0.12);
}

/* Award Ribbon - Gold Hexagon */
.mak-award-ribbon {
  position: absolute;
  top: -6px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.mak-award-premium-card:hover .mak-award-ribbon {
  opacity: 1;
  top: -10px;
}

.mak-award-ribbon i {
  color: #fff;
  font-size: 0.85rem;
}

/* Award Seal */
.mak-award-seal {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--accent-gold), #b8861e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  transform: rotate(-15deg);
  z-index: 3;
}

.mak-award-premium-card:hover .mak-award-seal {
  opacity: 1;
}

.mak-award-seal i {
  color: #fff;
  font-size: 0.9rem;
}

/* Award Image Wrap - Compact */
.mak-award-img-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212, 167, 79, 0.4);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(212, 167, 79, 0.15);
  overflow: hidden;
}

.mak-award-premium-card:hover .mak-award-img-wrap {
  transform: scale(1.1);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(212, 167, 79, 0.35);
}

/* Award Photo */
.mak-award-photo {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 50%;
  display: block;
}

/* Award Title */
.mak-award-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-emerald);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2;
}

/* Award Issuer */
.mak-award-issuer {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold-gradient);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  background: rgba(212, 167, 79, 0.12);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--border-radius-btn);
  position: relative;
  z-index: 2;
}

/* Award Description */
.mak-award-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

/* Award Year */
.mak-award-year {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--gold-gradient);
  padding: 6px 16px;
  border-radius: var(--border-radius-btn);
  box-shadow: 0 4px 12px rgba(212, 167, 79, 0.25);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.mak-award-premium-card:hover .mak-award-year {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 167, 79, 0.4);
}

.mak-award-year i {
  font-size: 0.7rem;
}

/* Gold Bottom Border */
.mak-award-gold-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold-gradient);
  transition: width 0.5s ease;
  border-radius: 0 0 3px 3px;
}

.mak-award-premium-card:hover .mak-award-gold-border {
  width: 100%;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
  .mak-awards-grid {
    gap: 25px;
  }
  
  .mak-award-premium-card {
    padding: 25px 18px 22px;
    max-width: 450px;
  }
  
  .mak-award-img-wrap {
    width: 85px;
    height: 85px;
  }
  
  .mak-award-card-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .mak-awards-grid {
    gap: 20px;
  }
  
  .mak-award-premium-card {
    padding: 22px 16px 20px;
  }
  
  .mak-award-img-wrap {
    width: 75px;
    height: 75px;
    margin-bottom: 12px;
  }
  
  .mak-award-card-title {
    font-size: 1rem;
  }
  
  .mak-award-card-desc {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .mak-awards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .mak-award-premium-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .mak-award-premium-card {
    padding: 20px 14px 18px;
  }
  
  .mak-award-img-wrap {
    width: 70px;
    height: 70px;
  }
  
  .mak-award-card-title {
    font-size: 0.95rem;
  }
  
  .mak-award-card-desc {
    font-size: 0.78rem;
    line-height: 1.5;
  }
  
  .mak-awards-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }
}


/* ============================================
   ISLAMIC SOLUTION SECTION - YOUR THEME
============================================ */
.mak-solution {
  background: linear-gradient(135deg, #EAF7F0, #CFEEDB);
  position: relative;
  width: 100%;
}

/* Top Gold Line */
.mak-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-emerald), var(--accent-gold), var(--primary-emerald));
}

/* Main Heading */
.mak-solution-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: var(--primary-emerald);
    margin-bottom: 18px;
    text-transform: capitalize;
  position: relative;
  display: inline-block;
}

.mak-solution-heading span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mak-solution-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* Paragraph */
.mak-solution-para {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 32px;
  color: var(--text-dark);
  margin-bottom: 18px;
  text-align: justify;
  opacity: 0.9;
}

/* Subheading */
.mak-solution-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: var(--primary-emerald);
  margin: 28px 0 18px;
  padding-left: 18px;
  border-left: 4px solid var(--accent-gold);
}

/* Services List */
.mak-solution-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mak-solution-list li {
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(50% - 8px);
}

.mak-solution-list li i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Gold Badge */
.mak-solution-badge {
  background: var(--gold-gradient);
  padding: 16px 25px;
  border-radius: var(--border-radius-btn);
  text-align: center;
  margin: 24px 0 10px;
  box-shadow: var(--shadow-gold);
}

.mak-solution-badge h4 {
  margin: 0;
  color: var(--primary-emerald);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

.mak-solution-badge p {
  margin: 5px 0 0;
  color: var(--primary-emerald);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-body);
  opacity: 0.85;
}

.mak-solution-badge i {
  margin-right: 6px;
}

/* ========== FORM STYLES ========== */
.mak-solution-form {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px 25px;
  border-radius: var(--border-radius-card);
  border: 3px solid #d4a74f;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 100px;
}

.mak-form-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-emerald);
  margin-bottom: 6px;
  text-align: center;
}

.mak-form-subtext {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7c5e;
  margin-bottom: 22px;
  font-family: var(--font-body);
}

.mak-form-group {
  margin-bottom: 16px;
}

.mak-form-group label {
  font-weight: 600;
  color: var(--primary-emerald);
  margin-bottom: 6px;
  display: block;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.mak-required {
  color: var(--accent-gold);
  font-size: 1rem;
}

.mak-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(212, 167, 79, 0.4);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  background: #fff;
}

.mak-form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 167, 79, 0.15);
}

.mak-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.mak-form-note {
  font-size: 0.75rem;
  color: #8a9b7a;
  margin: 12px 0 18px;
  text-align: center;
  font-family: var(--font-body);
}

.mak-form-note i {
  color: var(--accent-gold);
  margin-right: 5px;
}

/* Submit Button */
.mak-form-btn {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--border-radius-btn);
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.mak-form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
  background: linear-gradient(135deg, #128C7E, #25D366);
}

.mak-form-btn i {
  font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
  .mak-solution-list li {
    width: 100%;
  }
  
  .mak-solution-form {
    position: static;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .mak-solution-heading {
    font-size: 1.5rem;
  }
  
  .mak-solution-para {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  
  .mak-solution-subheading {
    font-size: 1.2rem;
  }
  
  .mak-solution-form {
    padding: 22px 18px;
  }
  
  .mak-form-heading {
    font-size: 1.2rem;
  }
  
  .mak-solution-badge h4 {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .mak-solution-heading {
    font-size: 1.3rem;
  }
  
  .mak-solution-badge {
    padding: 12px 18px;
  }
  
  .mak-form-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
}











/* ============================================
   COMMON CONTENT - SAME THEME
============================================ */
.commoncontent-solution {
    background: var(--bg-warm-ivory);
    position: relative;
    width: 100%;
 border-bottom: 3px solid #d4a74f;
}

.commoncontent-wrapper {
    padding: 5px 0px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* Services List */
.commoncontent-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 30px;
}

.commoncontent-list li {
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.commoncontent-list li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Gold Badge */
.commoncontent-badge {
    background: var(--gold-gradient);
    padding: 16px 25px;
    border-radius: var(--border-radius-btn);
    text-align: center;
    margin: 30px 0 10px;
    box-shadow: var(--shadow-gold);
}

.commoncontent-badge h4 {
    margin: 0;
    color: var(--primary-emerald);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.commoncontent-badge p {
    margin: 5px 0 0;
    color: var(--primary-emerald);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-body);
    opacity: 0.85;
}

.commoncontent-badge i {
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .commoncontent-wrapper {
        padding: 50px 40px;
    }
    .commoncontent-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .commoncontent-wrapper {
        padding: 35px 25px;
    }
    .commoncontent-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .commoncontent-wrapper {
        padding: 25px 16px;
    }
    .commoncontent-badge {
        padding: 12px 18px;
    }
    .commoncontent-badge h4 {
        font-size: 0.85rem;
    }
}












/* ============================================
   CERTIFICATION SECTION STYLES
============================================ */
.mak-certification {
  background: var(--bg-warm-ivory);
  position: relative;
  overflow: hidden;
   border-bottom: 3px solid #d4a74f;
}

/* Background Pattern */
.mak-certification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 167, 79, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 75, 54, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.mak-certification .custom-container {
  position: relative;
  z-index: 1;
}

/* Certification Row */
.mak-cert-row {
  justify-content: center;
}

/* Certificate Card - Horizontal Rectangle */
.mak-cert-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 3px solid var(--border-mint);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  background: #fff;
  cursor: pointer;
}

/* Gold Border Outer Glow */
.mak-cert-card::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  z-index: 0;
  pointer-events: none;
}

/* Top Gold Line */
.mak-cert-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
  z-index: 2;
  border-radius: 0 0 10px 10px;
}

/* Hover Effects */
.mak-cert-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.mak-cert-card:hover::before {
  border-color: var(--accent-gold);
  box-shadow: 0 0 30px rgba(212, 167, 79, 0.2);
  inset: -8px;
  border-radius: 22px;
}

.mak-cert-card:hover::after {
  width: 70%;
}

/* Certificate Image */
.mak-cert-img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: fill;
  aspect-ratio: 16 / 9;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

/* Image Hover Zoom */
.mak-cert-card:hover .mak-cert-img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* Click Effect */
.mak-cert-card:active {
  transform: scale(0.98);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
  .mak-cert-card {
    border-width: 2px;
  }
  
  .mak-cert-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .mak-cert-card {
    border-radius: 12px;
  }
  
  .mak-cert-img {

  height: 300px !important;
  }
  .mak-cert-card::before {
    border-radius: 16px;
  }
  
  .mak-cert-card:hover::before {
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .mak-cert-card {
    border-width: 2px;
  }
}












































/* ============================================
   TERMS & CONDITIONS - SAME THEME
============================================ */
.mak-terms {
    background: var(--bg-warm-ivory);
    position: relative;
    overflow: hidden;
}

.mak-terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 167, 79, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 75, 54, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.mak-terms .custom-container {
    position: relative;
    z-index: 1;
}

/* Terms Content Box */
.mak-terms-content {
    background: #fff;
    border-radius: var(--border-radius-card);
    padding: 45px 40px;
    border: 2px solid var(--border-mint);
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Top Gold Line */
.mak-terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px 3px 0 0;
}

/* Terms Subtitle */
.mak-terms-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-emerald);
    margin-top: 30px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mak-terms-subtitle:first-of-type {
    margin-top: 20px;
}

.mak-terms-subtitle i {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Contact Info Box */
.mak-terms-contact {
    background: var(--card-cream);
    border-radius: var(--border-radius-sm);
    padding: 25px;
    margin-top: 30px;
    border: 1px solid var(--border-mint);
}

.mak-terms-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.mak-terms-contact-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.mak-terms-contact-item div {
    display: flex;
    flex-direction: column;
}

.mak-terms-contact-item strong {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--primary-emerald);
}

.mak-terms-contact-item span {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .mak-terms-content {
        padding: 30px 20px;
    }
    
    .mak-terms-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .mak-terms-content {
        padding: 25px 16px;
        border-radius: 16px;
    }
    
    .mak-terms-subtitle {
        font-size: 0.95rem;
    }
    
    .mak-terms-contact {
        padding: 18px;
    }
    
    .mak-terms-contact-item i {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}



/* ============================================
   PRIVACY POLICY - SAME THEME
============================================ */
.mak-privacy {
    background: var(--bg-warm-ivory);
    position: relative;
    overflow: hidden;
}

.mak-privacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 167, 79, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(14, 75, 54, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.mak-privacy .custom-container {
    position: relative;
    z-index: 1;
}

/* Privacy Content Box */
.mak-privacy-content {
    background: #fff;
    border-radius: var(--border-radius-card);
    padding: 45px 40px;
    border: 2px solid var(--border-mint);
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Top Gold Line */
.mak-privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px 3px 0 0;
}

/* Privacy Subtitle */
.mak-privacy-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-emerald);
    margin-top: 30px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mak-privacy-subtitle:first-of-type {
    margin-top: 20px;
}

.mak-privacy-subtitle i {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Privacy List */
.mak-privacy-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
}

.mak-privacy-list li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mak-privacy-list li i {
    color: var(--accent-gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Contact Info Box */
.mak-privacy-contact {
    background: var(--card-cream);
    border-radius: var(--border-radius-sm);
    padding: 25px;
    margin-top: 30px;
    border: 1px solid var(--border-mint);
}

.mak-privacy-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.mak-privacy-contact-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.mak-privacy-contact-item div {
    display: flex;
    flex-direction: column;
}

.mak-privacy-contact-item strong {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--primary-emerald);
}

.mak-privacy-contact-item span {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-dark);
    opacity: 0.8;
}
   
    .mak-privacy-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .mak-privacy-content {
        padding: 25px 16px;
        border-radius: 16px;
    }
    
    .mak-privacy-subtitle {
        font-size: 0.95rem;
    }
    
    .mak-privacy-contact {
        padding: 18px;
    }
    
    .mak-privacy-contact-item i {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}




/* Responsive */
@media (max-width: 768px) {
    .mak-privacy-content {
        padding: 30px 20px;
    }
    
    .mak-privacy-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .mak-privacy-content {
        padding: 25px 16px;
        border-radius: 16px;
    }
    
    .mak-privacy-subtitle {
        font-size: 0.95rem;
    }
    
    .mak-privacy-contact {
        padding: 18px;
    }
    
    .mak-privacy-contact-item i {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}






















   /* ============================================
   FOOTER STYLES (4 COLUMNS)
============================================ */
.mak-footer {
  background: var(--primary-emerald);
  position: relative;
  padding: 80px 0 0;
  color: #fff;
  border-top: 4px solid var(--accent-gold);
  text-align:left !important;
}

/* Top Pattern */
.mak-footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 5% 10%, rgba(212, 167, 79, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 95% 90%, rgba(212, 167, 79, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.mak-footer .custom-container {
  position: relative;
  z-index: 1;
}

/* Footer Grid - 4 Columns */
.mak-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
  padding-bottom: 50px;
}

/* Footer Column */
.mak-footer-col {
  position: relative;
}

/* Brand Section */
.mak-footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mak-footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212, 167, 79, 0.2);
}

.mak-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.mak-footer-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.mak-footer-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.mak-footer-about {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Social Icons */
.mak-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mak-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mak-social-icon:hover {
  background: var(--accent-gold);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--accent-gold);
}

/* Footer Title */
.mak-footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.mak-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 10px;
}

/* Footer Links */
.mak-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mak-footer-links li {
  margin-bottom: 10px;
}

.mak-footer-links li:last-child {
  margin-bottom: 0;
}

.mak-footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  transition: var(--transition-smooth);
  line-height: 1.4;
}

.mak-footer-links li a i {
  font-size: 0.7rem;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.mak-footer-links li a:hover {
  color: var(--accent-gold);
  padding-left: 8px;
}

.mak-footer-links li a:hover i {
  transform: scale(1.2);
  color: #e74c3c;
}



/* Footer Bottom */
.mak-footer-bottom {
  padding: 25px 0;
}

.mak-footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 167, 79, 0.4),
    rgba(212, 167, 79, 0.8),
    rgba(212, 167, 79, 0.4),
    transparent
  );
  margin-bottom: 25px;
}

.mak-footer-bottom-content {
  text-align: center;
}

.mak-footer-bottom-content p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.mak-footer-bottom-content strong {
  color: #fff;
  font-weight: 600;
}

.mak-footer-bottom-content a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.mak-footer-bottom-content a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Policy Links */
.mak-footer-policy-links {
  text-align: left;
}

.mak-footer-policy-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.mak-footer-policy-links a:hover {
  color: var(--accent-gold);
}

.mak-footer-link-separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .mak-footer-policy-links {
    text-align: center;
  }
  
  .mak-footer-bottom-content p {
    font-size: 0.78rem;
  }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .mak-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 25px;
  }
  
  .mak-footer-links li a {
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {
  .mak-footer {
    padding: 60px 0 0;
  }
  
  .mak-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  
  .mak-footer-col-about {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .mak-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .mak-footer-col-about {
    grid-column: span 2;
  }
  
  .mak-footer-title {
    font-size: 1rem;
  }
  
  .mak-footer-links li a {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .mak-footer {
    padding: 50px 0 0;
  }
  
  .mak-footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .mak-footer-col-about {
    grid-column: span 1;
    margin-bottom:40px;
  }
  
  .mak-footer-brand {
    flex-direction: column;
    text-align: center;
  }
  
  .mak-footer-about {
    text-align: center;
  }
  
  .mak-footer-social {
    justify-content: center;
  }
  
  .mak-footer-title {
    text-align: left;
  }
  
  .mak-footer-title::after {
    left: 5%;
    transform: translateX(-50%);
  }
  
  .mak-footer-links li a {
    justify-content: left;
  }
  
  .mak-footer-bottom-content p {
    font-size: 0.78rem;
  }
}







/* ============================================
   CONTACT US SECTION - ULTRA PREMIUM DESIGN
============================================ */














