    /* ==========================
         Start CSS
   ========================== */
        :root {
            --color1: #017D57;
            --color2: #4CAF50;
            --color3: #5ab75e;
            --color4: #1A3C34;
            --color5: #D7A43F;
            --color6: #FFD700;
            --color7: #333;
            --color8: #292929;
            --color9: #5E5E5E;
            --color10: #ccc;
            --color11: #ddd;
            --color12: #E0E0E0;
            --color13: #F7F7F7;
            --color14: #c9e7ca;
            --color15: #dbefdc;
            --color16: #edf7ed;
            --color17: #fff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans Arabic', sans-serif;
            background: var(--color17);
            color: var(--color7);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .header {
            background: var(--color17);
            color: var(--color4);
            padding: 10px 0;
            border-bottom: 1px solid var(--color12);
            width: 100%;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px;
            height: 55px;
        }

        .header a.logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .header a.logo img {
            width: auto;
            height: 23px;
            margin-right: 8px;
            vertical-align: middle;
        }

        .header button#menuToggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            display: none;
        }

        .header button#menuToggle:hover {
            background: var(--color12);
        }

        .header button#menuToggle svg {
            width: 24px;
            height: 24px;
            fill: var(--color1);
        }

        .nav {
            display: none;
            position: absolute;
            top: 70px;
            right: 16px;
            background: var(--color17);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            padding: 16px;
            z-index: 10;
        }

        .nav.menu-open {
            display: block;
        }

        .nav button#menuClose {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            margin-bottom: 16px;
            display: none;
        }

        .nav button#menuClose:hover {
            background: var(--color12);
        }

        .nav button#menuClose svg {
            width: 20px;
            height: 20px;
            fill: var(--color4);
        }

        .nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            margin: 0;
        }

        .nav ul li a {
            display: block;
            padding: 8px;
            text-decoration: none;
            color: var(--color4);
            border-radius: 4px;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 600;
            position: relative;
            transition: color 0.3s;
        }

        .nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color1);
            transition: width 0.3s;
        }

        .nav ul li a:hover::after {
            width: 100%;
        }
        
        .nav ul li a.active::after {
            width: 100%;
        }

        .nav ul li a:hover {
            color: var(--color1);
        }
        
        .nav ul li a.active {
            color: var(--color1);
}

        .breadcrumb {
            padding: 8px 16px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
            scrollbar-width: none;
            min-height: 24px;
        }

        .breadcrumb::-webkit-scrollbar {
            display: none;
        }

        .breadcrumb ol {
            list-style: none;
            display: inline-flex;
            align-items: center;
            gap: 2px;
        }

        .breadcrumb ol li {
            font-size: 12px;
            color: var(--color9);
            white-space: nowrap;
            line-height: 1.1;
        }

        .breadcrumb ol li a {
            font-size: 13px;
            color: var(--color9);
            text-decoration: none;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .breadcrumb ol li:not(:last-child)::after {
            content: '›';
            color: var(--color9);
            margin-left: 2px;
            font-size: 13px;
            position: relative;
            vertical-align: middle;
            line-height: 1;
            margin: 0 6px 1px;
        }

        .breadcrumb ol li:last-child::after {
            content: none;
        }

        .breadcrumb ol li a::after {
            content: none;
        }

        .breadcrumb ol li a:hover {
            color: var(--color1);
            text-decoration: underline;
        }

        .breadcrumb .home-icon {
            font-size: 12px;
            color: var(--color9);
            transition: color 0.3s;
        }

        .breadcrumb ol li a:hover .home-icon {
            color: var(--color1);
        }

        .main {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            width: 100%;
            flex: 1;
        }
        
        h1 {
            font-size: 36px;
            color: var(--color4);
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        h2 {
            font-size: 30px;
            color: var(--color4);
            font-weight: 600;
            margin-top: 22px;
            margin-bottom: 10px;
        }
        
        h3 {
            font-size: 26px;
            color: var(--color4);
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        
        h4 {
            font-size: 22px;
            color: var(--color4);
            font-weight: 600;
            margin-top: 18px;
            margin-bottom: 8px;
        }
        
        h5 {
            font-size: 18px;
            color: var(--color4);
            font-weight: 600;
            margin-top: 16px;
            margin-bottom: 6px;
        }
        
        h6 {
            font-size: 16px;
            color: var(--color4);
            font-weight: 600;
            margin-top: 14px;
            margin-bottom: 6px;
        }
        
        p {
            font-size: 16px;
            color: var(--color9);
            margin-bottom: 16px;
            line-height: 2;
        }
        
        a {
            color: var(--color1);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: var(--color2);
            text-decoration: underline;
        }
        
        ul {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 16px;
            color: var(--color8);
        }
        
        ol {
            list-style-type: decimal;
            padding-left: 20px;
            margin-bottom: 16px;
            color: var(--color8);
        }
        ul li, ol li {
            margin-bottom: 8px;
            font-size: 16px;
            color: var(--color8);
        }
        strong {
            color: var(--color4);
            font-weight: bold;
        }
        
        .featured-image {
            width: 100%;
            display: block;
            border-radius: 5px;
            object-fit: cover;
            margin: 0 auto;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .calendar {
            margin-bottom: 32px;
        }

        .heading-container {
            text-align: center;
        }

        .calendar-heading {
            font-size: 32px;
            font-weight: 700;
            color: var(--color1);
            margin-bottom: 24px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .calendar-header {
            background: linear-gradient(135deg, var(--color1), var(--color2));
            color: var(--color17);
            padding: 12px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .calendar-nav-left {
            display: flex;
            gap: 8px;
            align-items: center;
            justify-content: flex-start;
        }

        .calendar-nav-center {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .calendar-nav-right {
            display: flex;
            gap: 8px;
            align-items: center;
            justify-content: flex-end;
        }

        .calendar-header button {
            background: none;
            border: none;
            color: var(--color17);
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .calendar-header button:hover {
            background: #006644;
        }

        .calendar-header button svg {
            width: 18px;
            height: 18px;
            fill: var(--color17);
            vertical-align: middle;
        }

        .calendar-header h2 {
            font-size: 20px;
            font-weight: 600;
            color: var(--color17);
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .calendar-header select {
            background: var(--color17);
            color: #1A3C34;
            border: 1px solid #E0E0E0;
            border-radius: 4px;
            padding: 6px;
            font-size: 14px;
            font-family: 'Noto Sans Arabic', sans-serif;
            cursor: pointer;
            max-width: 120px;
            text-overflow: ellipsis;
        }

        .calendar-header select:focus {
            outline: none;
            border-color: #006644;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
        }

        .calendar-grid div {
            padding: 8px;
            text-align: center;
            font-weight: 700;
            color: #333;
            font-size: 16px;
        }

        .calendar-day {
            background: var(--color17);
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            padding: 8px;
            text-align: center;
            transition: background 0.3s;
            color: #1A3C34;
            min-height: 60px;
        }

        .calendar-day:hover {
            background: linear-gradient(135deg, var(--color5), var(--color6));
            color: var(--color17);
        }

        .calendar-day.today {
            background: linear-gradient(135deg, var(--color1), var(--color2));
            border: 1px solid #E0E0E0;
            color: var(--color17);
        }

        .calendar-day div:first-child {
            font-size: 22px;
            font-weight: 700;
            color: var(--color1);
            line-height: 1.5;
        }

        .calendar-day div:last-child {
            font-size: 13px;
            font-weight: 400;
            margin-top: 4px;
            line-height: 1.5;
        }

        .calendar-day.today div:first-child,
        .calendar-day.today div:last-child {
            color: var(--color17);
        }
        
        .content-container {
            max-width: 900px;
            width: 100%;
            margin: 32px auto 0;
            padding: 0 16px;
        }

        .content-container h2 {
            font-size: 24px;
            font-weight: 600;
            color: var(--color1);
            margin-bottom: 16px;
            text-align: center;
        }

        .content-container p {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 16px;
            text-align: justify;
        }

        .faq-container {
            max-width: 900px;
            width: 100%;
            margin: 32px auto;
            padding: 0 16px;
        }

        .faq-container h2 {
            font-size: 24px;
            font-weight: 600;
            color: var(--color1);
            margin-bottom: 16px;
            text-align: center;
        }

        .faq-container details {
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            margin-bottom: 12px;
            padding: 12px;
            background: var(--color17);
            transition: border-color 0.3s;
        }

        .faq-container details[open] {
            border-color: var(--color1);
        }

        .faq-container summary {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            padding: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-container summary:hover {
            color: #006644;
        }

        .faq-container summary::after {
            content: '\25BC';
            font-size: 12px;
            color: var(--color1);
            transition: transform 0.3s;
        }

        .faq-container details[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-container details p {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin-top: 12px;
            padding: 0 8px;
            text-align: justify;
        }

        .islamic-date-heading {
            font-size: 30px;
            font-weight: 700;
            color: var(--color1);
            padding: 10px;
            text-align: center;
            margin-bottom: 15px;
        }

        .date-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 25px;
            border: 1px solid var(--color12);
            border-radius: 8px;
            padding: 16px;
        }

        .sunset-note {
            font-size: 14px;
            color: var(--color9);
            text-align: center;
            font-style: italic;
            margin: 4px 0;
        }

        .share-button {
            background: linear-gradient(135deg, var(--color1), var(--color2));
            color: var(--color17);
            border: none;
            padding: 10px 16px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            margin: 0 auto;
            transition: background 0.3s ease;
        }

        .share-button:hover {
            background: linear-gradient(135deg, var(--color2), var(--color1));
        }

        .share-button .share-icon {
            font-size: 18px;
            color: var(--color17);
        }

        .share-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 100;
            align-items: center;
            justify-content: center;
        }

        .share-popup.show {
            display: flex;
        }

        .share-popup-content {
            background: var(--color17);
            border-radius: 8px;
            padding: 20px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            position: relative;
        }

        .share-popup-content h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--color7);
            margin-bottom: 5px;
        }

        .share-date-box {
            background: #f0f0f0;
            border: 1px solid var(--color12);
            border-radius: 4px;
            padding: 16px;
            margin-bottom: 16px;
        }

        .share-date-box h3 {
            font-size: 17px;
            font-weight: 500;
            color: #868686;
            margin-bottom: 8px;
        }

        .share-date-box .islamic-date {
            font-size: 25px;
            font-weight: 600;
            color: var(--color7);
            margin: 8px 0;
        }

        .share-date-box .gregorian-date {
            font-size: 17px;
            color: var(--color7);
            margin: 4px 0;
        }

        .share-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

        .share-option {
            padding: 8px;
            border-radius: 4px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            transition: background 0.3s;
        }

        .share-option i {
            font-size: 18px;
            color: var(--color17);
        }

        .share-option#shareFacebook {
            background: #1877F2;
        }

        .share-option#shareFacebook:hover {
            background: #166FE5;
        }

        .share-option#shareWhatsApp {
            background: #25D366;
        }

        .share-option#shareWhatsApp:hover {
            background: #20BA57;
        }

        .share-option#shareX {
            background: #000000;
        }

        .share-option#shareX:hover {
            background: #333333;
        }

        .share-option#shareTelegram {
            background: #0088CC;
        }

        .share-option#shareTelegram:hover {
            background: #0077B3;
        }

        .share-option#copyButton {
            background: var(--color15);
            border: 1px solid var(--color12);
        }

        .share-option#copyButton:hover {
            background: var(--color2);
        }

        .share-option#copyButton i {
            color: var(--color7);
        }

        .close-button {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .close-button:hover {
            background: var(--color12);
        }

        .close-button svg {
            width: 18px;
            height: 18px;
            fill: var(--color7);
        }

        .copy-feedback {
            display: none;
            font-size: 14px;
            color: var(--color7);
            background: var(--color15);
            padding: 8px;
            border-radius: 4px;
            margin-top: 16px;
        }

        .copy-feedback.show {
            display: block;
        }

        .upcoming-date-container {
            border: 1px solid var(--color12);
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 32px;
        }

        .upcoming-date-container .date-table {
            margin-bottom: 16px;
        }

        .button {
            background: linear-gradient(135deg, var(--color1), var(--color2));
            color: var(--color17);
            border: none;
            padding: 10px 16px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 600;
            margin: 0 auto;
            transition: background 0.3s ease;
        }
        
        .button a {
            color: var(--color17);
        }

        .button:hover {
            background: linear-gradient(135deg, var(--color2), var(--color1));
        }

        .button img {
            height: 20px;
            width: auto;
            margin-right: 8px;
            vertical-align: middle;
            padding: 2px;
            background-color: var(--color17);
            border-radius: 50%;
        }

        .islamic-date-box {
            background: linear-gradient(135deg, var(--color1), var(--color2));
            padding: 25px;
            border-radius: 8px;
            flex: 1;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .islamic-date-box h2 {
            font-size: 20px;
            font-weight: 600;
            color: var(--color17);
            margin: 0 0 12px 0;
            position: relative;
            padding-bottom: 8px;
            text-align: center;
        }

        .islamic-date-box h2::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 40px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
        }

        .islamic-date-box p {
            font-size: 28px;
            font-weight: 800;
            color: var(--color17);
        }

        .date-time-container {
            flex: 1;
            display: flex;
            flex-direction: row;
            gap: 15px;
            margin-bottom: 5px;
        }

        .date-time-container .gregorian-date {
            background: var(--color17);
            border: 1px solid var(--color12);
            border-radius: 8px;
            padding: 16px;
            flex: 1;
            text-align: center;
        }

        .live-time {
            background: var(--color17);
            border: 1px solid var(--color12);
            border-radius: 8px;
            padding: 16px;
            flex: 1;
            text-align: center;
        }

        .date-time-container .gregorian-date h3,
        .live-time h3 {
            font-size: 15px;
            font-weight: 500;
            color: var(--color1);
            margin-bottom: 8px;
        }

        .date-time-container .gregorian-date p,
        .live-time p {
            font-size: 17px;
            font-weight: 600;
            color: var(--color7);
        }

        .table-heading {
            font-size: 20px;
            font-weight: 700;
            color: var(--color1);
            text-align: left;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--color2);
            padding-bottom: 8px;
            margin: 16px 0 12px 0;
        }

        .table-card {
            background: var(--color17);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 16px;
            margin-bottom: 24px;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-table th {
            text-align: left;
            color: var(--color1);
            font-weight: 600;
            font-size: 14px;
            padding: 12px 16px;
        }

        .info-table td {
            text-align: left;
            color: var(--color7);
            font-size: 14px;
            padding: 12px 16px;
        }

        .info-table tr:not(:last-child) td {
            border-bottom: 1px solid var(--color12);
        }

        .info-table tr:nth-child(even) td {
            background: var(--color13);
        }

        .info-table tr:hover td {
            background: var(--color16);
            transition: background 0.3s ease;
        }

        .date-table {
            width: 100%;
            border-collapse: collapse;
        }

        .date-table.upcoming-islamic-dates {
            border: 1px solid var(--color12);
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .date-table.upcoming-islamic-dates thead {
            background: linear-gradient(135deg, var(--color1), var(--color2));
        }

        .date-table.upcoming-islamic-dates th {
            padding: 12px;
            text-align: left;
            font-size: 14px;
            color: var(--color17);
            font-weight: 600;
        }

        .date-table.upcoming-islamic-dates td {
            padding: 12px;
            text-align: left;
            font-size: 14px;
        }

        .date-table.upcoming-islamic-dates th:not(:first-child):not(:last-child),
        .date-table.upcoming-islamic-dates td:not(:first-child):not(:last-child) {
            border-left: none;
            border-right: none;
        }
        
        .date-table.upcoming-islamic-dates tbody tr td {
            border-bottom: 1px solid var(--color12);
            border-top: none;
            border-left: none;
            border-right: none;
        }

        .date-table td {
            background: var(--color17);
            color: var(--color7);
        }

        .date-table tr:nth-child(even) td {
            background: var(--color13);
        }
        
        .date-table.upcoming-islamic-dates tbody tr:hover td {
            background-color: var(--color15);
            color: var(--color7);
        }
        
                .form-container {
            background: var(--color13);
            border: 1px solid var(--color12);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .form-container h2 {
            font-size: 20px;
            font-weight: 600;
            color: var(--color1);
            margin-bottom: 16px;
            text-align: center;
        }

        .date-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .form-fields {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            width: 100%;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
            min-width: 120px;
            max-width: 200px;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--color4);
        }

        .form-group select {
            padding: 10px;
            border: 1px solid var(--color11);
            border-radius: 4px;
            font-size: 14px;
            color: var(--color7);
            background: var(--color17);
            transition: border-color 0.3s;
        }

        .form-group select:focus {
            outline: none;
            border-color: var(--color2);
            box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
        }

        .form-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 16px;
        }

        .submit-button, .reset-button {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .submit-button {
            background: linear-gradient(135deg, var(--color1), var(--color2));
            color: var(--color17);
        }

        .submit-button:hover {
            background: linear-gradient(135deg, var(--color2), var(--color3));
        }

        .reset-button {
            background: var(--color8);
            color: var(--color17);
        }

        .reset-button:hover {
            background: var(--color9);
        }

        .result-container {
            background: var(--color13);
            border: 1px solid var(--color12);
            border-radius: 8px;
            padding: 20px;
            margin-top: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .result-container p {
            font-size: 16px;
            color: var(--color7);
            margin-bottom: 12px;
        }

        .result-container p strong {
            color: var(--color4);
        }
        
    /* ==========================
         About Contact Us Page CSS
   ========================== */
        .about-section {
            background: var(--color13);
            border: 1px solid var(--color12);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .about-section h2 {
            font-size: 24px;
            font-weight: 600;
            color: var(--color4);
            margin-bottom: 12px;
        }

        .about-section p {
            font-size: 16px;
            color: var(--color7);
            margin-bottom: 12px;
        }

        .about-section ul {
            list-style: none;
            margin-bottom: 12px;
        }

        .about-section ul li {
            font-size: 16px;
            color: var(--color7);
            margin-bottom: 8px;
            position: relative;
            padding-left: 24px;
        }

        .about-section ul li::before {
            content: '\f058'; /* Font Awesome check-circle */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--color2);
            position: absolute;
            left: 0;
            top: 6px;
        }
        
        .contact-section {
            background: var(--color13);
            border: 1px solid var(--color12);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: linear-gradient(135deg, var(--color1), var(--color2));
            color: var(--color17);
            text-decoration: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            transition: background 0.3s ease;
            margin-top: 16px;
            text-align: center;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, var(--color2), var(--color1));
        }
        
        a.cta-button:hover {
            text-decoration: none;
            color: var(--color17);
        }

        .about-container {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: space-between;
            margin-bottom: 25px;
        }

        .about-card {
            flex: 1;
            min-width: 280px;
            background: var(--color16);
            border: 1px solid var(--color12);
            border-radius: 8px;
            padding: 16px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }

        .about-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--color4);
            margin-bottom: 10px;
        }

        .about-card p {
            font-size: 15px;
            line-height: 1.9;
            color: var(--color7);
        }

        .footer {
            background: linear-gradient(135deg, var(--color1), var(--color2));
            color: var(--color17);
            padding: 32px 16px;
            text-align: left;
            box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 16px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--color17);
            position: relative;
            padding-bottom: 8px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
        }

        .footer ul {
            list-style: none;
                padding: 0;
                margin: 0;
        }

        .footer ul li {
            margin-bottom: 8px;
        }

        .footer ul li a {
            color: var(--color17);
            text-decoration: none;
            font-size: 14px;
        }

        .footer ul li a:hover {
            text-decoration: underline;
        }

        .footer .copyright {
            font-size: 14px;
            text-align: center;
            margin-top: 24px;
        }
        
        .footer .copyright hr {
            border: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
            margin: 24px 0 16px;
        }
        
        .footer .copyright p {
            color: var(--color17);
        }
        
        
        
        /* Media Queries */
        @media (max-width: 1024px) {
            .calendar-header {
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
            }

            .calendar-nav-left,
            .calendar-nav-right {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .header button#menuToggle {
                display: block;
            }

            .header a.logo img {
                max-height: 28px;
            }

            .nav.menu-open {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                display: flex;
                flex-direction: column;
                border-radius: 0;
                padding: 32px;
                max-width: none;
            }

            .nav button#menuClose {
                display: block;
                align-self: flex-end;
            }

            .nav ul {
                align-items: center;
                gap: 16px;
            }

            .nav ul li a {
                font-size: 19px;
                padding: 12px;
            }

            .breadcrumb {
                padding: 8px 12px;
            }

            .breadcrumb ol li,
            .breadcrumb ol li a {
                font-size: 9px;
            }

            .breadcrumb .home-icon {
                font-size: 9px;
            }

            .breadcrumb ol {
                gap: 1px;
            }
            
            .calendar-header {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                padding: 15px;
            }

            .calendar-nav-left {
                flex-direction: row;
                justify-content: center;
                gap: 8px;
            }

            .calendar-nav-center {
                margin: 8px 0;
            }

            .calendar-nav-right {
                flex-direction: row;
                justify-content: center;
                gap: 8px;
            }

            .calendar-header button {
                padding: 8px 12px;
                font-size: 14px;
            }

            .calendar-header button svg {
                width: 16px;
                height: 16px;
            }

            .calendar-header h2 {
                font-size: 18px;
                margin: 8px 0;
            }

            .calendar-header select {
                max-width: 100px;
                font-size: 12px;
                padding: 5px;
            }

            .calendar-grid div {
                font-size: 12px;
                padding: 4px;
            }

            .calendar-day {
                padding: 6px;
                min-height: 50px;
            }

            .calendar-day div:first-child {
                font-size: 18px;
            }

            .calendar-day div:last-child {
                font-size: 11px;
            }
            
            .date-time-container {
                flex-direction: column;
            }

            .islamic-date-box h2 {
                font-size: 18px;
            }

            .islamic-date-box p {
                font-size: 24px;
            }

            .date-time-container .gregorian-date h3,
            .live-time h3 {
                font-size: 14px;
            }

            .date-time-container .gregorian-date p,
            .live-time p {
                font-size: 15px;
            }

            .info-table th,
            .info-table td,
            .date-table th,
            .date-table td {
                font-size: 12px;
                padding: 8px 12px;
            }

            .table-heading {
                font-size: 18px;
            }

            .sunset-note {
                font-size: 12px;
            }

            .share-button {
                font-size: 14px;
                padding: 8px 12px;
            }

            .share-button .share-icon {
                font-size: 16px;
            }

            .button {
                font-size: 14px;
                padding: 8px 12px;
            }

            .button img {
                height: 18px;
            }

            .share-popup-content {
                width: 95%;
                padding: 16px;
            }

            .share-popup-content h3 {
                font-size: 18px;
            }

            .share-date-box h3 {
                font-size: 16px;
            }

            .share-date-box .islamic-date {
                font-size: 14px;
            }

            .share-date-box .gregorian-date {
                font-size: 16px;
            }

            .share-option {
                width: 36px;
                height: 36px;
            }

            .share-option i {
                font-size: 16px;
            }

            .close-button {
                padding: 6px;
            }

            .close-button svg {
                width: 16px;
                height: 16px;
            }

            .copy-feedback {
                font-size: 12px;
                padding: 6px;
            }
            
            .form-container {
                padding: 16px;
            }

            .form-group {
                min-width: 100px;
            }

            .form-group select {
                font-size: 13px;
                padding: 8px;
            }

            .submit-button, .reset-button {
                font-size: 14px;
                padding: 8px 16px;
            }

            .result-container {
                padding: 16px;
            }

            .result-container p {
                font-size: 14px;
            }
            
                        .about-section {
                padding: 16px;
            }

            .about-section h2 {
                font-size: 20px;
            }

            .about-section p,
            .about-section ul li {
                font-size: 14px;
            }

            .cta-button {
                font-size: 14px;
                padding: 8px 16px;
            }

            .about-card {
                min-width: 100%;
            }

            .footer-column {
                text-align: center;
            }

            .footer-column h3 {
                text-align: center;
            }

            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-column ul {
                text-align: center;
            }
        }

        @media (min-width: 769px) {
            .nav {
                display: flex;
                position: static;
                background: none;
                box-shadow: none;
                padding: 0;
            }

            .nav ul {
                flex-direction: row;
                gap: 16px;
            }

            .nav ul li a {
                margin-bottom: 0;
            }

            .nav button#menuClose {
                display: none;
            }
        }
        
        @media (max-width: 600px) {
            .main {
                padding: 15px;
            }
              h1 { font-size: 28px; }
              h2 { font-size: 24px; }
              h3 { font-size: 22px; }
              h4 { font-size: 20px; }
              h5 { font-size: 18px; }
              h6 { font-size: 16px; }
              
              p,  a,  ul li,  ol li {
                  font-size: 15px;
              }
        }
        
 /* ==========================
         END CSS
   ========================== */