/* =========================================================
   SYCITS WEBSITE
   GLOBAL STYLES
========================================================= */

:root {

    --primary: #2563eb;
    --primary-dark: #1d4ed8;

    --orange: #f97316;
    --green: #16a34a;
    --purple: #7c3aed;

    --navy: #0f172a;
    --dark: #111827;

    --text: #475569;
    --muted: #64748b;

    --light: #f8fafc;
    --border: #e2e8f0;

    --white: #ffffff;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    color: var(--dark);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}


img {
    max-width: 100%;
}


a {
    transition: all 0.3s ease;
}


button {
    transition: all 0.3s ease;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: var(--navy);

    color: #cbd5e1;

    font-size: 12px;

}


.top-bar-content {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.top-bar-content span {

    margin-right: 5px;

}


.top-social {

    display: flex;

    gap: 15px;

}


.top-social a {

    color: #cbd5e1;

    text-decoration: none;

}


.top-social a:hover {

    color: white;

}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {

    min-height: 86px;

    box-shadow:
        0 5px 25px rgba(15, 23, 42, 0.06);

    z-index: 1000;

}


.navbar-brand {

    display: flex;

    align-items: center;

    text-decoration: none;

    color: var(--dark);

}


.sycits-logo {

    width: 65px;

    height: 65px;

    object-fit: contain;

    display: block;

}


.brand-text {

    display: flex;

    flex-direction: column;

    margin-left: 10px;

}


.brand-text strong {

    font-size: 22px;

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: 0.5px;

    color: var(--navy);

}


.brand-text span {

    font-size: 9px;

    color: var(--muted);

    margin-top: 4px;

    white-space: nowrap;

}


.nav-link {

    color: #334155 !important;

    font-size: 14px;

    font-weight: 600;

    padding: 30px 15px !important;

    position: relative;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 15px;

    right: 15px;

    bottom: 18px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--green)
        );

    transform: scaleX(0);

    transition: transform 0.3s ease;

}


.nav-link:hover::after,
.nav-link.active::after {

    transform: scaleX(1);

}


.nav-link:hover,
.nav-link.active {

    color: var(--primary) !important;

}


.dropdown-menu {

    border: 0;

    border-radius: 12px;

    padding: 10px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.15);

}


.dropdown-item {

    border-radius: 8px;

    padding: 10px 15px;

    font-size: 14px;

}


.dropdown-item:hover {

    background: #eff6ff;

    color: var(--primary);

}


.nav-contact-btn {

    padding: 11px 22px;

    border-radius: 8px;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn-primary {

    background: var(--primary);

    border-color: var(--primary);

}


.btn-primary:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);

    transform: translateY(-2px);

}


.btn-dark:hover {

    transform: translateY(-2px);

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

}


.hero-section .carousel-item {

    height: 680px;

    position: relative;

}


.hero-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.96) 0%,
            rgba(15, 23, 42, 0.82) 42%,
            rgba(15, 23, 42, 0.30) 100%
        );

}


.hero-content {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 100%;

    color: white;

}


.hero-content-inner {

    max-width: 850px;

}


.hero-label {

    display: inline-flex;

    align-items: center;

    padding: 9px 18px;

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.25);

    backdrop-filter: blur(10px);

    color: #fb923c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero-content h1 {

    margin-top: 25px;

    font-size: clamp(45px, 6vw, 78px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -3px;

}


.hero-content h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #fb923c,
            #22c55e
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.hero-content p {

    max-width: 680px;

    margin-top: 25px;

    font-size: 18px;

    color: #dbeafe;

}


.hero-buttons {

    margin-top: 35px;

}


.hero-buttons .btn {

    margin-right: 10px;

    margin-bottom: 10px;

    padding: 13px 25px;

    border-radius: 8px;

}


.hero-section .carousel-indicators {

    bottom: 35px;

}


.hero-section .carousel-indicators button {

    width: 35px;

    height: 4px;

    border: 0;

    border-radius: 10px;

}


.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {

    width: 7%;

}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    background: white;

    position: relative;

    z-index: 5;

    box-shadow:
        0 15px 45px rgba(15, 23, 42, 0.08);

}


.stat-box {

    min-height: 120px;

    padding: 25px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-right: 1px solid var(--border);

}


.stat-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #eff6ff;

    color: var(--primary);

    font-size: 23px;

}


.stat-box h3 {

    font-size: 30px;

    line-height: 1;

    font-weight: 900;

    margin: 0;

}


.stat-box p {

    color: var(--muted);

    font-size: 12px;

    margin: 5px 0 0;

}


/* =========================================================
   COMMON SECTION
========================================================= */



.section-header {

    max-width: 800px;

    margin: auto;

}


.section-label {

    color: var(--primary);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2.5px;

}


.section-title {

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -1.5px;

}


.section-description {

    max-width: 700px;

    color: var(--text);

    font-size: 16px;

}


.gradient-text {

    display: inline-block;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--purple)
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: white;

}


.about-image-wrapper {

    position: relative;

    padding-right: 25px;

    padding-bottom: 25px;

}


.about-carousel {

    overflow: hidden;

    border-radius: 25px;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.16);

}


.about-image {

    width: 100%;

    height: 480px;

    object-fit: cover;

}


.experience-badge {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 150px;

    height: 150px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #fb923c
        );

    color: white;

    border-radius: 50%;

    box-shadow:
        0 20px 40px rgba(249,115,22,0.30);

}


.experience-badge strong {

    font-size: 38px;

    font-weight: 900;

    line-height: 1;

}


.experience-badge span {

    font-size: 11px;

    font-weight: 600;

}


.feature-item {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 600;

}


.feature-item i {

    color: var(--green);

    font-size: 18px;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background: #f8fafc;

}


.service-card {

    height: 100%;

    position: relative;

    padding: 35px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

}


.service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--purple),
            var(--green),
            var(--orange)
        );

}


.service-card:hover {

    transform: translateY(-10px);

    border-color: transparent;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.12);

}


.service-number {

    position: absolute;

    top: 20px;

    right: 25px;

    color: #e2e8f0;

    font-size: 30px;

    font-weight: 900;

}


.service-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #eef2ff
        );

    color: var(--primary);

    font-size: 29px;

}


.service-card h4 {

    font-size: 20px;

    font-weight: 800;

}


.service-card p {

    color: var(--text);

    font-size: 14px;

    margin: 15px 0 25px;

}


.service-card a {

    color: var(--primary);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

}


.service-card a i {

    margin-left: 5px;

}


.service-card a:hover {

    color: var(--purple);

}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(37,99,235,0.35),
            transparent 30%
        ),
        var(--navy);

}


.industry-gradient {

    display: inline-block;

    background:
        linear-gradient(
            90deg,
            #fb923c,
            #22c55e
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.industry-description {

    max-width: 500px;

    color: #94a3b8;

    margin-top: 20px;

}


.industry-card {

    min-height: 130px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    text-align: center;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 18px;

    color: white;

    transition: all 0.3s ease;

}


.industry-card:hover {

    transform: translateY(-6px);

    background: rgba(255,255,255,0.10);

    border-color: rgba(255,255,255,0.25);

}


.industry-card i {

    font-size: 30px;

    color: #60a5fa;

}


.industry-card span {

    font-size: 13px;

    font-weight: 700;

}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    background: white;

}


.product-card {
    position: relative;

    height: 100%;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(15, 35, 60, 0.08);

    transition: all 0.35s ease;
}
.product-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(15, 35, 60, 0.15);

    border-color: transparent;
}

.product-header {
    position: relative;

    height: 250px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.product-schoolmaster {
    background:
        linear-gradient(
            135deg,
            #eef8ff 0%,
            #e7f4ff 45%,
            #f5fbff 100%
        );
}


.product-schoolmaster::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(0, 115, 230, 0.08);

    top: -100px;
    right: -70px;
}


.product-schoolmaster::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background: rgba(76, 175, 80, 0.08);

    bottom: -90px;
    left: -50px;
}


.product-logo {

    position: relative;

    z-index: 2;

    width: 240px;
    height: 160px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,0.85);

    border-radius: 14px;

    padding: 18px;

    box-shadow:
        0 10px 30px rgba(0, 60, 120, 0.08);

    transition: transform 0.35s ease;
}


.product-card:hover .product-logo {
    transform: scale(1.04);
}


.product-logo img {

    max-width: 100%;

    max-height: 125px;

    width: auto;

    height: auto;

    object-fit: contain;
}


/* =========================================
   PRODUCT BADGE
========================================= */

.product-badge {

    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 13px;

    border-radius: 30px;

    background: rgba(255,255,255,0.9);

    color: #0757a0;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.08);
}


.product-badge i {
    color: #0075d4;
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.product-content {

    padding: 28px 28px 24px;
}


.product-content h3 {

    margin: 0 0 5px;

    color: #102a43;

    font-size: 27px;

    font-weight: 700;
}


.product-tagline {

    margin: 0 0 15px;

    color: #0875c9;

    font-size: 14px;

    font-weight: 600;
}


.product-description {

    margin-bottom: 22px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   FEATURES
========================================= */

.product-features {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-bottom: 25px;

    padding-bottom: 22px;

    border-bottom: 1px solid #edf1f5;
}


.product-features div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #475569;

    font-size: 13px;

    font-weight: 500;
}


.product-features i {

    color: #16a34a;

    font-size: 15px;
}


/* =========================================
   PRODUCT FOOTER
========================================= */

.product-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.product-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #0757a0;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.product-link i {

    transition: transform 0.3s ease;
}


.product-link:hover {

    color: #0075d4;
}


.product-link:hover i {

    transform: translateX(5px);
}


/* Circular arrow */

.product-arrow {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f0f7ff;

    color: #16a24a;

    transition: all 0.3s ease;
}


.product-card:hover .product-arrow {

    background: #16a24a;

    color: #ffffff;

    transform: rotate(45deg);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .product-header {
        height: 220px;
    }

    .product-logo {
        width: 210px;
        height: 145px;
    }

    .product-content {
        padding: 24px 22px;
    }

}
/* =========================================
   BOOKMYHALL PRODUCT
========================================= */

.product-bookmyhall {

    background:
        linear-gradient(
            135deg,
            #fff7ed 0%,
            #fff1e6 45%,
            #fffaf5 100%
        );
}


.product-bookmyhall::before {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background: rgba(249, 115, 22, 0.10);

    top: -100px;
    right: -70px;
}


.product-bookmyhall::after {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: rgba(234, 88, 12, 0.08);

    bottom: -90px;
    left: -50px;
}


/* BookMyHall badge */

.product-bookmyhall + .product-content .product-tagline {
    color: #ea580c;
}


/* BookMyHall logo */

.product-bookmyhall .product-logo {

    box-shadow:
        0 10px 30px rgba(234, 88, 12, 0.12);
}


/* BookMyHall features */

.product-card:has(.product-bookmyhall)
.product-features i {

    color: #ea580c;
}


/* BookMyHall link */

.product-card:has(.product-bookmyhall)
.product-link {

    color: #ea580c;
}


/* BookMyHall arrow */

.product-card:has(.product-bookmyhall)
.product-arrow {

    background: #fff1e6;

    color: #ea580c;
}

/* =========================================
   GURUKULX PRODUCT
========================================= */

.product-gurukulx {

    background:
        linear-gradient(
            135deg,
            #f5f3ff 0%,
            #ede9fe 45%,
            #faf9ff 100%
        );
}


/* Decorative circle */

.product-gurukulx::before {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background: rgba(124, 58, 237, 0.10);

    top: -100px;
    right: -70px;
}


.product-gurukulx::after {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: rgba(99, 102, 241, 0.08);

    bottom: -90px;
    left: -50px;
}


/* GurukulX logo */

.product-gurukulx .product-logo {

    box-shadow:
        0 10px 30px rgba(99, 102, 241, 0.12);
}


/* GurukulX tagline */

.product-card:has(.product-gurukulx)
.product-tagline {

    color: #6d28d9;
}


/* GurukulX features */

.product-card:has(.product-gurukulx)
.product-features i {

    color: #7c3aed;
}


/* GurukulX link */

.product-card:has(.product-gurukulx)
.product-link {

    color: #6d28d9;
}


/* GurukulX arrow */

.product-card:has(.product-gurukulx)
.product-arrow {

    background: #f3e8ff;

    color: #7c3aed;
}


.product-card:has(.product-gurukulx):hover
.product-arrow {

    background: #7c3aed;

    color: #ffffff;
}
.product-card:has(.product-bookmyhall):hover
.product-arrow {

    background: #ea580c;

    color: #ffffff;
}


.product-image-wrapper {

    height: 220px;

    padding: 25px;

    background: rgba(255,255,255,0.10);

    display: flex;

    align-items: center;

    justify-content: center;

}


.product-image {

    max-width: 100%;

    max-height: 170px;

    object-fit: contain;

}


.product-content {

    padding: 30px;

}


.product-category {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: 0.8;

}


.product-content h3 {

    margin-top: 10px;

    font-size: 27px;

    font-weight: 900;

}


.product-content p {

    color: rgba(255,255,255,0.88);

    font-size: 14px;

}


.product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #16a34a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}


.product-link:hover {

    color: white;

    gap: 15px;

}


/* =========================================================
   WHY SYCITS
========================================================= */

.why-section {

    padding: 110px 0;

    background: #f8fafc;

}


.why-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}


.why-card {

    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    transition: all 0.3s ease;

}


.why-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(15,23,42,0.08);

}


.why-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    font-size: 25px;

    margin-bottom: 20px;

}


.why-icon.blue {

    color: var(--primary);

    background: #eff6ff;

}


.why-icon.green {

    color: var(--green);

    background: #f0fdf4;

}


.why-icon.orange {

    color: var(--orange);

    background: #fff7ed;

}


.why-icon.purple {

    color: var(--purple);

    background: #faf5ff;

}


.why-card h4 {

    font-size: 18px;

    font-weight: 800;

}


.why-card p {

    color: var(--text);

    font-size: 13px;

    margin: 0;

}


/* =========================================================
   TECHNOLOGY
========================================================= */

.technology-section {

    padding: 100px 0;

    background: white;

}


.technology-list {

    margin-top: 50px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

}


.technology-item {

    min-width: 150px;

    padding: 22px 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #f8fafc;

    border: 1px solid var(--border);

    border-radius: 14px;

    color: #334155;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;

}


.technology-item:hover {

    transform: translateY(-5px);

    background: white;

    color: var(--primary);

    box-shadow:
        0 15px 35px rgba(15,23,42,0.08);

}


.technology-item i {

    font-size: 23px;

    color: var(--primary);

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 100px 0;

    background: #f8fafc;

}


.cta-box {

    position: relative;

    overflow: hidden;

    min-height: 350px;

    padding: 70px;

    display: flex;

    align-items: center;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #4338ca
        );

    color: white;

}


.cta-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

}


.cta-label {

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

    color: #bfdbfe;

}


.cta-box h2 {

    margin-top: 15px;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.1;

    font-weight: 900;

}


.cta-box h2 span {

    display: block;

    color: #fb923c;

}


.cta-box p {

    max-width: 600px;

    color: #dbeafe;

    margin: 20px 0 30px;

}


.cta-decoration {

    position: absolute;

    right: -100px;

    top: -100px;

    width: 500px;

    height: 500px;

}


.circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.15);

}


.circle-one {

    width: 500px;

    height: 500px;

}


.circle-two {

    width: 350px;

    height: 350px;

    top: 75px;

    left: 75px;

}


.circle-three {

    width: 200px;

    height: 200px;

    top: 150px;

    left: 150px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding: 75px 0 25px;

    background: var(--navy);

    color: #cbd5e1;

}


.footer-brand {

    display: flex;

    align-items: center;

}


.footer-brand img {

    width: 60px;

    height: 60px;

    object-fit: contain;

}


.footer-brand div {

    display: flex;

    flex-direction: column;

    margin-left: 10px;

}


.footer-brand strong {

    font-size: 23px;

    color: white;

    font-weight: 900;

}


.footer-brand span {

    font-size: 9px;

    color: #94a3b8;

}


.footer-description {

    max-width: 400px;

    color: #94a3b8;

    font-size: 14px;

}


.footer-social {

    display: flex;

    gap: 10px;

    margin-top: 25px;

}


.footer-social a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #334155;

    border-radius: 50%;

    color: #cbd5e1;

    text-decoration: none;

}


.footer-social a:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: white;

}


.footer h5 {

    color: white;

    font-size: 15px;

    font-weight: 800;

    margin-bottom: 20px;

}


.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-links li {

    margin-bottom: 10px;

}


.footer-links a {

    color: #94a3b8;

    font-size: 13px;

    text-decoration: none;

}


.footer-links a:hover {

    color: white;

    padding-left: 3px;

}


.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

    font-size: 13px;

    color: #94a3b8;

}


.footer-contact i {

    color: #60a5fa;

    font-size: 17px;

}


.footer hr {

    margin: 50px 0 20px;

    border-color: #334155;

}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #64748b;

    font-size: 12px;

}


.footer-bottom a {

    margin-left: 20px;

    color: #64748b;

    text-decoration: none;

}


.footer-bottom a:hover {

    color: white;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    box-shadow:
        0 10px 30px rgba(37,99,235,0.30);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: all 0.3s ease;

    z-index: 999;

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.back-to-top:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {


    .top-bar {

        display: none;

    }


    .main-navbar {

        min-height: 75px;

    }


    .sycits-logo {

        width: 55px;

        height: 55px;

    }


    .brand-text strong {

        font-size: 19px;

    }


    .brand-text span {

        font-size: 8px;

    }


    .nav-link {

        padding: 12px 5px !important;

    }


    .nav-link::after {

        display: none;

    }


    .nav-contact-btn {

        margin-top: 10px;

    }


    .hero-section .carousel-item {

        height: 650px;

    }


    .hero-content h1 {

        font-size: 52px;

    }


    .stat-box {

        border-bottom: 1px solid var(--border);

    }


    .about-image {

        height: 420px;

    }


    .cta-box {

        padding: 55px 40px;

    }

}


@media (max-width: 767px) {


    .section-padding {

        padding: 75px 0;

    }


    .hero-section .carousel-item {

        height: 650px;

    }


    .hero-content {

        padding: 0 25px;

    }


    .hero-content h1 {

        font-size: 42px;

        letter-spacing: -1.5px;

    }


    .hero-content p {

        font-size: 16px;

    }


    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(15,23,42,0.95),
                rgba(15,23,42,0.75)
            );

    }


    .stat-box {

        justify-content: flex-start;

        padding-left: 25px;

    }


    .about-image-wrapper {

        padding-right: 10px;

        padding-bottom: 15px;

    }


    .about-image {

        height: 350px;

    }


    .experience-badge {

        width: 115px;

        height: 115px;

    }


    .experience-badge strong {

        font-size: 30px;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }


    .cta-box {

        min-height: auto;

        padding: 50px 30px;

    }


    .cta-decoration {

        opacity: 0.5;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }


    .footer-bottom a {

        margin-left: 0;

        margin-right: 20px;

    }

}


@media (max-width: 575px) {


    .brand-text span {

        display: none;

    }


    .sycits-logo {

        width: 50px;

        height: 50px;

    }


    .hero-content h1 {

        font-size: 38px;

    }


    .hero-label {

        font-size: 10px;

        letter-spacing: 1.5px;

    }


    .hero-buttons .btn {

        width: 100%;

        margin-right: 0;

    }


    .stat-box {

        min-height: 105px;

        padding: 20px 10px;

        gap: 8px;

    }


    .stat-icon {

        width: 42px;

        height: 42px;

        font-size: 18px;

    }


    .stat-box h3 {

        font-size: 24px;

    }


    .stat-box p {

        font-size: 10px;

    }


    .about-image {

        height: 300px;

    }


    .experience-badge {

        width: 100px;

        height: 100px;

    }


    .experience-badge strong {

        font-size: 25px;

    }


    .experience-badge span {

        font-size: 9px;

    }


    .technology-item {

        min-width: 130px;

        padding: 17px;

    }


    .cta-box h2 {

        font-size: 35px;

    }

}