:root {
    --primary: #2563EB;
    --accent: #10B981;
    --secondary-accent: #FBBF24;
    --ink: #111827;
    --muted: #6B7280;
    --surface: #FFFFFF;
    --bg: #F9FAFB;
    --ring: rgba(37, 99, 235, 0.25);
    --radius: 16px;
    --shadow-1: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-2: 0 10px 35px rgba(0, 0, 0, 0.1);
    --container: 1280px;
    --hue: 223;
    --trans-dur: 0.3s;
    --trans-timing: cubic-bezier(0.76, 0.05, 0.24, 0.95);
    --trans-timing-in: cubic-bezier(0.76, 0.05, 0.86, 0.06);
    --trans-timing-out: cubic-bezier(0.05, 0.76, 0.06, 0.86);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

/* Utilities */
.container {
    width: min(var(--container), 96%);
    margin: 0 auto;
    padding-left: clamp(0.5rem, 4%, 1rem);
    padding-right: clamp(0.5rem, 4%, 1rem);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    justify-content: center;
    min-width: 120px;
    font-size: 1rem;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--ring);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: var(--shadow-1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.06);
}

.eyebrow {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.2px;
    color: var(--ink);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.brand .logo {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-1);
    flex-shrink: 0;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

nav a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-cta .btn {
    margin: 0;
    padding: 0.6rem 1rem;
    min-width: 70px;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile menu */
.menu-btn {
    display: none;
    background: transparent;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.menu-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.menu-btn.active svg .line1 {
    transform: translateY(6px) rotate(45deg);
}

.menu-btn.active svg .line2 {
    opacity: 0;
}

.menu-btn.active svg .line3 {
    transform: translateY(-6px) rotate(-45deg);
}

#mobileMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    padding: 4rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    z-index: 40;
    overflow-y: auto;
}

#mobileMenu.open {
    right: 0;
}

#mobileMenu a {
    display: block;
    padding: 1rem 0;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#mobileMenu .nav-cta-mobile {
    padding: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

#mobileMenu .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

/* Make signup look like a button, not input */
#mobileMenu .btn-secondary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

/* Overlay for mobile menu */
body.menu-open {
    overflow: hidden;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 39;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero */
.hero {
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero h1 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.15;
    margin: 0.6rem 0;
    letter-spacing: 0.2px;
    color: var(--ink);
}

.hero p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 50ch;
}

.hero .actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.hero-figure {
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    border: none;
}

.hero-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

/* Sections */
.section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section h2 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin: 0 0 0.6rem;
    color: var(--ink);
}

.section p.lead {
    color: var(--muted);
    margin: 0 0 1.5rem;
    max-width: 60ch;
    font-size: 1rem;
}

.features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow-1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-2);
    border-color: var(--accent);
}

.card .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    display: grid;
    place-items: center;
    color: var(--primary);
    margin-bottom: 0.6rem;
    flex-shrink: 0;
}

.card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.3rem;
}

/* Carousel */
.carousel {
    --items: 6;
    --carousel-duration: 30s;
    --carousel-width: min(80vw, 1200px);
    --carousel-item-width: 250px;
    --carousel-item-height: 400px;
    --carousel-item-gap: 1.5rem;
    --clr-cta: var(--primary);
    position: relative;
    width: var(--carousel-width);
    height: var(--carousel-item-height);
    overflow: hidden;
    margin: 0 auto;
}

.carousel[mask] {
    mask-image: linear-gradient(to right, transparent, var(--surface) 10% 90%, transparent);
}

.carousel[reverse]>article {
    animation-direction: reverse;
}

.carousel:hover>article {
    animation-play-state: paused;
}

.carousel>article {
    position: absolute;
    top: 0;
    left: calc(100% + var(--carousel-item-gap));
    width: var(--carousel-item-width);
    height: var(--carousel-item-height);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow-1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    animation: marquee var(--carousel-duration) linear infinite;
    animation-delay: calc(var(--carousel-duration) / var(--items) * var(--i) * -1);
}

.carousel>article:nth-child(1) {
    --i: 0;
}

.carousel>article:nth-child(2) {
    --i: 1;
}

.carousel>article:nth-child(3) {
    --i: 2;
}

.carousel>article:nth-child(4) {
    --i: 3;
}

.carousel>article:nth-child(5) {
    --i: 4;
}

.carousel>article:nth-child(6) {
    --i: 5;
}

.carousel>article:nth-child(7) {
    --i: 0;
}

.carousel>article:nth-child(8) {
    --i: 1;
}

.carousel>article:nth-child(9) {
    --i: 2;
}

.carousel>article:nth-child(10) {
    --i: 3;
}

.carousel>article:nth-child(11) {
    --i: 4;
}

.carousel>article:nth-child(12) {
    --i: 5;
}

.carousel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 4px) calc(var(--radius) - 4px) 0 0;
}

.carousel>article>*:not(img) {
    padding: 0 1rem;
}

.carousel>article h2 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding-block: 0.5rem 0.25rem;
    margin: 0;
    color: var(--primary);
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    white-space: normal;
    line-height: 1.2;
}

.carousel>article p {
    margin: 0;
    color: var(--muted);
    text-align: center;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    white-space: normal;
    font-size: 0.9rem;
    line-height: 1.4;
}

.carousel>article>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    height: 100%;
}

.carousel>article a {
    text-decoration: none;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    align-self: center;
    transition: background 0.2s ease, color 0.2s ease;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    min-width: 100px;
}

.carousel>article a:hover,
.carousel>article a:focus-visible {
    background: var(--primary);
    color: #fff;
    outline: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(var(--items) * (var(--carousel-item-width) + var(--carousel-item-gap)) * -1));
    }
}



.arrow-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 3rem;
}

.arrow-button {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.arrow-button:hover {
    background-color: var(--accent);
}

.arrow-button svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* CTA Banner */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: calc(var(--radius) + 4px);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    
}

.cta h3 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin: 0;
    max-width: 35ch;
}

/* Contact Box */
.contact-box {
    position: relative;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-box .contact-video {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    border-radius: var(--radius);
}

.contact-box .contact-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.contact-box .contact-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.contact-box .contact-image {
    position: relative;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-1);
}

.contact-box .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-box .contact-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
}

.contact-box h2 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin: 0 0 0.6rem;
}

.contact-box p.lead {
    color: var(--muted);
    margin: 0 0 1.2rem;
    font-size: 0.95rem;
    max-width: 45ch;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-1);
}

.contact-form label {
    font-weight: 500;
    color: var(--ink);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    background: var(--bg);
    color: var(--ink);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--ring);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form input[type="file"] {
    padding: 0.5rem;
    border: none;
}

.contact-form input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.contact-form input[type="file"]::file-selector-button:hover {
    transform: translateY(-1px);
}

.contact-form .btn-primary {
    align-self: flex-start;
    width: auto;
    min-width: 140px;
    padding: 0.8rem 1.6rem;
}

/* FAQ */
.faq-item {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-1);
}

.faq-item summary {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    margin-left: 0.8rem;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin: 0.8rem 0 0;
    color: var(--muted);
}

/* Footer */
footer {
    padding: 2.5rem 0 3rem;
    background: var(--ink);
    color: #cbd5e1;
}

.fgrid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 1.5rem;
}

.fbrand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 700;
    color: #e2e8f0;
    font-size: 1.2rem;
}

.fbrand .logo {
    background: linear-gradient(135deg, var(--accent), var(--secondary-accent));
    color: #111827;
    flex-shrink: 0;
}

.flinks h4 {
    color: #fff;
    margin: 0 0 0.6rem;
    font-size: 1rem;
}

.flinks a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.flinks a:hover {
    color: #fff;
    text-decoration: underline;
}

.socials {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.socials a {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: #e2e8f0;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.socials a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
    text-align: center;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: clamp(10px, 5vw, 20px);
    right: clamp(10px, 5vw, 20px);
    z-index: 100;
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: var(--shadow-2);
    text-decoration: none;
    font-weight: 600;
    font-size: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sticky-cta.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta:hover {
    transform: translateY(-4px) scale(1.05);
}

.sticky-cta::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .hero-wrap {
        gap: 2rem;
    }

    .features {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .carousel {
        --carousel-width: 90vw;
        --carousel-item-width: 220px;
        --carousel-item-height: 360px;
    }

    .testimonial-grid {
        gap: 3rem;
    }

    .image-container {
        height: 20rem;
    }

    .fgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        height: 56px;
    }

    .menu-btn {
        display: block;
    }

    nav ul {
        display: none;
    }

    .nav-cta .btn {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
    }

    .hero-wrap {
        grid-template-columns: 1fr;
    }

    .hero-figure {
        display: none;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .carousel {
        --carousel-width: 90vw;
        --carousel-item-width: 200px;
        --carousel-item-height: 320px;
        --carousel-item-gap: 1rem;
        --carousel-duration: 20s;
    }

    .carousel>article h2 {
        font-size: 1rem;
        -webkit-line-clamp: 3;
    }

    .carousel>article p {
        font-size: 0.85rem;
    }

    .carousel>article a {
        align-self: center;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-container {
        height: 16rem;
    }

    .arrow-buttons {
        padding-top: 1.5rem;
        justify-content: center;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-box .contact-image {
        display: none;
    }

    .contact-form {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
        padding: 0.7rem;
    }

    .contact-form .btn-primary {
        align-self: stretch;
    }

    .fgrid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .sticky-cta {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .brand .logo {
        width: 28px;
        height: 28px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .card {
        padding: 1rem;
    }

    .carousel>article h2 {
        font-size: 1rem;
    }

    .testimonial-container {
        padding: 1.5rem;
    }

    .name {
        font-size: 1.3rem;
    }

    .quote {
        font-size: 1rem;
    }

    .cta {
        flex-direction: column;
        text-align: center;
    }

    .cta .btn {
        width: 100%;
    }

    .contact-form .btn-primary {
        align-self: stretch;
    }

    .socials {
        gap: 0.4rem;
    }

    .socials a {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 769px) {
    .menu-btn {
        display: none;
    }
}
.campus-section {
  background: #e6e1e1b9;
  padding: 3rem 1rem;
}

.campus-container {
  max-width: 1200px;
  margin: 0 auto;
}

.campus-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.campus-header h2 {
  font-size: 1.8rem;
  margin: 0;
}

.campus-lead {
  flex-basis: 100%;
  margin-top: .5rem;
  color: #555;
}



.campus-btn:hover { background:linear-gradient(135deg, var(--primary), var(--accent)); }

.campus-carousel{
  position: relative;
  overflow-x: hidden;   /* keep scrollbar hidden */
  overflow-y: visible;  /* allow the hovered card to rise */
 
}

.campus-track{
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: visible;  /* allow vertical overflow */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.campus-track::-webkit-scrollbar{ display:none; }






.campus-logo img {
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.campus-card h3 {
  margin: .5rem 0;
  font-size: 1.1rem;
  color: #111;
}

.campus-card p {
  color: #666;
  font-size: .95rem;
  margin-bottom: 1rem;
}

.campus-cta {
  display: inline-block;
  padding: .6rem 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s;
}

.campus-cta:hover { background: linear-gradient(135deg, var(--primary), var(--accent)); }

/* Mobile tweak */
@media (max-width: 768px) {
  .campus-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}
.campus-controls {
    display: flex;
    gap: .5rem;
    flex-direction: row;
    align-content: stretch;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 30px;
}
.campus-card {
  flex: 0 0 280px;
  border: 1px solid transparent; /* baseline */
  border-radius: 1rem;
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  scroll-snap-align: start;
  transition: border .25s ease, box-shadow .25s ease, transform .25s ease;
}

.campus-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--accent); /* ensure full border shows */
}


/* Buttons */
.campus-btn {
  display: flex;                /* centers arrow */
  align-items: center;
  justify-content: center;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: var(--shadow-1);
  width: 44px;
  height: 44px;
  border-radius: 50%;           /* fully round */
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.campus-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  transform: scale(1.1);        /* smooth grow effect */
}
/* ===== Base helpers ===== */
:root{
  --radius-lg: 18px;
  --radius-md: 12px;
  --bg-elev: #0b0f1a;          /* dark pill background */
  --ink: #0e0e10;              /* page text on light */
  --ink-on-dark: #f5f7ff;      /* text in dark pill */
}

.visually-hidden{position:absolute!important;clip:rect(1px,1px,1px,1px);padding:0;border:0;height:1px;width:1px;overflow:hidden}

/* ===== Layout ===== */
.finder-section{
  padding: clamp(2.5rem, 3vw + 1rem, 4rem) 1rem;
  background: #F9FAFB;
}
.finder-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.finder-title{
  font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 1rem;
}
.finder-sub{
  color:#555; margin-top: .75rem;
}

/* ===== Finder bar (dark rounded pill) ===== */

.finder-prefix{
  white-space: nowrap;
  opacity: .8;
  font-size: .9rem;
  color: black;
}



/* token (selected pill) */
.finder-token{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: .25rem .5rem;
  font-size: .85rem;
}
.token-x{
  all: unset;
  cursor: pointer;
  line-height: 1;
  padding: 0 .25rem;
  opacity: .8;
}
.token-x:hover{ opacity: 1; }

/* CTA button (rounded + gradient) */
.finder-bar {
  display: flex;
  flex-direction: column;  /* stack items vertically */
  gap: .75rem;
  padding: 1rem;
  background:#ffff;
  border-radius: 28px;
  box-shadow: var(--shadow-2, 0 10px 30px rgba(0,0,0,.15));
}

.finder-field {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;                /* full width */
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: .6rem .75rem;
  color: var(--ink-on-dark);
  min-height: 50px;
}

.finder-field input {
  flex: 1;                     /* expands full width */
  border: 0;
  background: transparent;
  color: var(--ink-on-dark);
  outline: none;
  font-size: 1rem;
  color: black;
}

.finder-btn {
  border: none;
  border-radius: 24px;
  padding: .75rem 1.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-1, 0 6px 18px rgba(0,0,0,.12));
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  width: 100%;                  /* make button full width */
  text-align: center;
}
.finder-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-2, 0 10px 30px rgba(0,0,0,.18));
}

.finder-btn:active{ transform: translateY(0); opacity: .95; }

/* ===== Right gallery ===== */
.finder-right{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.finder-card{
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: #0f172a; /* fallback; replace with bg images if you want */
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}
.finder-card::after{
  content:"";
  position:absolute;inset:0;
  background: radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,.12), transparent 50%),
              linear-gradient(180deg, transparent, rgba(0,0,0,.35));
}
.finder-tag{
  position:absolute;left:.6rem;bottom:.6rem;
 
  color:#fff;padding:.35rem .6rem;border-radius:10px;
  font-size:.8rem;font-weight:600;
  border:1px solid rgba(255,255,255,.18);
}
.finder-badge{
  position:absolute;left:.6rem;top:.6rem;
  background:#0b1020;color:#fff;padding:.25rem .5rem;border-radius:8px;
  font-size:.7rem;border:1px solid rgba(255,255,255,.16);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .finder-wrap{ grid-template-columns: 1fr; }
  .finder-right{ order: 2; }
}
@media (max-width: 720px){
  .finder-bar{
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .finder-btn{ width: 100%; }
}
/**
* Template Name: Ninestars
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/ninestars-free-bootstrap-3-theme-for-creative/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, Raleway, sans-serif;
  color: #212529;
  font-weight: 500;
}


:root {
  --primary: #2563EB;
  --accent: #10B981;
  --secondary-accent: #FBBF24;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
  text-decoration: none;
  opacity: 50%;
}

i {
  background-color: linear-gradient(135deg, var(--primary), var(--accent));
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Raleway", sans-serif;
}

/* .banner {
  background-color: #ef7f4d;
  color: white;
  padding: 10px;
  text-align: center;
} */
/* .banner {
			background-color: #ee7843;
			color: white;
			padding: 10px;
			text-align: center; */
/* new */
/* position: fixed; */
/* top: 0;
			width: 100%;
			z-index: 999;
		}
		.close {
			float: right;
			cursor: pointer;
		} */
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #fff;
  font-size: 13px;
  padding: 15px;
  font-size: large;
  font-weight: bold;
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.banner .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #7a6960;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 75px;
}


.container {
  width: min(var(--container), 96%);
  margin: 0 auto;
  padding-left: clamp(0.5rem, 2%, 1rem);
  padding-right: clamp(0.5rem, 2%, 1rem);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#main {
  margin-top: -10px;
}

#main1{
  margin-top:-50px;
}

#main2{
  margin-top:20px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  position: relative;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #4e4039;
  white-space: nowrap;
  transition: 0.3s;
  /*font-weight: bold;*/

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {}

.navbar .getstarted,
.navbar .getstarted:focus {

  padding: 8px 25px;
  margin-left: 10px;
  background-color: #fff;
  color: #2563EB;
  border-radius: 50px;
  border: solid;
  border-color: #2563EB;
  margin-top: 5px;
  margin-right: 5px;

}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}


.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--ink);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

#login {
  margin-top: 5px;
  margin-right: 5px;
  padding-right: 35px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#login:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px gray;
}

/* Media query for smaller screens */

.navbar form input[type="search"] {
  padding: 0px 0px;
  margin-right: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #eee;
  /* width: 300px; */
}

@media screen and (max-width: 1200px) {
  .navbar form input[type="search"] {
    width: 200px;
  }
}

@media screen and (max-width: 1100px) {
  .navbar form input[type="search"] {
    width: 150px;
  }
}

@media screen and (max-width: 992px) {
  .navbar form input[type="search"] {
    width: 100px;
  }
}

@media screen and (max-width: 576px) {
  .navbar form input[type="search"] {
    width: 40px;
  }

  .navbar form button {
    display: none;
  }

  .navbar form input[type="search"]::placeholder {
    color: #fff;
  }

  .navbar form input[type="search"] {
    background: url(https://cdn-icons-png.flaticon.com/512/149/149852.png) no-repeat center;
    background-size: 20px;
    padding-left: 25px;
    color: transparent;
  }

  .navbar form input[type="search"]:focus {
    width: 150px;
    background-color: #eee;
    color: #000;
  }

  .navbar form input[type="search"]:focus::placeholder {
    color: #000;
  }
}

.btn-outline-success {
  color: #fff;
  background-color: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: var(--primary);
}

.btn-outline-success:hover {
  color: #fff;
  background-color: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: var(--primary);
}

/* CAROUSEL CSS START */


.carousel-item {
  /* display: flex; */
  justify-content: center;
}

.card {
  /* flex: 1; */
  color: #000;
  margin: 0 1rem;
  border-radius: 1rem 1rem 1rem 1rem;
  box-shadow: 0 0 0.5rem o.5rem rgba(0, 0, 0, 0.3);

}

.card-img-top {
  height: 200px;
  object-fit: cover;
  width: 100%
}

.card-body {
  padding: 1rem;
}

h4.card-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}


/* CAROUSEL CSS END */


/* PRICING PLAN START */

.single_price_plan {
  position: relative;
  z-index: 1;
  border-radius: 0.5rem 0.5rem 0 0;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  margin-bottom: 50px;
  background-color: #ffffff;
  padding: 3rem 4rem;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_price_plan {
    padding: 3rem;
  }
}

@media only screen and (max-width: 575px) {
  .single_price_plan {
    padding: 3rem;
  }
}

/* .single_price_plan::after {
  position: absolute;
  content: "";
  background-image: url("https://bootdey.com/img/half-circle-pricing.png");
  background-repeat: repeat;
  width: 100%;
  height: 17px;
  bottom: -17px;
  z-index: 1;
  left: 0;
} */
.single_price_plan .title {
  text-transform: capitalize;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  margin-bottom: 2rem;
}

.single_price_plan .title span {
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  font-size: 12px;
  text-transform: uppercase;
  background-color: #ee7843;
  display: inline-block;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.single_price_plan .title h3 {
  font-size: 1.25rem;
}

.single_price_plan .title p {
  font-weight: 300;
  line-height: 1;
  font-size: 14px;
}

.single_price_plan .title .line {
  width: 80px;
  height: 4px;
  border-radius: 10px;
  background-color: #ee7843;
}

.single_price_plan .price {
  margin-bottom: 1.5rem;
}

.single_price_plan .price h4 {
  position: relative;
  z-index: 1;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0;
  color: #ee7843;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#ee7843), to(#b34000));
  background-image: linear-gradient(to right, #ee7843, #b34000);
  /* background-image: -webkit-gradient(linear, left top, right top, from(#9e5400), to(#ff6417)); */
  /* background-image: linear-gradient(90deg, #9e5400, #ff6417); */
}

.single_price_plan .description {
  position: relative;
  margin-bottom: 1.5rem;
}

.single_price_plan .description p {
  line-height: 16px;
  margin: 0;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.single_price_plan .description p i {
  color: #2ecc71;
  margin-right: 0.5rem;
}

.single_price_plan .description p .lni-close {
  color: #e74c3c;
}

.single_price_plan.active,
.single_price_plan:hover,
.single_price_plan:focus {
  -webkit-box-shadow: 0 6px 50px 8px rgba(21, 131, 233, 0.15);
  box-shadow: 0 6px 50px 8px rgba(238, 120, 67, 0.15);
}

.single_price_plan .side-shape img {
  position: absolute;
  width: auto;
  top: 0;
  right: 0;
  z-index: -2;
}

.section-heading h3 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 3.125rem;
  letter-spacing: -1px;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.section-heading .line {
  width: 120px;
  height: 5px;
  margin: 30px auto 0;
  border-radius: 6px;
  background: var(--accent);
  /* background: -webkit-gradient(linear, left top, right top, from(#9e5400), to(#ff6417)); */
  background: -webkit-gradient(linear, left top, right top, from(#ee7843), to(#b34000));
  /* background: linear-gradient(to right, #9e5400, #ff6417); */
  background: linear-gradient(to right, var(--primary), var(--accent));
}


/* PRICING PLAN END */


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #7a6960;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 64, 57, 0.9);
  transition: 0.3s;
  z-index: 1;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #7a6960;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--ink);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--ink);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background: #fef8f5;
  border-bottom: 2px solid #fcebe3;
  margin: 0 0 -72px 0;
  /*72px 0 -72px 0;   */
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #4e4039;
}

#hero h2 {
  color: #a08f86;
  margin: 15px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  /* margin-top: 30px; */
  color: #fff;
  background: var(--primary);
}

#hero .btn-get-started:hover {
  background: var(--primary)
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: calc(100vh - 72px);
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 120vh;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 1.875rem 0 5rem 0;
  overflow: hidden;
}

.section-bg {
  background-color: white;
  margin-top: 0px;
}

.section-title {
  text-align: center;
  padding-bottom: 5px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 900;
  padding-bottom: 0;
  line-height: 3px;
  margin-top: 5px;
  margin-bottom: 25px;
  color: #4e4039;
}

.section-title h1 {
  padding-bottom: 15px;
  margin-bottom: 5px;
  position: relative;
  font-size: 43px;
  font-weight: 700;
  color: #000000;
}

.section-title p {
  padding-bottom: 5px;
  margin-bottom: 30px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #4e4039;
}

.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), (--accent));
  bottom: 0;
  left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 70px 70px;
  background:var(--primary);
  min-height: 100px;
  color:white;
  justify-content: center;
  align-items: center;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  justify-content: center;
  align-items: center;

}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 34px;
  color: #000000;
}

.about h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #000000;
}

.about i {
  font-size: 48px;
  margin-top: 5px;
  color: var(--accent);
}

.about p {
  font-size: 15px;
  color: #5a6570;
}


@media (max-width: 991px) {
  .about .about-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .about .about-img img {
    max-width: 90%;
  }
}

.about {
  padding: 100px 0 100px 0;
  background: linear-gradient(135deg, #e7f9df, #85b0ff);

}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 50px 10px 10px 10px;
  position: relative;
  overflow: hidden;
  margin: 150px 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--primary);
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/* Services Section Styles */

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;

}

.section-title p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 0;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 50%, var(--accent) 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icons {
  display: flex;
  gap: 20px;
}

.service-icons i {
  font-size: 2rem;
  color: white;
  animation: iconFloat 2s ease-in-out infinite;
}

.service-icons i:nth-child(2) {
  animation-delay: 0.3s;
}

.service-icons i:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.service-content {
  padding: 25px;
  position: relative;
}

.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #ffff 100%);
  backdrop-filter: blur(10px);    
  color: gray;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border-color: gray;
}

.service-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.service-card:hover .service-badge::before {
  left: 100%;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.service-desc {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature-tag {
  background: #f8f9fa;
  color: #495057;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-tag i {
  color: #28a745;
  font-size: 0.9rem;
}

.service-card:hover .feature-tag {
  background: #e8f5e8;
  border-color: #28a745;
  transform: scale(1.05);
}

.service-action {
  margin-top: auto;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea 0%, var(--accent) 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-learn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-learn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

.btn-learn-more:hover::before {
  left: 100%;
}

.btn-learn-more i {
  transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .service-title {
    font-size: 1.1rem;
    min-height: auto;
  }
  
  .service-desc {
    min-height: auto;
  }
  
  .service-features {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .row.row-cols-1.row-cols-md-4 {
    margin: 0 -5px;
  }
  
  .col {
    padding: 0 5px;
    margin-bottom: 15px;
  }
  
  .service-image-container {
    height: 180px;
  }
}

/* Loading Animation */
.service-card {
  animation: slideInUp 0.6s ease-out backwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation delays */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

/* Pulse effect  */
.service-card:nth-child(1)::after,
.service-card:nth-child(3)::after {
  content: 'Popular';
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212529;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #eb5d1e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(122, 105, 96, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #eb5d1e;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 0;
  font-size: 20px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #eb5d1e;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #eb5d1e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #eb5d1e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(122, 105, 96, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eae7e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #eb5d1e;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-weight: 600;
  padding-left: 25px;
  cursor: pointer;
  color: #c54811;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: #343a40;
}

.faq .faq-list .collapsed:hover {
  color: #eb5d1e;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(78, 64, 57, 0.6);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #eb5d1e;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(78, 64, 57, 0.95) 0%, rgba(78, 64, 57, 0.95) 15%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

.clients .clients-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #eb5d1e;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #eb5d1e;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #eb5d1e;
  border-bottom: 3px solid #eb5d1e;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #eb5d1e;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdf1ec;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #7a6960;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ab9d95;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #eb5d1e;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #eb5d1e;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #eb5d1e;
  border-bottom: 3px solid #eb5d1e;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #eb5d1e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ef7f4d;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;

}

#footer .footer-newsletter {
  padding: 50px 0;
  background: var(--ink);
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #5c5c5c;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #212529;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #5c5c5c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--accent);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--primary);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;

}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #212529;
}

#footer .credits a {
  color: var(--accent);
}

@media (max-width: 575px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}

/* ADDING CSS ON THE UNIVERSITY PAGES */

.img-uni {
  padding-top: 0;
  position: relative;
  width: 100%;
  padding-bottom: 50px;
  /* background-color: #0303031f; */

}

.img-uni img {
  width: 100%;
  height: 300px;
  /* height: auto; */
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: radial-gradient(rgba(0, 0, 0, 0.181), rgba(252, 164, 106, 0.214));
}


.img-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  background-color: #0303031f;
}


.cardd {
  border-radius: 0;
  height: 100%;
}

.cardd-img-top {
  height: 200px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .card {
    height: auto;
    max-width: 300px;
  }
}

.cardd {
  margin-bottom: 10px;
  width: 200px;
}

.cardd-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
  /* width: 100%; */
}
.cardd-body {
  padding: 1rem;
  padding-left: 0;
}

.cardd-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.cardd-text {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Additional CSS for the second row */
.row2 {
  margin-top: 15px;
}

/* ALGEBRA CSS */
.inner-page {
  display: flex;
}

.left-card {
  flex: 1;
}

.right-card {
  flex: 2;
  margin-left: 2rem;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  width: 36rem;
}

/*====== Go Back button ======*/
.go-back {
      margin: 20px 0;
    }

    .go-back a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      margin:0;
    }

    .go-back a:hover {
      background: linear-gradient(135deg, var(--accent), var(--primary));
      transform: translateX(-3px);
        color: #fff;
    }

  