/* ===== CSS VARIABLES ===== */
:root {
    --primary-blue: #0101fe;
    --background-color: #F8F8F8;
    --text-dark: #0404a1;
    --text-light: #6c757d;
    --text-white: #f0efef;
}



/* ===== RESET & BASE STYLES ===== */
body {
    overflow-x: hidden;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-white);
    background-color: var(--background-color);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    min-height: 100vh;
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
    width: 70%;
    margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, #03037f 0%, #6262f9 100%);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: var(--primary-blue);
}

.brand-text {
    color: var(--light-blue);
}

.brand-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.brand-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    border: none;
}

/* ===== HAMBURGER MENU ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #0404a1 0%, #6262f9 100%);
    transition: all 0.3s ease;
    z-index: 999;
    padding-top: 80px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-links .nav-item {
    margin: 8px 0;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-links .nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: var(--text-white);
    transform: translateX(5px);
}

.mobile-nav-links .nav-item.active {
    background: rgba(255, 255, 255, 0.25);
    border-left-color: var(--text-white);
}

.mobile-nav-links .nav-item i {
    margin-right: 12px;
    font-size: 18px;
}

/* ===== OVERLAY ===== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--light-blue);
    padding: 3rem 0;
    margin-top: 60px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0404a1 0%, #8282b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 0.0rem 0;
    background: var(--light-blue);
}

.social-graph-wrapper {
    text-align: center;
    padding: 1.25rem;
    position: relative;
    color: var(--text-white);
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.social-graph-wrapper.widget {
    background-color: var(--text-dark);
}

.social-graph-wrapper .s-icon {
    font-size: 2rem;
    position: relative;
    padding: 0 0.625rem;
}

.service-card {
    background: white;
    border: none;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-content {
    padding: 20px 20px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 4rem 0;
    background: var(--light-blue);
    min-height: 70vh;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.feature-item:hover {
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.vision-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vision-icon i {
    font-size: 2rem;
    color: white;
}

.vision-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.vision-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: var(--light-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-title {
    text-align: center;
}

.contact-title h1 {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.contact-title p {
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    animation: slideInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-card:hover::before {
    opacity: 1;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #b5b5b5, #554ba2);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(10px);
    border-left-color: var(--primary-blue);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 20px;
    width: 30px;
    text-align: center;
    animation: pulse 2s infinite;
}

.contact-text {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.hours-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
    border-left-color: var(--primary-blue);
}

.day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.time {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.closed {
    color: #e53e3e !important;
    font-weight: 600;
}

/* Staggered animation for cards */
.col-lg-6:nth-child(1) .contact-card {
    animation-delay: 0.2s;
}

.col-lg-6:nth-child(2) .contact-card {
    animation-delay: 0.4s;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-logo:hover .brand-circle {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.footer-logo:hover .brand-text h4 {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.footer .brand-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer .brand-text h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.footer .brand-text p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info {
    max-width: 600px;
}

.copyright {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.mission {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== MEDIA QUERIES ===== */

/* Extra Large Screens */
@media (min-width: 1200px) {
    .container {
        width: 60%;
        max-width: 1200px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }
}

/* Large Screens */
@media (max-width: 1199px) {
    .container {
        width: 75%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .navbar {
        padding: 18px 25px;
    }

    .brand-title {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 13px;
    }
}

/* Medium Screens */
@media (max-width: 991px) {
    .container {
        width: 85%;
    }

    /* Navigation */
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .logo {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .brand-title {
        font-size: 15px;
    }

    .brand-subtitle {
        font-size: 12px;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-item {
        padding: 6px 12px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* About Section */
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .about-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .vision-card {
        padding: 2rem;
        margin-top: 2rem;
    }

    .vision-icon {
        width: 70px;
        height: 70px;
    }

    .vision-icon i {
        font-size: 1.8rem;
    }

    /* Contact Section */
    .contact-title h1 {
        font-size: 2.5rem;
    }

    .contact-title p {
        font-size: 1.1rem;
    }

    .contact-card {
        padding: 30px;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer .brand-text h4 {
        font-size: 1.3rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
    }
}

/* Small Screens */
@media (max-width: 767px) {
    .container {
        width: 90%;
    }

    /* Navigation */
    .navbar {
        padding: 12px 15px;
        justify-content: space-between;
        align-items: center;
    }

    .logo-section {
        gap: 10px;
    }

    .logo {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .brand-title {
        font-size: 14px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .nav-item {
        padding: 5px 10px;
        font-size: 13px;
    }

    .hamburger-menu {
        display: flex;
    }


    /* Hero Section */
    .hero-section {
        padding: 2rem 0;
        margin-top: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Services Section */
    .services-section {
        padding: 1rem 0;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-content {
        padding: 15px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .social-graph-wrapper {
        padding: 1rem;
    }

    .social-graph-wrapper .s-icon {
        font-size: 1.5rem;
    }

    /* About Section */
    .about-section {
        padding: 2.5rem 0;
    }

    .about-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .about-description {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .about-features {
        margin-bottom: 2rem;
    }

    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .feature-item i {
        font-size: 1rem;
        margin-right: 0.8rem;
    }

    .vision-card {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .vision-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .vision-icon i {
        font-size: 1.5rem;
    }

    .vision-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .vision-description {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 50px 0;
        min-height: auto;
    }

    .contact-title h1 {
        font-size: 2rem;
    }

    .contact-title p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .contact-item {
        padding: 15px;
        margin-bottom: 15px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-item:hover {
        transform: translateY(-3px);
    }

    .contact-icon {
        font-size: 1.3rem;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .contact-text {
        font-size: 1rem;
    }

    .hours-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .hours-item:hover {
        transform: translateY(-3px);
    }

    .day,
    .time {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-logo {
        flex-direction: column;
        gap: 15px;
    }

    .footer .brand-circle {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .footer .brand-text h4 {
        font-size: 1.2rem;
    }

    .footer .brand-text p {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.9rem;
    }

    .mission {
        font-size: 0.85rem;
    }

    /* Watermarks */
    .watermark,
    .windows-watermark {
        bottom: 10px;
        right: 10px;
        font-size: 0.7rem;
    }
}

/* Extra Small Screens */
@media (max-width: 575px) {
    .container {
        width: 95%;
    }

    /* Navigation */
    .navbar {
        padding: 10px;
    }

    .logo-section {
        gap: 8px;
    }

    .brand-title {
        font-size: 12px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    .nav-item {
        padding: 4px 8px;
        font-size: 12px;
    }

    .mobile-menu {
        width: 90%;
        max-width: 250px;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }

    .mobile-nav-links {
        padding: 15px;
    }

    .mobile-nav-links .nav-item {
        padding: 10px 12px;
        font-size: 14px;
    }

    .mobile-nav-links .nav-item i {
        font-size: 16px;
        margin-right: 10px;
    }

    /* Hero Section */
    .hero-section {
        padding: 1.5rem 0;
        margin-top: 120px;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    /* Services Section */
    .service-content {
        padding: 12px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    /* About Section */
    .about-section {
        padding: 2rem 0;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .vision-card {
        padding: 1.2rem;
    }

    .vision-title {
        font-size: 1.2rem;
    }

    .vision-description {
        font-size: 0.85rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 40px 0;
    }

    .contact-title h1 {
        font-size: 1.8rem;
    }

    .contact-title p {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .hours-item {
        padding: 12px;
    }

    .day,
    .time {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 0.8rem;
    }

    .footer .brand-text h4 {
        font-size: 1.1rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .mission {
        font-size: 0.8rem;
    }
}

/* Landscape Mobile Phones*/
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding: 1rem 0;
        margin-top: 80px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .about-section {
        padding: 2rem 0;
    }

    .contact-section {
        padding: 30px 0;
    }

    .vision-card {
        margin-top: 1rem;
    }

    .mobile-menu {
        width: 85%;
        max-width: 280px;
    }

    .hamburger-line {
        width: 22px;
        height: 2px;
    }

    .mobile-nav-links .nav-item {
        padding: 12px 15px;
        font-size: 15px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .logo,
    .footer .brand-circle {
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .service-card {
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .vision-card,
    .contact-card {
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
}