#body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    line-height: 1.6;
}

.navbar {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand img {
    height: 45px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #1A3C5E;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #F15A29;
}

.hero-section {
    background: linear-gradient(135deg, #1A3C5E 0%, #F15A29 100%);
    color: white;
    padding: 20px 0;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    border-bottom: 5px solid #20c997;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://godesign.pk/assets/hero-pattern.png') repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-img {
    max-width: 110%;
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.03);
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #F15A29;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    color: #F15A29;
    margin-bottom: 15px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F15A29;
}

.cta-section {
    background: #F15A29;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 

20px 20px;
}

.footer {
    background: #1A3C5E;
    color: white;
    padding: 60px 0 40px;
}

.footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #F15A29;
}

.btn-primary {
    background-color: #F15A29;
    border-color: #F15A29;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d14e24;
    border-color: #d14e24;
    transform: scale(1.05);
}

.color-animate {
    animation: colorShift 6s linear infinite;
    font-weight: 500;
}

@keyframes colorShift {
    0% { color: #ff6b6b; }
    25% { color: #f7b731; }
    50% { color: #20c997; }
    75% { color: #1e90ff; }
    100% { color: #ff6b6b; }
}

.section-title {
    position: relative;

    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #F15A29;
    border-radius: 2px;
}

.pricing-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card .card-header {
    background: #F15A29;
    color: white;
    padding: 20px;
    border-bottom: none;
    text-align: center;
}

.pricing-card .card-body {
    padding: 30px;
}

.pricing-card.featured {
    border: 2px solid #F15A29;
    position: relative;
    top: -10px;
}

.pricing-card.featured .card-header {
    background: linear-gradient(135deg, #F15A29 0%, #d14e24 100%);
}

.pricing-card .btn {
    width: 100%;
    padding: 12px;
}

.contact-section {
    background: linear-gradient(135deg, #1A3C5E 0%, #F15A29 100%);
    padding: 80px 0;
    font-size: large;
}

.custom-input {
    background-color: white;
    border: 1px solid #e2e8f0;
    color: #333;
    padding: 12px 15px;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.custom-input:focus {
    border-color: #F15A29;
    box-shadow: 0 0 0 3px rgba(241, 90, 41, 0.1);
}

.custom-input::placeholder {
    color: #94a3b8;
}

.send-btn {
    background-color: #F15A29;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 12px 35px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background-color: #d44f23;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-img {
        margin-top: 30px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-button {
        margin-top: 15px;
    }

    .section-title::after {
        width: 60px;
    }

    .pricing-card.featured {
        top: 0;
    }
}

.pricing-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #F15A29;
    position: relative;
    top: -10px;
}

.pricing-card.featured .card-header {
    background: linear-gradient(135deg, #F15A29 0%, #d14e24 100%);
}

.pricing-card .card-header {
    background: #F15A29;
    color: white;
    padding: 20px;
    border-bottom: none;
    text-align: left;
}

.pricing-card .card-body {
    padding: 30px;
    text-align: left;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A3C5E;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.pricing-features li {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
}

.pricing-card .btn {
    width: auto;
    padding: 12px 30px;
}

@media (max-width: 768px) {
    .pricing-card.featured {
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero-img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px; /* More space on mobile */
    }
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slider-track {
    animation: slide-left 40s linear infinite;
    width: max-content;
}

@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Half if you duplicate items */
}

@media (max-width: 768px) {
    .slider-track > div {
        width: 100% !important;
    }
}

.apple-navbar {
    background-color: rgba(255, 255, 255, 0.9); /* soft white */
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* soft subtle shadow */
    padding: 12px 0;
    z-index: 9999;
    position: fixed;
    width: 100%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.apple-logo {
    height: 36px;
    transition: transform 0.3s ease;
}

.apple-logo:hover {
    transform: scale(1.05);
}

.apple-nav-links .nav-link {
    color: #1A3C5E;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 12px;
}

.apple-nav-links .nav-link:hover {
    color: #F15A29;
}

.apple-cta {
    color: #F15A29;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid #F15A29;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.apple-cta:hover {
    background-color: #F15A29;
    color: #fff;
    transform: scale(1.05);
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%2810, 10, 10, 0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .apple-cta {
        margin-top: 15px;
        text-align: center;
    }

    .navbar-collapse {
        background-color: white;
        padding: 20px 0;
        border-top: 1px solid #ddd;
    }

    .apple-nav-links {
        flex-direction: column;
        text-align: center;
    }
}

.about-section {
    background-color: #fff;
}

.about-section h2 {
    color: #1A3C5E;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-section ul li {
    font-size: 1rem;
    color: #333;
}

/* Admin-specific styles */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    padding: 12px;
    text-align: left;
}

.admin-table th {
    background-color: #1A3C5E;
    color: white;
}

.admin-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.admin-table tr:hover {
    background-color: #e2e8f0;
}