:root{
    --primary-color: #0F172A;
    --secondary-color: #3B82F6;
    --light-color: #E2E8F0;
    --shadow:
    0 12px 30px rgba(11,31,58,.08);
}

body {
    background-color: var(--primary-color);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.bwFilter{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #11111143;
    display: none;
    z-index: 99999;
    backdrop-filter: blur(5px);
}

/* Navbar */
.navbar {
    width: 100%;
    height: 70px;
    background: var(--light-color);
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    position: fixed;
    z-index: 9999;
}


.logoWrapper img{
    height: 50px;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.nav-menu a:hover{
    color: var(--secondary-color);
    transition: 0.5s;
}

/* Hamburger */
.hamburger {
    display: none;
    border: none;
    background: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.19);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 4px 2px rgba(255, 255, 255, 0.2);
    transition: right 0.3s ease;
    z-index: 99999;
    padding-top: 80px;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li a {
    display: block;
    padding: 18px 25px;
    color: var(--light-color);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 30px;
}

.mobile-menu li a:hover {
    color: var(--secondary-color);
    transition: 0.5s;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Layout */
@media (max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* Hero */

.hero {
    min-height: calc(100vh - 70px);
    background:
        radial-gradient(circle at top left, #0F172A 0%, transparent 40%),
        radial-gradient(circle at bottom right, #3B82F6 0%, transparent 40%),
        #0f0f0f;

    color: var(--light-color);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 8%;
    gap: 60px;
}

/* Left Side */

.hero-content {
    flex: 1;
    max-width: 650px;
    margin-top: 50px;
}

.hero-tag {
    display: inline-block;

    padding: 8px 16px;
    border-radius: 50px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);

    margin-bottom: 25px;

    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.hero-content h1 span {
    background: linear-gradient(
        90deg,
        #E2E8F0,
        #3B82F6
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--light-color);
    line-height: 1.8;
    max-width: 550px;
    font-family: 'Inter', sans-serif;
}

/* Buttons */

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    font-family: 'Inter', sans-serif;
}

.btn {
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 10px;
    transition: 0.3s ease;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--light-color);
    color: #111;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--light-color);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
}


.rounded-button i{
    text-decoration: none !important;
    font-size: 40px;
}

/* Right Side */

.hero-visual {
    flex: 1;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    max-width: 500px;
}

.hero-visual .glass-card:nth-child(3) {
    grid-column: span 2;
}

.glass-card {
    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    padding: 30px;
}

.glass-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.glass-card p {
    color: #bdbdbd;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 25px;
    }

    .hero-content p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .hero-visual .glass-card:nth-child(3) {
        grid-column: span 1;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* ANNOUNCEMENT BAR */

.announcement-bar {
    background: var(--light-color)
    ;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    overflow: hidden;
    white-space: nowrap;

    height: 42px;

    display: flex;
    align-items: center;
}

.announcement-track {
    display: flex;
    align-items: center;
    gap: 40px;

    color: var(--primary-color);
    font-size: 0.9rem;
    font-family: 'Inter',sans-serif;
    font-weight: 800;

    width: max-content;

    animation: ticker 25s linear infinite;
}

.announcement-track span {
    flex-shrink: 0;
}

.announcement-icon{
    height: 20px;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* About Section */

.about-section {
    background: var(--primary-color);
    color: var(--light-color);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 60px;
}

/* Left Content */

.about-left {
    flex: 1;
    /* max-width: 650px; */
}

.section-tag {
    display: inline-block;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    font-size: 0.85rem;
    font-family: 'Inter',sans-serif;
    font-weight: 600;
    letter-spacing: 1px;

    margin-bottom: 25px;
}

.about-left h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Inter',sans-serif;

    line-height: 1.1;

    margin-bottom: 25px;
}

.about-left p {
    color: var(--secondary-color);
    font-family: 'Inter',sans-serif;

    line-height: 1.8;

    margin-bottom: 30px;

    font-size: 1.05rem;
}



/* Mobile */

@media (max-width: 768px) {

    .about-section {
        flex-direction: column;

        padding: 80px 25px;

        gap: 50px;
    }

    .about-left {
        text-align: center;
    }

    .about-right {
        width: 100%;

        grid-template-columns: 1fr;
    }
}

/* About Video */

.video-section {
    padding: 100px 20px;
    background: #f8f9fc;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.video-content,
.video-preview {
    flex: 1;
}

.video-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(
        90deg,
        #0F172A,
        #3B82F6
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.cta-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--secondary-color);
    text-decoration: none;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90px;
    height: 90px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.95);
    color: #2563eb;

    font-size: 36px;
    cursor: pointer;
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.85);
    z-index: 9999;

    justify-content: center;
    align-items: center;

    padding: 20px;
}



.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
}

#modalVideo {
    width: 100%;
    display: block;
    border-radius: 12px;
    background: #000;
}

.close-modal {
    position: absolute;
    margin: 10px;
    right: 0;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .video-content h2 {
        font-size: 36px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* Hero Circle CTA */

.circle-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    
}

.circle-wrapper svg {
    width: 80%;
    height: 100%;
}

.circle-wrapper text {
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    fill: var(--light-color) !important;
}

.center-circle {
    position: absolute;
    inset: 50%;
    transform: translate(-70%, -50%);

    width: 100px;
    height: 100px;

    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--light-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-circle i{
    font-size: 40px;
}

svg {
    animation: rotateText 20s linear infinite;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {

    .center-circle {
        transform: translate(-50%, -50%);
    }

}

/* Services Section */

.services-section {
    padding: 120px 7%;
    background: linear-gradient(
    180deg,
    #f8f9fc 0%,
    #E2E8F0 40%,
    #0F172A 100%
);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'Inter',sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    
}

.section-title {
    max-width: 900px;
    margin-bottom: 20px;
    font-family: 'Inter',sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    color: #0F172A;
}

.section-description {
    max-width: 750px;
    margin-bottom: 60px;
    font-family: 'Inter',sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Services Row */

.services-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

/* Service Card */

.service-card {
    flex: 1;
    min-width: 250px;

    padding: 35px;
    background: #f8f8f8;
    border-radius: 24px;

    transition: all .35s ease;
}

.service-card:hover {
    background: #0F172A;
    transform: translateY(-8px);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number {
    color: #E2E8F0;
}

.service-number {
    margin-bottom: 20px;
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #999;
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: 'Inter',sans-serif;
    font-size: 1.4rem;
    color: #111;

    transition: .35s ease;
}

.service-card p {
    line-height: 1.8;
    color: #666;
    font-family: 'Inter',sans-serif;
    transition: .35s ease;
}

/* Mobile */

@media (max-width: 768px) {

    .services-section {
        padding: 80px 20px;
    }

    .services-row {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        min-width: 100%;
    }

    .section-description {
        margin-bottom: 40px;
    }
}


/* Contact Section */

.contact-section {
    padding: 80px 20px;
    background: var(--primary-color);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 42px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
    color: var(--light-color);
}

.contact-header p {
    color: var(--secondary-color);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.contactForm {
    margin-bottom: 24px;
}

.contactForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: var(--light-color);
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid --light-color;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: .3s;
    border: none;
    margin-bottom: 20px;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: var(--secondary-color);
}

.contact-section textarea {
    resize: vertical;
}

.error {
    border-color: #dc2626 !important;
}

.error-message {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #dc2626;
    font-family: 'Inter', sans-serif;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #2563eb;
}

#formMessage{
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}

/* Footer */

.site-footer {
    background: var(--primary-color);
    color: var(--light-color);
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.footer-contact h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 14px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.footer-contact a {
    color: var(--light-color);
    text-decoration: none;
    transition: color .3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--light-color);
}

.socialIconsWrapper i{
    font-size: 25px;
    cursor: pointer;
}

.socialIconsWrapper i:hover{
    color: var(--secondary-color);
    transition: 0.5s;
}

@media (max-width: 768px) {
    .footer-contact {
        text-align: center;
    }

    .socialIconsWrapper{
        text-align: center;
    }
}

