/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* Header styling */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    color: black;
    z-index: 1000;
}

/* Navbar for larger screens */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
}

.navbar .logo-container {
    flex: 0;
}

.navbar .logo {
    width: 150px;
}

.navbar .nav-links {
    display: flex;
    justify-content: center;
    flex: 3;
}

.navbar .nav-links .active {
    color: black;
    font-weight: 600;
}

.navbar .nav-links li {
    list-style: none;
    padding: 0 15px;
}

.navbar .nav-links a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: rgb(13, 170, 231);
}

.navbar .login-btn.desktop-login {
    background-color: #5079ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    transition: background-color 0.3s ease;
}

.navbar .login-btn.desktop-login:hover {
    background-color: rgb(0, 153, 255);
}

/* Hamburger Menu Icon (Visible on Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 30px;
    height: 4px;
    background-color: black;
}

/* Mobile Menu (Initially Hidden) */
.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #333;
    width: 100%;
    max-width: 250px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    list-style: none;
    margin: 10px 0;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.mobile-menu ul li a:hover {
    color: rgb(13, 170, 231);
}

/* Login Button (Inside Mobile Menu) */
.mobile-menu .login-btn.mobile-login {
    width: 100%;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 20px;
}

/* Show the mobile menu when active */
.mobile-menu.active {
    display: block;
}

/* Media Query for Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }

    .navbar .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 30px;
    }

    .navbar .logo-container {
        flex: 0;
    }

    .navbar .login-btn.desktop-login {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .navbar .logo {
        width: 80px;
    }
}

main {
    margin-top: 80px;
    padding: 20px;
    background-color: #F5F1E1;
}


/* Main content styles */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ln-card {
    background: linear-gradient(135deg, #D4AF37, #C0C0C0);
    color: #0055A5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 300px;
    min-height: 160px;
    text-transform: capitalize;
    font-family: "Segoe UI", Sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    align-items: center
}

.card {
    background-color: white;
    color: #0055A5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 300px;
    text-transform: capitalize;
    font-family: "Segoe UI", Sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.card:hover {
    background-color: #499e9e;
    transform: scale(1.1);
}

.card h3 {
    text-transform: capitalize;
    font-family: "Segoe UI", Sans-serif;
    font-size: 20px;
    margin: 0 0 10px;
}

.card p {
    font-size: 1m;
    color: #666;
}

.card:hover p {
    font-size: 0.9em;
    color: #ffffff;
}

.card:hover h3 {
    color: #f8f8f8;
}

.introduction {
    font-family: "Segoe UI", Sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: #0055A5;
    text-transform: capitalize;
    margin-top: 30px;
}

footer {
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h3 {
    margin-top: 0;
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.facebook {
    background-color: #3b5998;
    color: white;
}

.facebook:hover {
    background-color: #365899;
    transform: scale(1.1);
}

.youtube {
    background-color: #FF0000;
    color: white;
}

.youtube:hover {
    background-color: #CC0000;
    transform: scale(1.1);
}

.instagram {
    background-color: #E4405F;
    color: white;
}

.instagram:hover {
    background-color: #C13584;
    transform: scale(1.1);
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #3498db;
}

.copyright {
    text-align: center;
    width: 100%;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.grid-container-special {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-gap: 20px;
}

@media (max-width: 768px) {
    .grid-container-special {
        grid-template-columns: 1fr;
    }
}

.special-h2 {
    font-family: 'Segoe UI', sans-serif;
    color: inherit;
    font-weight: 300;
    line-height: 1.75em;
    margin-bottom: 1em;
    text-transform: uppercase;
    font-size: 1.7em;
    letter-spacing: 0.1em;
}

.special-p {
    font-family: 'Segoe UI', sans-serif;
    color: inherit;
    font-weight: 200;

    font-size: 1.4em;
    text-align: justify;
    letter-spacing: 0.05em;

}

.general-text {
    font-family: 'Segoe UI', sans-serif;
    color: inherit;
    font-weight: 300;
    font-size: 1.4em;
    text-align: justify;
}

.featured-icons {
    cursor: default;
    margin: -0.75em 0 0 0;
    opacity: 0.35;
    overflow: hidden;
    position: relative;
}

.featured-icons li {
    display: block;
    float: left;
    text-align: center;
    width: 50%;
}

.featured-icons li .icon {
    display: inline-block;
    font-size: 6.25em;
    height: 1.25em;
    line-height: 1em;
    width: 1em;
}

.featured-icon-card {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 4em;
    opacity: 0.75;
    text-decoration: none;
}

.featured-card {
    background-color: white;
    color: #0055A5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 300px;
    min-height: 300px;
    text-transform: capitalize;
    font-family: "Segoe UI", Sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
}

.featured-card:hover {
    background: linear-gradient(135deg, #D4AF37, #C0C0C0);
    ;
    transform: scale(1.1);
}

.details-card {
    background-color: white;
    color: #0055A5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    max-width: 300px;
    min-height: 180px;
    text-align: center;
    text-transform: capitalize;
    font-family: "Segoe UI", Sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
}

.details-card:hover {
    background: linear-gradient(135deg, #D4AF37, #C0C0C0);
    transform: scale(1.1);
}

.pns-card {
    background-color: white;
    color: #0055A5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    width: 300px;
    height: 170px;
    text-align: center;
    text-transform: capitalize;
    font-family: "Segoe UI", Sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
}

.pns-card:hover {
    background: linear-gradient(135deg, #D4AF37, #C0C0C0);
    transform: scale(1.1);
}

.golden-card {
    background: linear-gradient(135deg, #D4AF37, #C0C0C0);
    color: #0055A5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 20px;
    max-width: 340px;
    min-height: 350px;
    text-align: center;
    text-transform: capitalize;
    font-family: "Segoe UI", Sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
}

.golden-card:hover {
    background: linear-gradient(135deg, #e7b309, #939088);
    transform: scale(1.1);
}

.row {
    border-bottom: solid 1px transparent;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wrapper {
    margin-bottom: 5em;
    padding: 5em;
}

.wrapper.special-alt {
    text-align: center;
}

.wrapper.style1 {
    padding: 0;
}

.wrapper.style2 {
    background-color: #4A4A4A;
    background-image: url("images/light-bl.svg"), url("images/light-br.svg");
    background-position: bottom left, bottom right;
    background-repeat: no-repeat, no-repeat;
    background-size: 25em, 25em;
    color: #fff;
}

.wrapper.style2 .button:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

.wrapper.style2 .button.special {
    background: #fff;
    border-color: #fff;
    color: #83d3c9 !important;
}

.wrapper.style2 .button.special:hover {
    border-color: inherit !important;
    color: #fff !important;
}

.wrapper.style3 {
    background: #fff;
    color: inherit;
}

.wrapper.style4 {
    background: #fff;
    color: inherit;
    padding: 4em;
}

.wrapper.style5 {
    background-color: #00BFA5;
    background-image: url("images/light-bl.svg"), url("images/light-br.svg");
    background-position: bottom left, bottom right;
    background-repeat: no-repeat, no-repeat;
    background-size: 25em, 25em;
    color: #fff;
}

.wrapper.style5 .button:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

.wrapper.style5 .button.special {
    background: #fff;
    border-color: #fff;
    color: #83d3c9 !important;
}

.wrapper.style5 .button.special:hover {
    border-color: inherit !important;
    color: #fff !important;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #333;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn:hover::before {
    width: 0;
    height: 0;
}

.btn:focus {
    outline: none;
}

.golden-box {
    background: linear-gradient(135deg, #dcae18, #928e8e);
    color: #0055A5;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-transform: capitalize;
    font-family: "Segoe UI", Sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
}


.fp-header {
    background: linear-gradient(135deg, #f0c022, #403e3e);
    color: #f0fbf6;
    text-align: center;
    padding: 20px 0;
}

.fp-header h1 {
    margin: 0;
    font-size: 2.5em;
}

.fp-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fp-section-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.fp-section-content {
    margin-bottom: 40px;
}

.fp-service-list {
    list-style-type: none;
    padding: 0;
}

.fp-service-list li {
    font-size: 1.2em;
    margin: 10px 0;
}

.fp-service-list li::before {
    content: "✔️";
    margin-right: 10px;
    color: green;
}

.fp-cta-button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.fp-cta-button:hover {
    background-color: #0056b3;
}

.res-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
}

.res-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 300px;
}

.res-card:hover {
    transform: translateY(-10px);
}

.res-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.res-card-content {
    padding: 15px;
}

.res-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.res-card-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}